On Tue, 30 Jan 2007, Atsushi Nemoto wrote: > Though I do not object to remove "&& !defined(CONFIG_BUILD_ELF64)" > from __pa_page_offset(), are there any point of CONFIG_BUILD_ELF64=y > if your load address was CKSEG0? Checking for code correctness and validation of the toolchain (Linux is one of the few non-PIC users of (n)64) without having to chase hardware that would support running from XPHYS without serious pain (the firmware being the usual offender). That said, I have not checked the every single use of __pa_page_offset(), but the sole existence of this condition raises a question about whether we are sure __pa_page_offset() is going to be only used on virtual addresses in the same segment the kernel is linked to. Sometimes references to both CKSEG0 and XPHYS may be used in the same kernel, e.g. because the the kernel is linked to XPHYS, but the firmware is limited to accept CKSEG0 addresses only (and we do call back into firmware on some platforms). Maciej