aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
Diffstat (limited to 'mm')
-rw-r--r--mm/memblock.c19
1 files changed, 11 insertions, 8 deletions
diff --git a/mm/memblock.c b/mm/memblock.c
index 0131684c42f..770c5bfac2c 100644
--- a/mm/memblock.c
+++ b/mm/memblock.c
@@ -115,6 +115,8 @@ void __init memblock_init(void)
115 memblock.reserved.regions[0].base = 0; 115 memblock.reserved.regions[0].base = 0;
116 memblock.reserved.regions[0].size = 0; 116 memblock.reserved.regions[0].size = 0;
117 memblock.reserved.cnt = 1; 117 memblock.reserved.cnt = 1;
118
119 memblock.current_limit = MEMBLOCK_ALLOC_ANYWHERE;
118} 120}
119 121
120void __init memblock_analyze(void) 122void __init memblock_analyze(void)
@@ -373,7 +375,7 @@ u64 __init memblock_alloc_nid(u64 size, u64 align, int nid)
373 375
374u64 __init memblock_alloc(u64 size, u64 align) 376u64 __init memblock_alloc(u64 size, u64 align)
375{ 377{
376 return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ANYWHERE); 378 return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE);
377} 379}
378 380
379u64 __init memblock_alloc_base(u64 size, u64 align, u64 max_addr) 381u64 __init memblock_alloc_base(u64 size, u64 align, u64 max_addr)
@@ -399,14 +401,9 @@ u64 __init __memblock_alloc_base(u64 size, u64 align, u64 max_addr)
399 401
400 size = memblock_align_up(size, align); 402 size = memblock_align_up(size, align);
401 403
402 /* On some platforms, make sure we allocate lowmem */
403 /* Note that MEMBLOCK_REAL_LIMIT may be MEMBLOCK_ALLOC_ANYWHERE */
404 if (max_addr == MEMBLOCK_ALLOC_ANYWHERE)
405 max_addr = MEMBLOCK_REAL_LIMIT;
406
407 /* Pump up max_addr */ 404 /* Pump up max_addr */
408 if (max_addr == MEMBLOCK_ALLOC_ANYWHERE) 405 if (max_addr == MEMBLOCK_ALLOC_ACCESSIBLE)
409 max_addr = ~(u64)0; 406 max_addr = memblock.current_limit;
410 407
411 /* We do a top-down search, this tends to limit memory 408 /* We do a top-down search, this tends to limit memory
412 * fragmentation by keeping early boot allocs near the 409 * fragmentation by keeping early boot allocs near the
@@ -527,3 +524,9 @@ int memblock_is_region_reserved(u64 base, u64 size)
527 return memblock_overlaps_region(&memblock.reserved, base, size) >= 0; 524 return memblock_overlaps_region(&memblock.reserved, base, size) >= 0;
528} 525}
529 526
527
528void __init memblock_set_current_limit(u64 limit)
529{
530 memblock.current_limit = limit;
531}
532