max_low_pfn reflect the number of _pages_ in the system, not the maximum PFN. You can easily find that fact in init_bootmem(). So fix it. Additionally, if 'start_pfn == end_pfn', we don't need to go futher, so change range check. Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@xxxxxxx> diff --git a/mm/nobootmem.c b/mm/nobootmem.c index 5e07d36..4711e91 100644 --- a/mm/nobootmem.c +++ b/mm/nobootmem.c @@ -110,9 +110,9 @@ static unsigned long __init __free_memory_core(phys_addr_t start, { unsigned long start_pfn = PFN_UP(start); unsigned long end_pfn = min_t(unsigned long, - PFN_DOWN(end), max_low_pfn); + PFN_DOWN(end), min_low_pfn); - if (start_pfn > end_pfn) + if (start_pfn >= end_pfn) return 0; __free_pages_memory(start_pfn, end_pfn); -- 1.7.9.5 -- 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>