diff options
Diffstat (limited to 'include/linux/memblock.h')
-rw-r--r-- | include/linux/memblock.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/memblock.h b/include/linux/memblock.h index e5e8f9db3a84..82b030244aa7 100644 --- a/include/linux/memblock.h +++ b/include/linux/memblock.h | |||
@@ -47,6 +47,9 @@ extern long memblock_remove(phys_addr_t base, phys_addr_t size); | |||
47 | extern long __init memblock_free(phys_addr_t base, phys_addr_t size); | 47 | extern long __init memblock_free(phys_addr_t base, phys_addr_t size); |
48 | extern long __init memblock_reserve(phys_addr_t base, phys_addr_t size); | 48 | extern long __init memblock_reserve(phys_addr_t base, phys_addr_t size); |
49 | 49 | ||
50 | /* The numa aware allocator is only available if | ||
51 | * CONFIG_ARCH_POPULATES_NODE_MAP is set | ||
52 | */ | ||
50 | extern phys_addr_t __init memblock_alloc_nid(phys_addr_t size, phys_addr_t align, int nid); | 53 | extern phys_addr_t __init memblock_alloc_nid(phys_addr_t size, phys_addr_t align, int nid); |
51 | extern phys_addr_t __init memblock_alloc(phys_addr_t size, phys_addr_t align); | 54 | extern phys_addr_t __init memblock_alloc(phys_addr_t size, phys_addr_t align); |
52 | 55 | ||