diff options
Diffstat (limited to 'arch/x86_64/mm/init.c')
-rw-r--r-- | arch/x86_64/mm/init.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/x86_64/mm/init.c b/arch/x86_64/mm/init.c index 1336da8bdee1..1ad5111aec38 100644 --- a/arch/x86_64/mm/init.c +++ b/arch/x86_64/mm/init.c | |||
@@ -761,3 +761,9 @@ int in_gate_area_no_task(unsigned long addr) | |||
761 | { | 761 | { |
762 | return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END); | 762 | return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END); |
763 | } | 763 | } |
764 | |||
765 | void *alloc_bootmem_high_node(pg_data_t *pgdat, unsigned long size) | ||
766 | { | ||
767 | return __alloc_bootmem_core(pgdat->bdata, size, | ||
768 | SMP_CACHE_BYTES, (4UL*1024*1024*1024), 0); | ||
769 | } | ||