mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-22 14:52:34 +00:00
memblock: NUMA allocate can now use early_pfn_map
We now provide a default (weak) implementation of memblock_nid_range() which uses the early_pfn_map[] if CONFIG_ARCH_POPULATES_NODE_MAP is set. Sparc still needs to use its own method due to the way the pages can be scattered between nodes. This implementation is inefficient due to our main algorithm and callback construct wanting to work on an ascending addresses bases while early_pfn_map[] would rather work with nid's (it's unsorted at that stage). But it should work and we can look into improving it subsequently, possibly using arch compile options to chose a different algorithm alltogether. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
parent
fef501d49d
commit
c196f76fd5
2 changed files with 30 additions and 1 deletions
|
@ -47,6 +47,9 @@ extern long memblock_remove(phys_addr_t base, phys_addr_t size);
|
|||
extern long __init memblock_free(phys_addr_t base, phys_addr_t size);
|
||||
extern long __init memblock_reserve(phys_addr_t base, phys_addr_t size);
|
||||
|
||||
/* The numa aware allocator is only available if
|
||||
* CONFIG_ARCH_POPULATES_NODE_MAP is set
|
||||
*/
|
||||
extern phys_addr_t __init memblock_alloc_nid(phys_addr_t size, phys_addr_t align, int nid);
|
||||
extern phys_addr_t __init memblock_alloc(phys_addr_t size, phys_addr_t align);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue