From: Kees Cook Date: Tue, 16 Jun 2020 05:02:56 +0000 (-0700) Subject: seccomp: Use pr_fmt X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=e68f9d49dda1744d548426c8b4335a8d693a36d0;p=uclinux-h8%2Flinux.git seccomp: Use pr_fmt Avoid open-coding "seccomp: " prefixes for pr_*() calls. Signed-off-by: Kees Cook --- diff --git a/kernel/seccomp.c b/kernel/seccomp.c index ba30bffa9301..5f0e3f3a7a5d 100644 --- a/kernel/seccomp.c +++ b/kernel/seccomp.c @@ -13,6 +13,7 @@ * Mode 2 allows user-defined system call filters in the form * of Berkeley Packet Filters/Linux Socket Filters. */ +#define pr_fmt(fmt) "seccomp: " fmt #include #include @@ -1873,7 +1874,7 @@ static int __init seccomp_sysctl_init(void) hdr = register_sysctl_paths(seccomp_sysctl_path, seccomp_sysctl_table); if (!hdr) - pr_warn("seccomp: sysctl registration failed\n"); + pr_warn("sysctl registration failed\n"); else kmemleak_not_leak(hdr);