From: Gavin Shan <shangw@xxxxxxxxxxxxxxxxxx> While enforcing memory limit on current memblock layout, it is possible that we don't have to change the current memblock layout. For example, the enforced limited size is bigger than the maximal address of memory regions. Also, we don't have to change the memory layout while the enforced limited size is more than the accumulative size of all memory regions. The patch checks them and won't change current memblock layout for those cases, thus to reduce some overhead. Signed-off-by: Gavin Shan <shangw@xxxxxxxxxxxxxxxxxx> Signed-off-by: Wanpeng Li <liwanp@xxxxxxxxxxxxxxxxxx> --- mm/memblock.c | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/mm/memblock.c b/mm/memblock.c index 4d9393c..c1fbb12 100644 --- a/mm/memblock.c +++ b/mm/memblock.c @@ -844,14 +844,14 @@ void __init memblock_enforce_memory_limit(phys_addr_t limit) unsigned long i; phys_addr_t max_addr = (phys_addr_t)ULLONG_MAX; - if (!limit) + if (!limit || limit >= memblock_end_of_DRAM()) return; /* find out max address */ for (i = 0; i < memblock.memory.cnt; i++) { struct memblock_region *r = &memblock.memory.regions[i]; - if (limit <= r->size) { + if (limit < r->size) { max_addr = r->base + limit; break; } @@ -859,8 +859,12 @@ void __init memblock_enforce_memory_limit(phys_addr_t limit) } /* truncate both memory and reserved regions */ - __memblock_remove(&memblock.memory, max_addr, (phys_addr_t)ULLONG_MAX); - __memblock_remove(&memblock.reserved, max_addr, (phys_addr_t)ULLONG_MAX); + if (max_addr < (phys_addr_t)ULLONG_MAX) { + __memblock_remove(&memblock.memory, max_addr, + (phys_addr_t)ULLONG_MAX); + __memblock_remove(&memblock.reserved, max_addr, + (phys_addr_t)ULLONG_MAX); + } } static int __init_memblock memblock_search(struct memblock_type *type, phys_addr_t addr) -- 1.7.5.4 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>