mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-20 05:31:15 +00:00
mm: convert printk(KERN_<LEVEL> to pr_<level>
Most of the mm subsystem uses pr_<level> so make it consistent. Miscellanea: - Realign arguments - Add missing newline to format - kmemleak-test.c has a "kmemleak: " prefix added to the "Kmemleak testing" logging message via pr_fmt Signed-off-by: Joe Perches <joe@perches.com> Acked-by: Tejun Heo <tj@kernel.org> [percpu] Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
756a025f00
commit
1170532bb4
20 changed files with 118 additions and 150 deletions
|
@ -55,13 +55,12 @@ void __init mminit_verify_zonelist(void)
|
|||
/* Iterate the zonelist */
|
||||
for_each_zone_zonelist(zone, z, zonelist, zoneid) {
|
||||
#ifdef CONFIG_NUMA
|
||||
printk(KERN_CONT "%d:%s ",
|
||||
zone->node, zone->name);
|
||||
pr_cont("%d:%s ", zone->node, zone->name);
|
||||
#else
|
||||
printk(KERN_CONT "0:%s ", zone->name);
|
||||
pr_cont("0:%s ", zone->name);
|
||||
#endif /* CONFIG_NUMA */
|
||||
}
|
||||
printk(KERN_CONT "\n");
|
||||
pr_cont("\n");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue