diff options
author | Kees Cook <keescook@chromium.org> | 2019-09-25 19:47:58 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-09-25 20:51:40 -0400 |
commit | f2f84b05e02b7710a201f0017b3272ad7ef703d1 (patch) | |
tree | 7112c102ddb5ade54dd54cb8bb9f2ff160998731 | |
parent | 89348fc31441f0270b040fbeb68b6d7d13504f36 (diff) |
bug: consolidate warn_slowpath_fmt() usage
Instead of having a separate helper for no printk output, just consolidate
the logic into warn_slowpath_fmt().
Link: http://lkml.kernel.org/r/20190819234111.9019-4-keescook@chromium.org
Signed-off-by: Kees Cook <keescook@chromium.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Borislav Petkov <bp@suse.de>
Cc: Christophe Leroy <christophe.leroy@c-s.fr>
Cc: Drew Davenport <ddavenport@chromium.org>
Cc: Feng Tang <feng.tang@intel.com>
Cc: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Petr Mladek <pmladek@suse.com>
Cc: "Steven Rostedt (VMware)" <rostedt@goodmis.org>
Cc: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | include/asm-generic/bug.h | 3 | ||||
-rw-r--r-- | kernel/panic.c | 14 |
2 files changed, 8 insertions, 9 deletions
diff --git a/include/asm-generic/bug.h b/include/asm-generic/bug.h index 2d35bbf687d0..598d7072602f 100644 --- a/include/asm-generic/bug.h +++ b/include/asm-generic/bug.h | |||
@@ -93,9 +93,8 @@ struct bug_entry { | |||
93 | extern __printf(4, 5) | 93 | extern __printf(4, 5) |
94 | void warn_slowpath_fmt(const char *file, const int line, unsigned taint, | 94 | void warn_slowpath_fmt(const char *file, const int line, unsigned taint, |
95 | const char *fmt, ...); | 95 | const char *fmt, ...); |
96 | extern void warn_slowpath_null(const char *file, const int line); | ||
97 | #define WANT_WARN_ON_SLOWPATH | 96 | #define WANT_WARN_ON_SLOWPATH |
98 | #define __WARN() warn_slowpath_null(__FILE__, __LINE__) | 97 | #define __WARN() __WARN_printf(TAINT_WARN, NULL) |
99 | #define __WARN_printf(taint, arg...) \ | 98 | #define __WARN_printf(taint, arg...) \ |
100 | warn_slowpath_fmt(__FILE__, __LINE__, taint, arg) | 99 | warn_slowpath_fmt(__FILE__, __LINE__, taint, arg) |
101 | #else | 100 | #else |
diff --git a/kernel/panic.c b/kernel/panic.c index 1d89f5423426..79c153951b59 100644 --- a/kernel/panic.c +++ b/kernel/panic.c | |||
@@ -605,19 +605,19 @@ void warn_slowpath_fmt(const char *file, int line, unsigned taint, | |||
605 | { | 605 | { |
606 | struct warn_args args; | 606 | struct warn_args args; |
607 | 607 | ||
608 | if (!fmt) { | ||
609 | pr_warn(CUT_HERE); | ||
610 | __warn(file, line, __builtin_return_address(0), taint, | ||
611 | NULL, NULL); | ||
612 | return; | ||
613 | } | ||
614 | |||
608 | args.fmt = fmt; | 615 | args.fmt = fmt; |
609 | va_start(args.args, fmt); | 616 | va_start(args.args, fmt); |
610 | __warn(file, line, __builtin_return_address(0), taint, NULL, &args); | 617 | __warn(file, line, __builtin_return_address(0), taint, NULL, &args); |
611 | va_end(args.args); | 618 | va_end(args.args); |
612 | } | 619 | } |
613 | EXPORT_SYMBOL(warn_slowpath_fmt); | 620 | EXPORT_SYMBOL(warn_slowpath_fmt); |
614 | |||
615 | void warn_slowpath_null(const char *file, int line) | ||
616 | { | ||
617 | pr_warn(CUT_HERE); | ||
618 | __warn(file, line, __builtin_return_address(0), TAINT_WARN, NULL, NULL); | ||
619 | } | ||
620 | EXPORT_SYMBOL(warn_slowpath_null); | ||
621 | #else | 621 | #else |
622 | void __warn_printk(const char *fmt, ...) | 622 | void __warn_printk(const char *fmt, ...) |
623 | { | 623 | { |