Skip to content

Commit

Permalink
printk: Add KBUILD_MODNAME and remove a redundant print prefix
Browse files Browse the repository at this point in the history
Add KBUILD_MODNAME to make prints more clear.

Link: http://lkml.kernel.org/r/1538239553-81805-3-git-send-email-zhe.he@windriver.com
Cc: rostedt@goodmis.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: He Zhe <zhe.he@windriver.com>
Reviewed-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
Signed-off-by: Petr Mladek <pmladek@suse.com>
  • Loading branch information
He Zhe authored and Petr Mladek committed Oct 5, 2018
1 parent 51a72ab commit dd5adbf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion kernel/printk/printk.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
* 01Mar01 Andrew Morton
*/

#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include <linux/kernel.h>
#include <linux/mm.h>
#include <linux/tty.h>
Expand Down Expand Up @@ -2699,7 +2701,7 @@ void register_console(struct console *newcon)

if (newcon->flags & CON_EXTENDED)
if (!nr_ext_console_drivers++)
pr_info("printk: continuation disabled due to ext consoles, expect more fragments in /dev/kmsg\n");
pr_info("continuation disabled due to ext consoles, expect more fragments in /dev/kmsg\n");

if (newcon->flags & CON_PRINTBUFFER) {
/*
Expand Down

0 comments on commit dd5adbf

Please sign in to comment.