aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/head64.c
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@novell.com>2008-07-31 16:48:31 +0100
committerIngo Molnar <mingo@elte.hu>2008-08-15 17:31:50 +0200
commit66d4bdf22b8652cda215e2653c8bbec7a767ed57 (patch)
treebb351489a17d8ae8c597e94a8b1b1f860416f98c /arch/x86/kernel/head64.c
parentx86, acpi: cleanup, temp_stack is used only when CONFIG_SMP is set (diff)
downloadlinux-dev-66d4bdf22b8652cda215e2653c8bbec7a767ed57.tar.xz
linux-dev-66d4bdf22b8652cda215e2653c8bbec7a767ed57.zip
x86-64: fix overlap of modules and fixmap areas
Plus add a build time check so this doesn't go unnoticed again. Signed-off-by: Jan Beulich <jbeulich@novell.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/head64.c')
-rw-r--r--arch/x86/kernel/head64.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/head64.c b/arch/x86/kernel/head64.c
index 1b318e903bf6..9bfc4d72fb2e 100644
--- a/arch/x86/kernel/head64.c
+++ b/arch/x86/kernel/head64.c
@@ -88,6 +88,7 @@ void __init x86_64_start_kernel(char * real_mode_data)
BUILD_BUG_ON(!(MODULES_VADDR > __START_KERNEL));
BUILD_BUG_ON(!(((MODULES_END - 1) & PGDIR_MASK) ==
(__START_KERNEL & PGDIR_MASK)));
+ BUILD_BUG_ON(__fix_to_virt(__end_of_fixed_addresses) <= MODULES_END);
/* clear bss before set_intr_gate with early_idt_handler */
clear_bss();