Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a813a159 authored by Steven Rostedt's avatar Steven Rostedt Committed by Steven Rostedt
Browse files

tracing: fix trace_vprintk call



The addition of trace_array_{v}printk used the wrong function for
trace_vprintk to call. This broke trace_marker and trace_vprintk
itself. Although trace_printk may not have been affected by those
that end up calling trace_vbprintk.

Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
parent 8f6e8a31
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1393,7 +1393,7 @@ int trace_array_vprintk(struct trace_array *tr,

int trace_vprintk(unsigned long ip, const char *fmt, va_list args)
{
	return trace_array_printk(&global_trace, ip, fmt, args);
	return trace_array_vprintk(&global_trace, ip, fmt, args);
}
EXPORT_SYMBOL_GPL(trace_vprintk);