forked from luck/tmp_suning_uos_patched
tracing: Add a trace print when traceoff_on_warning is triggered
When "traceoff_on_warning" is enabled and a warning happens, there can still be many trace events happening on other CPUs between the time the warning occurred and the last trace event on that same CPU. This can cause confusion in examining the trace, as it may not be obvious where the warning happened. By adding a trace print into the trace just before disabling tracing, it makes it obvious where the warning occurred, and the developer doesn't have to look at other means to see what CPU it occurred on. Cc: Peter Zijlstra <peterz@infradead.org> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
This commit is contained in:
parent
58f6e38448
commit
c200784a08
|
@ -1299,9 +1299,12 @@ EXPORT_SYMBOL_GPL(tracing_off);
|
|||
|
||||
void disable_trace_on_warning(void)
|
||||
{
|
||||
if (__disable_trace_on_warning)
|
||||
if (__disable_trace_on_warning) {
|
||||
trace_array_printk_buf(global_trace.array_buffer.buffer, _THIS_IP_,
|
||||
"Disabling tracing due to warning\n");
|
||||
tracing_off();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* tracer_tracing_is_on - show real state of ring buffer enabled
|
||||
|
|
Loading…
Reference in New Issue
Block a user