diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2008-04-15 21:52:26 +0200 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-04-16 23:46:13 +0200 |
commit | 4846c5deb9776a7306d0f656ade7505278ac39ba (patch) | |
tree | 42ad389b154de5e498dd6dfde6d710d748a536cf /arch/powerpc/kernel/setup_64.c | |
parent | [POWERPC] Rename __initial_memory_limit to __initial_memory_limit_addr (diff) | |
download | linux-4846c5deb9776a7306d0f656ade7505278ac39ba.tar.xz linux-4846c5deb9776a7306d0f656ade7505278ac39ba.zip |
[POWERPC] Clean up some linker and symbol usage
* PAGE_OFFSET is not always the start of code, use _stext instead.
* grab PAGE_SIZE and KERNELBASE from asm/page.h like ppc64 does. Makes the
code a bit more common and provide a single place to manipulate the
defines for things like kdump.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/setup_64.c')
-rw-r--r-- | arch/powerpc/kernel/setup_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/setup_64.c b/arch/powerpc/kernel/setup_64.c index 2c2d8315193c..0205d408d2ed 100644 --- a/arch/powerpc/kernel/setup_64.c +++ b/arch/powerpc/kernel/setup_64.c @@ -510,7 +510,7 @@ void __init setup_arch(char **cmdline_p) if (ppc_md.panic) setup_panic(); - init_mm.start_code = PAGE_OFFSET; + init_mm.start_code = (unsigned long)_stext; init_mm.end_code = (unsigned long) _etext; init_mm.end_data = (unsigned long) _edata; init_mm.brk = klimit; |