aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mm/page_alloc.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 298f307c63a1..a8182c89de59 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -4392,8 +4392,12 @@ void __init free_area_init_nodes(unsigned long *max_zone_pfn)
4392 for (i = 0; i < MAX_NR_ZONES; i++) { 4392 for (i = 0; i < MAX_NR_ZONES; i++) {
4393 if (i == ZONE_MOVABLE) 4393 if (i == ZONE_MOVABLE)
4394 continue; 4394 continue;
4395 printk(" %-8s %0#10lx -> %0#10lx\n", 4395 printk(" %-8s ", zone_names[i]);
4396 zone_names[i], 4396 if (arch_zone_lowest_possible_pfn[i] ==
4397 arch_zone_highest_possible_pfn[i])
4398 printk("empty\n");
4399 else
4400 printk("%0#10lx -> %0#10lx\n",
4397 arch_zone_lowest_possible_pfn[i], 4401 arch_zone_lowest_possible_pfn[i],
4398 arch_zone_highest_possible_pfn[i]); 4402 arch_zone_highest_possible_pfn[i]);
4399 } 4403 }