aboutsummaryrefslogtreecommitdiffstats
path: root/mm/page_alloc.c
diff options
context:
space:
mode:
authorKay Sievers <kay@vrfy.org>2012-05-08 11:24:14 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-05-08 11:55:26 -0400
commit155cbfc802e4d9d01637e4bddb23091983a58b37 (patch)
tree22d0af5e05cfd0539128ae9237e55821c53c9eb8 /mm/page_alloc.c
parentbe96447e0d49622fe00b07474f9a86805d389ca7 (diff)
mm: use KERN_CONT in printk() continuation lines
Cc: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Kay Sievers <kay@vrfy.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
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 a712fb9e04ce..89b9af2ca263 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 }