]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
rtla/timerlat_hist: Stop timerlat tracer on signal
authorTomas Glozar <tglozar@redhat.com>
Thu, 16 Jan 2025 14:49:28 +0000 (15:49 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 21 Feb 2025 12:49:52 +0000 (13:49 +0100)
commit c73cab9dbed04d8f65ca69177b4b21ed3e09dfa7 upstream.

Currently, when either SIGINT from the user or SIGALRM from the duration
timer is caught by rtla-timerlat, stop_tracing is set to break out of
the main loop. This is not sufficient for cases where the timerlat
tracer is producing more data than rtla can consume, since in that case,
rtla is looping indefinitely inside tracefs_iterate_raw_events, never
reaches the check of stop_tracing and hangs.

In addition to setting stop_tracing, also stop the timerlat tracer on
received signal (SIGINT or SIGALRM). This will stop new samples so that
the existing samples may be processed and tracefs_iterate_raw_events
eventually exits.

Cc: stable@vger.kernel.org
Cc: John Kacur <jkacur@redhat.com>
Cc: Luis Goncalves <lgoncalv@redhat.com>
Cc: Gabriele Monaco <gmonaco@redhat.com>
Link: https://lore.kernel.org/20250116144931.649593-3-tglozar@redhat.com
Fixes: 1eeb6328e8b3 ("rtla/timerlat: Add timerlat hist mode")
Signed-off-by: Tomas Glozar <tglozar@redhat.com>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
tools/tracing/rtla/src/timerlat_hist.c

index ed08295bfa12c85467bfa5af08a9d6d5183d8486..83cc7ef3d36b3077b4e8e73a2008a2a8a1b0f68d 100644 (file)
@@ -783,9 +783,12 @@ out_err:
 }
 
 static int stop_tracing;
+static struct trace_instance *hist_inst = NULL;
 static void stop_hist(int sig)
 {
        stop_tracing = 1;
+       if (hist_inst)
+               trace_instance_stop(hist_inst);
 }
 
 /*
@@ -828,6 +831,12 @@ int timerlat_hist_main(int argc, char *argv[])
        }
 
        trace = &tool->trace;
+       /*
+        * Save trace instance into global variable so that SIGINT can stop
+        * the timerlat tracer.
+        * Otherwise, rtla could loop indefinitely when overloaded.
+        */
+       hist_inst = trace;
 
        retval = enable_timerlat(trace);
        if (retval) {
@@ -894,7 +903,7 @@ int timerlat_hist_main(int argc, char *argv[])
 
        return_value = 0;
 
-       if (trace_is_off(&tool->trace, &record->trace)) {
+       if (trace_is_off(&tool->trace, &record->trace) && !stop_tracing) {
                printf("rtla timerlat hit stop tracing\n");
                if (params->trace_output) {
                        printf("  Saving trace to %s\n", params->trace_output);