Remove multiple KERN_ prefixes from printk formats
Commit 5fd29d6ccb
("printk: clean up
handling of log-levels and newlines") changed printk semantics. printk
lines with multiple KERN_<level> prefixes are no longer emitted as
before the patch.
<level> is now included in the output on each additional use.
Remove all uses of multiple KERN_<level>s in formats.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
此提交包含在:
@@ -472,7 +472,8 @@ static int __init init_tcic(void)
|
||||
init_timer(&poll_timer);
|
||||
|
||||
/* Build interrupt mask */
|
||||
printk(", %d sockets\n" KERN_INFO " irq list (", sockets);
|
||||
printk(KERN_CONT ", %d sockets\n", sockets);
|
||||
printk(KERN_INFO " irq list (");
|
||||
if (irq_list_count == 0)
|
||||
mask = irq_mask;
|
||||
else
|
||||
|
新增問題並參考
封鎖使用者