Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

tracing: Add a counter clock for those that do not trust clocks

When debugging tight race conditions, it can be helpful to have a
synchronized tracing method. Although in most cases the global clock
provides this functionality, if timings is not the issue, it is more
comforting to know that the order of events really happened in a precise
order.

Instead of using a clock, add a "counter" that is simply an incrementing
atomic 64bit counter that orders the events as they are perceived to
happen.

The trace_clock_counter() is added from the attempt by Peter Zijlstra
trying to convert the trace_clock_global() to it. I took Peter's counter
code and made trace_clock_counter() instead, and added it to the choice
of clocks. Just echo counter > /debug/tracing/trace_clock to activate
it.

Requested-by: Thomas Gleixner <tglx@linutronix.de>
Requested-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Reviewed-By: Valdis Kletnieks <valdis.kletnieks@vt.edu>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>

authored by

Steven Rostedt and committed by
Steven Rostedt
6249687f c64e148a

+14
+1
include/linux/trace_clock.h
··· 15 15 extern u64 notrace trace_clock_local(void); 16 16 extern u64 notrace trace_clock(void); 17 17 extern u64 notrace trace_clock_global(void); 18 + extern u64 notrace trace_clock_counter(void); 18 19 19 20 #endif /* _LINUX_TRACE_CLOCK_H */
+1
kernel/trace/trace.c
··· 435 435 } trace_clocks[] = { 436 436 { trace_clock_local, "local" }, 437 437 { trace_clock_global, "global" }, 438 + { trace_clock_counter, "counter" }, 438 439 }; 439 440 440 441 int trace_clock_id;
+12
kernel/trace/trace_clock.c
··· 113 113 114 114 return now; 115 115 } 116 + 117 + static atomic64_t trace_counter; 118 + 119 + /* 120 + * trace_clock_counter(): simply an atomic counter. 121 + * Use the trace_counter "counter" for cases where you do not care 122 + * about timings, but are interested in strict ordering. 123 + */ 124 + u64 notrace trace_clock_counter(void) 125 + { 126 + return atomic64_add_return(1, &trace_counter); 127 + }