Skip to content

Commit d3cba7f

Browse files
Daniel Bristot de Oliveirarostedt
authored andcommitted
tracing/osnoise: Fix notify new tracing_max_latency
osnoise/timerlat tracers are reporting new max latency on instances where the tracing is off, creating inconsistencies between the max reported values in the trace and in the tracing_max_latency. Thus only report new tracing_max_latency on active tracing instances. Link: https://lkml.kernel.org/r/ecd109fde4a0c24ab0f00ba1e9a144ac19a91322.1680104184.git.bristot@kernel.org Cc: [email protected] Fixes: dae1813 ("tracing/osnoise: Support a list of trace_array *tr") Signed-off-by: Daniel Bristot de Oliveira <[email protected]> Signed-off-by: Steven Rostedt (Google) <[email protected]>
1 parent b9f451a commit d3cba7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/trace/trace_osnoise.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1296,7 +1296,7 @@ static void notify_new_max_latency(u64 latency)
12961296
rcu_read_lock();
12971297
list_for_each_entry_rcu(inst, &osnoise_instances, list) {
12981298
tr = inst->tr;
1299-
if (tr->max_latency < latency) {
1299+
if (tracer_tracing_is_on(tr) && tr->max_latency < latency) {
13001300
tr->max_latency = latency;
13011301
latency_fsnotify(tr);
13021302
}

0 commit comments

Comments
 (0)