Home
last modified time | relevance | path

Searched refs:VMALLOC_OFFSET (Results 1 – 7 of 7) sorted by relevance

/arch/m68k/include/asm/
Dpgtable_mm.h82 #define VMALLOC_OFFSET (8*1024*1024) macro
83 #define VMALLOC_START (((unsigned long) high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
/arch/x86/include/asm/
Dpgtable_32.h59 #define VMALLOC_OFFSET (8 * 1024 * 1024) macro
60 #define VMALLOC_START ((unsigned long)high_memory + VMALLOC_OFFSET)
/arch/powerpc/include/asm/
Dpgtable-ppc32.h124 #define VMALLOC_OFFSET (0x1000000) /* 16M */ macro
126 … VMALLOC_START (((_ALIGN((long)high_memory, PPC_PIN_SIZE) + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1)))
128 #define VMALLOC_START ((((long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1)))
/arch/um/include/asm/
Dpgtable.h48 #define VMALLOC_OFFSET (__va_space) macro
49 #define VMALLOC_START ((end_iomem + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
/arch/avr32/include/asm/
Dpgtable.h62 #define VMALLOC_OFFSET (8 * 1024 * 1024) macro
63 #define VMALLOC_START (P3SEG + VMALLOC_OFFSET)
64 #define VMALLOC_END (P4SEG - VMALLOC_OFFSET)
/arch/arm/include/asm/
Dpgtable.h39 #define VMALLOC_OFFSET (8*1024*1024) macro
40 #define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
/arch/x86/mm/
Dpgtable_32.c127 __VMALLOC_RESERVE = memparse(arg, &arg) + VMALLOC_OFFSET; in parse_vmalloc()