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>
This commit is contained in:
parent
be96447e0d
commit
155cbfc802
1 changed files with 3 additions and 3 deletions
|
@ -4763,12 +4763,12 @@ void __init free_area_init_nodes(unsigned long *max_zone_pfn)
|
||||||
for (i = 0; i < MAX_NR_ZONES; i++) {
|
for (i = 0; i < MAX_NR_ZONES; i++) {
|
||||||
if (i == ZONE_MOVABLE)
|
if (i == ZONE_MOVABLE)
|
||||||
continue;
|
continue;
|
||||||
printk(" %-8s ", zone_names[i]);
|
printk(KERN_CONT " %-8s ", zone_names[i]);
|
||||||
if (arch_zone_lowest_possible_pfn[i] ==
|
if (arch_zone_lowest_possible_pfn[i] ==
|
||||||
arch_zone_highest_possible_pfn[i])
|
arch_zone_highest_possible_pfn[i])
|
||||||
printk("empty\n");
|
printk(KERN_CONT "empty\n");
|
||||||
else
|
else
|
||||||
printk("%0#10lx -> %0#10lx\n",
|
printk(KERN_CONT "%0#10lx -> %0#10lx\n",
|
||||||
arch_zone_lowest_possible_pfn[i],
|
arch_zone_lowest_possible_pfn[i],
|
||||||
arch_zone_highest_possible_pfn[i]);
|
arch_zone_highest_possible_pfn[i]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue