Converting pr_fmt from a simple define to use KBUILD_MODNAME added some duplicate logging prefixes to existing uses.
Remove them. Signed-off-by: Joe Perches <j...@perches.com> --- fs/proc/root.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/proc/root.c b/fs/proc/root.c index 61b7340b357a..78399fa8cf38 100644 --- a/fs/proc/root.c +++ b/fs/proc/root.c @@ -63,14 +63,14 @@ int proc_parse_options(char *options, struct pid_namespace *pid) return 0; if (option < HIDEPID_OFF || option > HIDEPID_INVISIBLE) { - pr_err("proc: hidepid value must be between 0 and 2.\n"); + pr_err("hidepid value must be between 0 and 2\n"); return 0; } pid->hide_pid = option; break; default: - pr_err("proc: unrecognized mount option \"%s\" " - "or missing value\n", p); + pr_err("unrecognized mount option \"%s\" or missing value\n", + p); return 0; } } -- 2.15.0