1
0
Fork 0
alistair23-linux/arch/um/sys-x86_64
Jeff Dike 54ae36f24b uml: fix stub address calculations
The calculation of CONFIG_STUB_CODE and CONFIG_STUB_DATA didn't take into
account anything but 3G/1G and 2G/2G, leaving the other vmsplits out in the
cold.

I'd rather not duplicate the four known host vmsplit cases for each of these
symbols.  I'd also like to calculate them based on the highest userspace
address.

The Kconfig language seems not to allow calculation of hex constants, so I
moved this to as-layout.h.  CONFIG_STUB_CODE, CONFIG_STUB_DATA, and
CONFIG_STUB_START are now gone.  In their place are STUB_CODE, STUB_DATA, and
STUB_START in as-layout.h.

i386 and x86_64 seem to differ as to whether an unadorned constant is an int
or a long, so I cast them to unsigned long so they can be printed
consistently.  However, they are also used in stub.S, where C types don't work
so well.  So, there are ASM_ versions of these constants for use in stub.S.  I
also ifdef-ed the non-asm-friendly portion of as-layout.h.

With this in place, most of the rest of this patch is changing CONFIG_STUB_*
to STUB_*, except in stub.S, where they are changed to ASM_STUB_*.

defconfig has the old symbols deleted.

I also print these addresses out in case there is any problem mapping them on
the host.

The two stub.S files had some trailing whitespace, so that is cleaned up here.

[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-16 09:43:09 -07:00
..
Makefile uml: style fixes in FP code 2007-10-16 09:43:07 -07:00
bug.c [PATCH] UML: add generic BUG support 2006-12-08 08:28:39 -08:00
bugs.c uml: remove code made redundant by CHOOSE_MODE removal 2007-10-16 09:43:05 -07:00
delay.c [PATCH] uml: fix unreasonably long udelay 2007-04-02 10:06:08 -07:00
fault.c uml: style fixes pass 3 2007-10-16 09:43:05 -07:00
ksyms.c [PATCH] uml: remove duplicate export 2006-10-11 11:14:20 -07:00
mem.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ptrace.c uml: style fixes in FP code 2007-10-16 09:43:07 -07:00
ptrace_user.c [PATCH] uml: initialize process FP registers properly 2006-02-07 16:12:32 -08:00
setjmp.S [PATCH] uml: Use klibc setjmp/longjmp 2006-09-26 08:49:05 -07:00
signal.c uml: style fixes in FP code 2007-10-16 09:43:07 -07:00
stub.S uml: fix stub address calculations 2007-10-16 09:43:09 -07:00
stub_segv.c uml: fix stub address calculations 2007-10-16 09:43:09 -07:00
syscall_table.c i386/x86_64: move headers to include/asm-x86 2007-10-11 11:20:03 +02:00
syscalls.c uml: fold mmu_context_skas into mm_context 2007-10-16 09:43:06 -07:00
sysrq.c [PATCH] namespaces: utsname: use init_utsname when appropriate 2006-10-02 07:57:21 -07:00
tls.c uml: rename pt_regs general-purpose register file 2007-10-16 09:43:06 -07:00
um_module.c [PATCH] uml: kludgy compilation fixes for x86-64 subarch modules support 2005-05-05 16:36:33 -07:00
user-offsets.c uml: don't use glibc asm/user.h 2007-10-16 09:43:07 -07:00