diff options
author | Steven Rostedt <srostedt@redhat.com> | 2009-01-14 12:24:42 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-15 03:45:09 -0500 |
commit | 428aee1460a75197f0190534b4d610450ee59af1 (patch) | |
tree | 56eb2735c82c1556b1548f18ec75568e71954066 /kernel/trace/trace.c | |
parent | 32632920a788fb13da35b131b77cc4324c38c1c5 (diff) |
trace: print ftrace_dump at KERN_EMERG log level
Impact: fix to print out ftrace_dump when expected
I was debugging a hard race condition to only find out that
after I hit the race, my log level was not at level to show
KERN_INFO. The time it took to trigger the race was wasted because
I did not capture the trace.
Since ftrace_dump is only called from kernel oops (and only when
it is set in the kernel command line to do so), or when a
developer adds it to their own local tree, the log level of
the print should be at KERN_EMERG to make sure the print appears.
ftrace_dump is not called by a normal user setup, and will not
add extra unwanted print out to the console. There is no reason
it should be at KERN_INFO.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/trace/trace.c')
-rw-r--r-- | kernel/trace/trace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c index 40217fb499ea..408c03f2b8a9 100644 --- a/kernel/trace/trace.c +++ b/kernel/trace/trace.c | |||
@@ -3076,7 +3076,7 @@ static struct notifier_block trace_die_notifier = { | |||
3076 | * it if we decide to change what log level the ftrace dump | 3076 | * it if we decide to change what log level the ftrace dump |
3077 | * should be at. | 3077 | * should be at. |
3078 | */ | 3078 | */ |
3079 | #define KERN_TRACE KERN_INFO | 3079 | #define KERN_TRACE KERN_EMERG |
3080 | 3080 | ||
3081 | static void | 3081 | static void |
3082 | trace_printk_seq(struct trace_seq *s) | 3082 | trace_printk_seq(struct trace_seq *s) |