tracing: Add traceoff_after_boot option
authorSteven Rostedt <rostedt@goodmis.org>
Sat, 8 Feb 2025 15:30:17 +0000 (10:30 -0500)
committerSteven Rostedt (Google) <rostedt@goodmis.org>
Tue, 25 Feb 2025 18:46:40 +0000 (13:46 -0500)
Sometimes tracing is used to debug issues during the boot process. Since
the trace buffer has a limited amount of storage, it may be prudent to
disable tracing after the boot is finished, otherwise the critical
information may be overwritten.  With this option, the main tracing buffer
will be turned off at the end of the boot process.

Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Borislav Petkov <bp@alien8.de>
Link: https://lore.kernel.org/20250208103017.48a7ec83@batman.local.home
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Documentation/admin-guide/kernel-parameters.txt
kernel/trace/trace.c

index fb8752b42ec8582b8750d7e014c4d76166fa2fc1..e8ca4eabd152674a63c09c75f37c388c1595f788 100644 (file)
                        See also "Event triggers" in Documentation/trace/events.rst
 
 
+       traceoff_after_boot
+                       [FTRACE] Sometimes tracing is used to debug issues
+                       during the boot process. Since the trace buffer has a
+                       limited amount of storage, it may be prudent to
+                       disable tracing after the boot is finished, otherwise
+                       the critical information may be overwritten.  With this
+                       option, the main tracing buffer will be turned off at
+                       the end of the boot process.
+
        traceoff_on_warning
                        [FTRACE] enable this option to disable tracing when a
                        warning is hit. This turns off "tracing_on". Tracing can
index 0e6d517e74e0fd19bfb31fcbcb977d57f894c78b..61458d8c3a61af3ef6fc3a11c6a398a8dfa6260d 100644 (file)
@@ -87,6 +87,7 @@ void __init disable_tracing_selftest(const char *reason)
 static struct trace_iterator *tracepoint_print_iter;
 int tracepoint_printk;
 static bool tracepoint_printk_stop_on_boot __initdata;
+static bool traceoff_after_boot __initdata;
 static DEFINE_STATIC_KEY_FALSE(tracepoint_printk_key);
 
 /* For tracers that don't implement custom flags */
@@ -330,6 +331,13 @@ static int __init set_tracepoint_printk_stop(char *str)
 }
 __setup("tp_printk_stop_on_boot", set_tracepoint_printk_stop);
 
+static int __init set_traceoff_after_boot(char *str)
+{
+       traceoff_after_boot = true;
+       return 1;
+}
+__setup("traceoff_after_boot", set_traceoff_after_boot);
+
 unsigned long long ns2usecs(u64 nsec)
 {
        nsec += 500;
@@ -10704,6 +10712,9 @@ __init static int late_trace_init(void)
                tracepoint_printk = 0;
        }
 
+       if (traceoff_after_boot)
+               tracing_off();
+
        tracing_set_default_clock();
        clear_boot_tracer();
        return 0;