Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1451340
| From | Emese Revfy <re.emese@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v3 2/7] Split up struct warn_args |
| Date | 2016-07-27 17:20 +0200 |
| Message-ID | <rZyMN-164-3@gated-at.bofh.it> (permalink) |
| References | <rZgZA-6D5-21@gated-at.bofh.it> <rZh9g-6Gn-13@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Disable the initify plugin on the 6th parameter
of __warn() because the va_list type can't be NULL
on the tile arch.
Signed-off-by: Emese Revfy <re.emese@gmail.com>
---
include/asm-generic/bug.h | 7 +++++--
kernel/panic.c | 32 ++++++++++++++++++++------------
lib/bug.c | 2 +-
3 files changed, 26 insertions(+), 15 deletions(-)
diff --git a/include/asm-generic/bug.h b/include/asm-generic/bug.h
index 13a9241..f6ae0d7 100644
--- a/include/asm-generic/bug.h
+++ b/include/asm-generic/bug.h
@@ -81,9 +81,12 @@ extern __nocapture(1) void warn_slowpath_null(const char *file, const int line);
do { printk(arg); __WARN_TAINT(taint); } while (0)
#endif
-__nocapture(1, 6)
+/* used internally by panic.c */
+struct warn_args;
+
+__nocapture(1, 0)
void __warn(const char *file, int line, void *caller, unsigned taint,
- struct pt_regs *regs, const char *fmt, va_list args);
+ struct pt_regs *regs, struct warn_args *args);
#ifndef WARN_ON
#define WARN_ON(condition) ({ \
diff --git a/kernel/panic.c b/kernel/panic.c
index 993ad20..ca8cea1 100644
--- a/kernel/panic.c
+++ b/kernel/panic.c
@@ -475,8 +475,13 @@ void oops_exit(void)
kmsg_dump(KMSG_DUMP_OOPS);
}
+struct warn_args {
+ const char *fmt;
+ va_list args;
+};
+
void __warn(const char *file, int line, void *caller, unsigned taint,
- struct pt_regs *regs, const char *fmt, va_list args)
+ struct pt_regs *regs, struct warn_args *args)
{
disable_trace_on_warning();
@@ -490,8 +495,8 @@ void __warn(const char *file, int line, void *caller, unsigned taint,
pr_warn("WARNING: CPU: %d PID: %d at %pS\n",
raw_smp_processor_id(), current->pid, caller);
- if (fmt)
- vprintk(fmt, args);
+ if (args)
+ vprintk(args->fmt, args->args);
if (panic_on_warn) {
/*
@@ -520,28 +525,31 @@ void __warn(const char *file, int line, void *caller, unsigned taint,
#ifdef WANT_WARN_ON_SLOWPATH
void warn_slowpath_fmt(const char *file, int line, const char *fmt, ...)
{
- va_list args;
+ struct warn_args args;
- va_start(args, fmt);
- __warn(file, line, __builtin_return_address(0), TAINT_WARN, NULL, fmt, args);
- va_end(args);
+ args.fmt = fmt;
+ va_start(args.args, fmt);
+ __warn(file, line, __builtin_return_address(0), TAINT_WARN, NULL,
+ &args);
+ va_end(args.args);
}
EXPORT_SYMBOL(warn_slowpath_fmt);
void warn_slowpath_fmt_taint(const char *file, int line,
unsigned taint, const char *fmt, ...)
{
- va_list args;
+ struct warn_args args;
- va_start(args, fmt);
- __warn(file, line, __builtin_return_address(0), taint, NULL, fmt, args);
- va_end(args);
+ args.fmt = fmt;
+ va_start(args.args, fmt);
+ __warn(file, line, __builtin_return_address(0), taint, NULL, &args);
+ va_end(args.args);
}
EXPORT_SYMBOL(warn_slowpath_fmt_taint);
void warn_slowpath_null(const char *file, int line)
{
- __warn(file, line, __builtin_return_address(0), TAINT_WARN, NULL, NULL, NULL);
+ __warn(file, line, __builtin_return_address(0), TAINT_WARN, NULL, NULL);
}
EXPORT_SYMBOL(warn_slowpath_null);
#endif
diff --git a/lib/bug.c b/lib/bug.c
index c8bdebb..bc3656e 100644
--- a/lib/bug.c
+++ b/lib/bug.c
@@ -168,7 +168,7 @@ enum bug_trap_type report_bug(unsigned long bugaddr, struct pt_regs *regs)
if (warning) {
/* this is a WARN_ON rather than BUG/BUG_ON */
__warn(file, line, (void *)bugaddr, BUG_GET_TAINT(bug), regs,
- NULL, NULL);
+ NULL);
return BUG_TRAP_TYPE_WARN;
}
--
2.8.1
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH v3 0/7] Introduce the initify gcc plugin Emese Revfy <re.emese@gmail.com> - 2016-07-26 22:20 +0200
[PATCH v3 1/7] Move type casts into is_kernel_rodata Emese Revfy <re.emese@gmail.com> - 2016-07-26 22:20 +0200
[PATCH v3 2/7] Split up struct warn_args Emese Revfy <re.emese@gmail.com> - 2016-07-26 22:30 +0200
Re: [PATCH v3 2/7] Split up struct warn_args kbuild test robot <lkp@intel.com> - 2016-07-27 04:30 +0200
[PATCH v3 2/7] Split up struct warn_args Emese Revfy <re.emese@gmail.com> - 2016-07-27 17:20 +0200
[PATCH v3 3/7] Constify some function parameters Emese Revfy <re.emese@gmail.com> - 2016-07-26 22:30 +0200
[PATCH v3 7/7] Mark functions with the __unverified_nocapture attribute Emese Revfy <re.emese@gmail.com> - 2016-07-26 22:30 +0200
[PATCH v3 5/7] Mark functions with the __nocapture attribute Emese Revfy <re.emese@gmail.com> - 2016-07-26 22:30 +0200
[PATCH v3 6/7] Mark a few functions with the printf attribute Emese Revfy <re.emese@gmail.com> - 2016-07-26 22:30 +0200
[PATCH v3 6/7] Mark a few functions with the printf attribute Emese Revfy <re.emese@gmail.com> - 2016-07-27 17:20 +0200
csiph-web