diff options
Diffstat (limited to 'include/asm-s390')
-rw-r--r-- | include/asm-s390/pgtable.h | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/include/asm-s390/pgtable.h b/include/asm-s390/pgtable.h index 3208dc6c412c..39bb5192dc31 100644 --- a/include/asm-s390/pgtable.h +++ b/include/asm-s390/pgtable.h | |||
@@ -107,11 +107,18 @@ extern char empty_zero_page[PAGE_SIZE]; | |||
107 | * any out-of-bounds memory accesses will hopefully be caught. | 107 | * any out-of-bounds memory accesses will hopefully be caught. |
108 | * The vmalloc() routines leaves a hole of 4kB between each vmalloced | 108 | * The vmalloc() routines leaves a hole of 4kB between each vmalloced |
109 | * area for the same reason. ;) | 109 | * area for the same reason. ;) |
110 | * vmalloc area starts at 4GB to prevent syscall table entry exchanging | ||
111 | * from modules. | ||
110 | */ | 112 | */ |
111 | extern unsigned long vmalloc_end; | 113 | extern unsigned long vmalloc_end; |
112 | #define VMALLOC_OFFSET (8*1024*1024) | 114 | |
113 | #define VMALLOC_START (((unsigned long) high_memory + VMALLOC_OFFSET) \ | 115 | #ifdef CONFIG_64BIT |
114 | & ~(VMALLOC_OFFSET-1)) | 116 | #define VMALLOC_ADDR (max(0x100000000UL, (unsigned long) high_memory)) |
117 | #else | ||
118 | #define VMALLOC_ADDR ((unsigned long) high_memory) | ||
119 | #endif | ||
120 | #define VMALLOC_OFFSET (8*1024*1024) | ||
121 | #define VMALLOC_START ((VMALLOC_ADDR + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1)) | ||
115 | #define VMALLOC_END vmalloc_end | 122 | #define VMALLOC_END vmalloc_end |
116 | 123 | ||
117 | /* | 124 | /* |