projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
be96447
)
mm: use KERN_CONT in printk() continuation lines
author
Kay Sievers
<kay@vrfy.org>
Tue, 8 May 2012 15:24:14 +0000
(17:24 +0200)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Tue, 8 May 2012 15:55:26 +0000
(08:55 -0700)
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Kay Sievers <kay@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
mm/page_alloc.c
patch
|
blob
|
history
diff --git
a/mm/page_alloc.c
b/mm/page_alloc.c
index a712fb9e04ce4c6914c34b4a80f5526c7b49f346..89b9af2ca26387243389dba139b908553b1d4267 100644
(file)
--- 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)
for (i = 0; i < MAX_NR_ZONES; i++) {
if (i == ZONE_MOVABLE)
continue;
- printk(" %-8s ", zone_names[i]);
+ printk(
KERN_CONT
" %-8s ", zone_names[i]);
if (arch_zone_lowest_possible_pfn[i] ==
arch_zone_highest_possible_pfn[i])
- printk("empty\n");
+ printk(
KERN_CONT
"empty\n");
else
- printk("%0#10lx -> %0#10lx\n",
+ printk(
KERN_CONT
"%0#10lx -> %0#10lx\n",
arch_zone_lowest_possible_pfn[i],
arch_zone_highest_possible_pfn[i]);
}