summaryrefslogtreecommitdiff
path: root/include
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 /include
parent9744f5a32853642f8ed0749a1c9ed8cf9c9c9dc4 (diff)
downloadlinux-3.10-66d4bdf22b8652cda215e2653c8bbec7a767ed57.tar.gz
linux-3.10-66d4bdf22b8652cda215e2653c8bbec7a767ed57.tar.bz2
linux-3.10-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 'include')
-rw-r--r--include/asm-x86/pgtable_64.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-x86/pgtable_64.h b/include/asm-x86/pgtable_64.h
index ac5fff4cc58..549144d03d9 100644
--- a/include/asm-x86/pgtable_64.h
+++ b/include/asm-x86/pgtable_64.h
@@ -151,7 +151,7 @@ static inline void native_pgd_clear(pgd_t *pgd)
#define VMALLOC_END _AC(0xffffe1ffffffffff, UL)
#define VMEMMAP_START _AC(0xffffe20000000000, UL)
#define MODULES_VADDR _AC(0xffffffffa0000000, UL)
-#define MODULES_END _AC(0xfffffffffff00000, UL)
+#define MODULES_END _AC(0xffffffffff000000, UL)
#define MODULES_LEN (MODULES_END - MODULES_VADDR)
#ifndef __ASSEMBLY__