import PULS_20160108
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / arm / mach-mt8127 / include / mach / vmalloc.h
1 /*
2 * Just any arbitrary offset to the start of the vmalloc VM area: the
3 * current 8MB value just means that there will be a 8MB "hole" after the
4 * physical memory until the kernel virtual memory starts. That means that
5 * any out-of-bounds memory accesses will hopefully be caught.
6 * The vmalloc() routines leaves a hole of 4kB between each vmalloced
7 * area for the same reason. ;)
8 */
9
10 #define VMALLOC_OFFSET (8*1024*1024)
11 #define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
12 #define VMALLOC_END (PAGE_OFFSET + 0x30000000)
13