aboutsummaryrefslogtreecommitdiffstats
path: root/mm/page_alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'mm/page_alloc.c')
-rw-r--r--mm/page_alloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index b7af568f0ed9..1851df600438 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -4763,12 +4763,12 @@ void __init free_area_init_nodes(unsigned long *max_zone_pfn)
4763 for (i = 0; i < MAX_NR_ZONES; i++) { 4763 for (i = 0; i < MAX_NR_ZONES; i++) {
4764 if (i == ZONE_MOVABLE) 4764 if (i == ZONE_MOVABLE)
4765 continue; 4765 continue;
4766 printk(" %-8s ", zone_names[i]); 4766 printk(KERN_CONT " %-8s ", zone_names[i]);
4767 if (arch_zone_lowest_possible_pfn[i] == 4767 if (arch_zone_lowest_possible_pfn[i] ==
4768 arch_zone_highest_possible_pfn[i]) 4768 arch_zone_highest_possible_pfn[i])
4769 printk("empty\n"); 4769 printk(KERN_CONT "empty\n");
4770 else 4770 else
4771 printk("%0#10lx -> %0#10lx\n", 4771 printk(KERN_CONT "%0#10lx -> %0#10lx\n",
4772 arch_zone_lowest_possible_pfn[i], 4772 arch_zone_lowest_possible_pfn[i],
4773 arch_zone_highest_possible_pfn[i]); 4773 arch_zone_highest_possible_pfn[i]);
4774 } 4774 }