Skip to content

Commit 7d38c35

Browse files
Daniel Bristot de Oliveirarostedt
authored andcommitted
rtla/osnoise: Fix osnoise hist stop tracing message
rtla osnoise hist is printing the following message when hitting stop tracing: printf("rtla timelat hit stop tracing\n"); which is obviosly wrong. s/timerlat/osnoise/ fixing the printf. Link: https://lkml.kernel.org/r/2b8f090556fe37b81d183b74ce271421f131c77b.1646247211.git.bristot@kernel.org Fixes: 829a6c0 ("rtla/osnoise: Add the hist mode") Cc: Daniel Bristot de Oliveira <bristot@kernel.org> Cc: Clark Williams <williams@redhat.com> Cc: Juri Lelli <juri.lelli@redhat.com> 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>
1 parent 28d2160 commit 7d38c35

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/tracing/rtla/src/osnoise_hist.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -859,7 +859,7 @@ int osnoise_hist_main(int argc, char *argv[])
859859
return_value = 0;
860860

861861
if (trace_is_off(&tool->trace, &record->trace)) {
862-
printf("rtla timelat hit stop tracing\n");
862+
printf("rtla osnoise hit stop tracing\n");
863863
if (params->trace_output) {
864864
printf(" Saving trace to %s\n", params->trace_output);
865865
save_trace_to_file(record->trace.inst, params->trace_output);

0 commit comments

Comments
 (0)