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

Configure Feed

Select the types of activity you want to include in your feed.

tracing/timer: Add missing argument documentation of trace points

Documentation of trace points timer_start, timer_expire_entry and
hrtimer_start lack always the last argument. Add it to keep implementation
and documentation in sync.

Signed-off-by: Anna-Maria Behnsen <anna-maria@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Link: https://lore.kernel.org/r/20220411140115.24185-1-anna-maria@linutronix.de

authored by

Anna-Maria Behnsen and committed by
Thomas Gleixner
fde33ca4 8afbcaf8

+4 -1
+4 -1
include/trace/events/timer.h
··· 48 48 * timer_start - called when the timer is started 49 49 * @timer: pointer to struct timer_list 50 50 * @expires: the timers expiry time 51 + * @flags: the timers flags 51 52 */ 52 53 TRACE_EVENT(timer_start, 53 54 ··· 85 84 /** 86 85 * timer_expire_entry - called immediately before the timer callback 87 86 * @timer: pointer to struct timer_list 87 + * @baseclk: value of timer_base::clk when timer expires 88 88 * 89 89 * Allows to determine the timer latency. 90 90 */ ··· 192 190 193 191 /** 194 192 * hrtimer_start - called when the hrtimer is started 195 - * @hrtimer: pointer to struct hrtimer 193 + * @hrtimer: pointer to struct hrtimer 194 + * @mode: the hrtimers mode 196 195 */ 197 196 TRACE_EVENT(hrtimer_start, 198 197