Skip to content

Commit

Permalink
rtla/osnoise: Fix error message when failing to enable trace instance
Browse files Browse the repository at this point in the history
When a trace instance creation fails, tools are printing:

	Could not enable -> osnoiser <- tracer for tracing

Print the actual (and correct) name of the tracer it fails to enable.

Link: https://lkml.kernel.org/r/53ef0582605af91eca14b19dba9fc9febb95d4f9.1645206561.git.bristot@kernel.org

Fixes: b169637 ("rtla: Helper functions for rtla")
Cc: Jonathan Corbet <corbet@lwn.net>
Signed-off-by: Daniel Bristot de Oliveira <bristot@kernel.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
  • Loading branch information
Daniel Bristot de Oliveira authored and Steven Rostedt (Google) committed Feb 26, 2022
1 parent 316f710 commit 90f59ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/tracing/rtla/src/osnoise.c
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,7 @@ struct osnoise_tool *osnoise_init_trace_tool(char *tracer)

retval = enable_tracer_by_name(trace->trace.inst, tracer);
if (retval) {
err_msg("Could not enable osnoiser tracer for tracing\n");
err_msg("Could not enable %s tracer for tracing\n", tracer);
goto out_err;
}

Expand Down

0 comments on commit 90f59ee

Please sign in to comment.