tracing: Apply trace filters on all output channels
The event filters are not applied on all of the output, which results in
the flood of printk when using tp_printk. Unfolding
event_trigger_unlock_commit_regs() into trace_event_buffer_commit(), so
the filters can be applied on every output.
Link: https://lkml.kernel.org/r/20210814034538.8428-1-kernelfans@gmail.com
Cc: stable@vger.kernel.org
Fixes: 0daa230296 ("tracing: Add tp_printk cmdline to have tracepoints go to printk()")
Signed-off-by: Pingfan Liu <kernelfans@gmail.com>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
This commit is contained in:
committed by
Steven Rostedt (VMware)
parent
5acce0bff2
commit
6c34df6f35
@@ -2897,14 +2897,26 @@ int tracepoint_printk_sysctl(struct ctl_table *table, int write,
|
||||
|
||||
void trace_event_buffer_commit(struct trace_event_buffer *fbuffer)
|
||||
{
|
||||
enum event_trigger_type tt = ETT_NONE;
|
||||
struct trace_event_file *file = fbuffer->trace_file;
|
||||
|
||||
if (__event_trigger_test_discard(file, fbuffer->buffer, fbuffer->event,
|
||||
fbuffer->entry, &tt))
|
||||
goto discard;
|
||||
|
||||
if (static_key_false(&tracepoint_printk_key.key))
|
||||
output_printk(fbuffer);
|
||||
|
||||
if (static_branch_unlikely(&trace_event_exports_enabled))
|
||||
ftrace_exports(fbuffer->event, TRACE_EXPORT_EVENT);
|
||||
event_trigger_unlock_commit_regs(fbuffer->trace_file, fbuffer->buffer,
|
||||
fbuffer->event, fbuffer->entry,
|
||||
fbuffer->trace_ctx, fbuffer->regs);
|
||||
|
||||
trace_buffer_unlock_commit_regs(file->tr, fbuffer->buffer,
|
||||
fbuffer->event, fbuffer->trace_ctx, fbuffer->regs);
|
||||
|
||||
discard:
|
||||
if (tt)
|
||||
event_triggers_post_call(file, tt);
|
||||
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(trace_event_buffer_commit);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user