blob: 16e305e69f34ddf1d9a9ed87d70f7e716e052707 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Xiao Guangrong2b022e32009-08-10 10:48:59 +08002#undef TRACE_SYSTEM
3#define TRACE_SYSTEM timer
4
5#if !defined(_TRACE_TIMER_H) || defined(TRACE_HEADER_MULTI_READ)
6#define _TRACE_TIMER_H
7
8#include <linux/tracepoint.h>
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08009#include <linux/hrtimer.h>
Xiao Guangrong2b022e32009-08-10 10:48:59 +080010#include <linux/timer.h>
11
Li Zefan363d0f62010-05-24 16:23:15 +080012DECLARE_EVENT_CLASS(timer_class,
Xiao Guangrong2b022e32009-08-10 10:48:59 +080013
14 TP_PROTO(struct timer_list *timer),
15
16 TP_ARGS(timer),
17
18 TP_STRUCT__entry(
19 __field( void *, timer )
20 ),
21
22 TP_fast_assign(
23 __entry->timer = timer;
24 ),
25
Ingo Molnar434a83c2009-10-15 11:50:39 +020026 TP_printk("timer=%p", __entry->timer)
Xiao Guangrong2b022e32009-08-10 10:48:59 +080027);
28
29/**
Li Zefan363d0f62010-05-24 16:23:15 +080030 * timer_init - called when the timer is initialized
31 * @timer: pointer to struct timer_list
32 */
33DEFINE_EVENT(timer_class, timer_init,
34
35 TP_PROTO(struct timer_list *timer),
36
37 TP_ARGS(timer)
38);
39
Thomas Gleixner8a58a342017-02-10 16:41:15 +010040#define decode_timer_flags(flags) \
41 __print_flags(flags, "|", \
42 { TIMER_MIGRATING, "M" }, \
43 { TIMER_DEFERRABLE, "D" }, \
44 { TIMER_PINNED, "P" }, \
45 { TIMER_IRQSAFE, "I" })
46
Li Zefan363d0f62010-05-24 16:23:15 +080047/**
Xiao Guangrong2b022e32009-08-10 10:48:59 +080048 * timer_start - called when the timer is started
49 * @timer: pointer to struct timer_list
50 * @expires: the timers expiry time
51 */
52TRACE_EVENT(timer_start,
53
Badhri Jagan Sridharan4e413e82015-05-07 16:20:34 -070054 TP_PROTO(struct timer_list *timer,
55 unsigned long expires,
Thomas Gleixner0eeda712015-05-26 22:50:29 +000056 unsigned int flags),
Xiao Guangrong2b022e32009-08-10 10:48:59 +080057
Thomas Gleixner0eeda712015-05-26 22:50:29 +000058 TP_ARGS(timer, expires, flags),
Xiao Guangrong2b022e32009-08-10 10:48:59 +080059
60 TP_STRUCT__entry(
61 __field( void *, timer )
62 __field( void *, function )
63 __field( unsigned long, expires )
64 __field( unsigned long, now )
Thomas Gleixner0eeda712015-05-26 22:50:29 +000065 __field( unsigned int, flags )
Xiao Guangrong2b022e32009-08-10 10:48:59 +080066 ),
67
68 TP_fast_assign(
69 __entry->timer = timer;
70 __entry->function = timer->function;
71 __entry->expires = expires;
72 __entry->now = jiffies;
Thomas Gleixner0eeda712015-05-26 22:50:29 +000073 __entry->flags = flags;
Xiao Guangrong2b022e32009-08-10 10:48:59 +080074 ),
75
Thomas Gleixner8a58a342017-02-10 16:41:15 +010076 TP_printk("timer=%p function=%pf expires=%lu [timeout=%ld] cpu=%u idx=%u flags=%s",
Xiao Guangrong2b022e32009-08-10 10:48:59 +080077 __entry->timer, __entry->function, __entry->expires,
Thomas Gleixner8a58a342017-02-10 16:41:15 +010078 (long)__entry->expires - __entry->now,
79 __entry->flags & TIMER_CPUMASK,
80 __entry->flags >> TIMER_ARRAYSHIFT,
81 decode_timer_flags(__entry->flags & TIMER_TRACE_FLAGMASK))
Xiao Guangrong2b022e32009-08-10 10:48:59 +080082);
83
84/**
85 * timer_expire_entry - called immediately before the timer callback
86 * @timer: pointer to struct timer_list
87 *
88 * Allows to determine the timer latency.
89 */
90TRACE_EVENT(timer_expire_entry,
91
92 TP_PROTO(struct timer_list *timer),
93
94 TP_ARGS(timer),
95
96 TP_STRUCT__entry(
97 __field( void *, timer )
98 __field( unsigned long, now )
Arjan van de Venede1b422010-08-18 15:33:13 -070099 __field( void *, function)
Xiao Guangrong2b022e32009-08-10 10:48:59 +0800100 ),
101
102 TP_fast_assign(
103 __entry->timer = timer;
104 __entry->now = jiffies;
Arjan van de Venede1b422010-08-18 15:33:13 -0700105 __entry->function = timer->function;
Xiao Guangrong2b022e32009-08-10 10:48:59 +0800106 ),
107
Arjan van de Venede1b422010-08-18 15:33:13 -0700108 TP_printk("timer=%p function=%pf now=%lu", __entry->timer, __entry->function,__entry->now)
Xiao Guangrong2b022e32009-08-10 10:48:59 +0800109);
110
111/**
112 * timer_expire_exit - called immediately after the timer callback returns
113 * @timer: pointer to struct timer_list
114 *
115 * When used in combination with the timer_expire_entry tracepoint we can
116 * determine the runtime of the timer callback function.
117 *
118 * NOTE: Do NOT derefernce timer in TP_fast_assign. The pointer might
119 * be invalid. We solely track the pointer.
120 */
Li Zefan363d0f62010-05-24 16:23:15 +0800121DEFINE_EVENT(timer_class, timer_expire_exit,
Xiao Guangrong2b022e32009-08-10 10:48:59 +0800122
123 TP_PROTO(struct timer_list *timer),
124
Li Zefan363d0f62010-05-24 16:23:15 +0800125 TP_ARGS(timer)
Xiao Guangrong2b022e32009-08-10 10:48:59 +0800126);
127
128/**
129 * timer_cancel - called when the timer is canceled
130 * @timer: pointer to struct timer_list
131 */
Li Zefan363d0f62010-05-24 16:23:15 +0800132DEFINE_EVENT(timer_class, timer_cancel,
Xiao Guangrong2b022e32009-08-10 10:48:59 +0800133
134 TP_PROTO(struct timer_list *timer),
135
Li Zefan363d0f62010-05-24 16:23:15 +0800136 TP_ARGS(timer)
Xiao Guangrong2b022e32009-08-10 10:48:59 +0800137);
138
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800139/**
140 * hrtimer_init - called when the hrtimer is initialized
Masanari Iidacf2fbdd2013-03-16 20:53:05 +0900141 * @hrtimer: pointer to struct hrtimer
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800142 * @clockid: the hrtimers clock
143 * @mode: the hrtimers mode
144 */
145TRACE_EVENT(hrtimer_init,
146
Ingo Molnar434a83c2009-10-15 11:50:39 +0200147 TP_PROTO(struct hrtimer *hrtimer, clockid_t clockid,
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800148 enum hrtimer_mode mode),
149
Ingo Molnar434a83c2009-10-15 11:50:39 +0200150 TP_ARGS(hrtimer, clockid, mode),
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800151
152 TP_STRUCT__entry(
Ingo Molnar434a83c2009-10-15 11:50:39 +0200153 __field( void *, hrtimer )
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800154 __field( clockid_t, clockid )
155 __field( enum hrtimer_mode, mode )
156 ),
157
158 TP_fast_assign(
Ingo Molnar434a83c2009-10-15 11:50:39 +0200159 __entry->hrtimer = hrtimer;
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800160 __entry->clockid = clockid;
161 __entry->mode = mode;
162 ),
163
Ingo Molnar434a83c2009-10-15 11:50:39 +0200164 TP_printk("hrtimer=%p clockid=%s mode=%s", __entry->hrtimer,
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800165 __entry->clockid == CLOCK_REALTIME ?
166 "CLOCK_REALTIME" : "CLOCK_MONOTONIC",
167 __entry->mode == HRTIMER_MODE_ABS ?
168 "HRTIMER_MODE_ABS" : "HRTIMER_MODE_REL")
169);
170
171/**
172 * hrtimer_start - called when the hrtimer is started
Masanari Iidacf2fbdd2013-03-16 20:53:05 +0900173 * @hrtimer: pointer to struct hrtimer
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800174 */
175TRACE_EVENT(hrtimer_start,
176
Ingo Molnar434a83c2009-10-15 11:50:39 +0200177 TP_PROTO(struct hrtimer *hrtimer),
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800178
Ingo Molnar434a83c2009-10-15 11:50:39 +0200179 TP_ARGS(hrtimer),
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800180
181 TP_STRUCT__entry(
Ingo Molnar434a83c2009-10-15 11:50:39 +0200182 __field( void *, hrtimer )
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800183 __field( void *, function )
184 __field( s64, expires )
185 __field( s64, softexpires )
186 ),
187
188 TP_fast_assign(
Ingo Molnar434a83c2009-10-15 11:50:39 +0200189 __entry->hrtimer = hrtimer;
190 __entry->function = hrtimer->function;
Thomas Gleixner2456e852016-12-25 11:38:40 +0100191 __entry->expires = hrtimer_get_expires(hrtimer);
192 __entry->softexpires = hrtimer_get_softexpires(hrtimer);
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800193 ),
194
Ingo Molnar434a83c2009-10-15 11:50:39 +0200195 TP_printk("hrtimer=%p function=%pf expires=%llu softexpires=%llu",
196 __entry->hrtimer, __entry->function,
Thomas Gleixner2456e852016-12-25 11:38:40 +0100197 (unsigned long long) __entry->expires,
198 (unsigned long long) __entry->softexpires)
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800199);
200
201/**
Masanari Iidacf2fbdd2013-03-16 20:53:05 +0900202 * hrtimer_expire_entry - called immediately before the hrtimer callback
203 * @hrtimer: pointer to struct hrtimer
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800204 * @now: pointer to variable which contains current time of the
205 * timers base.
206 *
207 * Allows to determine the timer latency.
208 */
209TRACE_EVENT(hrtimer_expire_entry,
210
Ingo Molnar434a83c2009-10-15 11:50:39 +0200211 TP_PROTO(struct hrtimer *hrtimer, ktime_t *now),
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800212
Ingo Molnar434a83c2009-10-15 11:50:39 +0200213 TP_ARGS(hrtimer, now),
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800214
215 TP_STRUCT__entry(
Ingo Molnar434a83c2009-10-15 11:50:39 +0200216 __field( void *, hrtimer )
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800217 __field( s64, now )
Arjan van de Venede1b422010-08-18 15:33:13 -0700218 __field( void *, function)
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800219 ),
220
221 TP_fast_assign(
Ingo Molnar434a83c2009-10-15 11:50:39 +0200222 __entry->hrtimer = hrtimer;
Thomas Gleixner2456e852016-12-25 11:38:40 +0100223 __entry->now = *now;
Arjan van de Venede1b422010-08-18 15:33:13 -0700224 __entry->function = hrtimer->function;
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800225 ),
226
Arjan van de Venede1b422010-08-18 15:33:13 -0700227 TP_printk("hrtimer=%p function=%pf now=%llu", __entry->hrtimer, __entry->function,
Thomas Gleixner2456e852016-12-25 11:38:40 +0100228 (unsigned long long) __entry->now)
229);
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800230
Li Zefan363d0f62010-05-24 16:23:15 +0800231DECLARE_EVENT_CLASS(hrtimer_class,
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800232
Ingo Molnar434a83c2009-10-15 11:50:39 +0200233 TP_PROTO(struct hrtimer *hrtimer),
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800234
Ingo Molnar434a83c2009-10-15 11:50:39 +0200235 TP_ARGS(hrtimer),
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800236
237 TP_STRUCT__entry(
Ingo Molnar434a83c2009-10-15 11:50:39 +0200238 __field( void *, hrtimer )
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800239 ),
240
241 TP_fast_assign(
Ingo Molnar434a83c2009-10-15 11:50:39 +0200242 __entry->hrtimer = hrtimer;
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800243 ),
244
Ingo Molnar434a83c2009-10-15 11:50:39 +0200245 TP_printk("hrtimer=%p", __entry->hrtimer)
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800246);
247
248/**
Li Zefan363d0f62010-05-24 16:23:15 +0800249 * hrtimer_expire_exit - called immediately after the hrtimer callback returns
Masanari Iidacf2fbdd2013-03-16 20:53:05 +0900250 * @hrtimer: pointer to struct hrtimer
Li Zefan363d0f62010-05-24 16:23:15 +0800251 *
252 * When used in combination with the hrtimer_expire_entry tracepoint we can
253 * determine the runtime of the callback function.
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800254 */
Li Zefan363d0f62010-05-24 16:23:15 +0800255DEFINE_EVENT(hrtimer_class, hrtimer_expire_exit,
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800256
Ingo Molnar434a83c2009-10-15 11:50:39 +0200257 TP_PROTO(struct hrtimer *hrtimer),
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800258
Li Zefan363d0f62010-05-24 16:23:15 +0800259 TP_ARGS(hrtimer)
260);
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800261
Li Zefan363d0f62010-05-24 16:23:15 +0800262/**
263 * hrtimer_cancel - called when the hrtimer is canceled
264 * @hrtimer: pointer to struct hrtimer
265 */
266DEFINE_EVENT(hrtimer_class, hrtimer_cancel,
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800267
Li Zefan363d0f62010-05-24 16:23:15 +0800268 TP_PROTO(struct hrtimer *hrtimer),
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800269
Li Zefan363d0f62010-05-24 16:23:15 +0800270 TP_ARGS(hrtimer)
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800271);
272
Xiao Guangrong3f0a5252009-08-10 10:52:30 +0800273/**
274 * itimer_state - called when itimer is started or canceled
275 * @which: name of the interval timer
276 * @value: the itimers value, itimer is canceled if value->it_value is
277 * zero, otherwise it is started
278 * @expires: the itimers expiry time
279 */
280TRACE_EVENT(itimer_state,
281
282 TP_PROTO(int which, const struct itimerval *const value,
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +0100283 unsigned long long expires),
Xiao Guangrong3f0a5252009-08-10 10:52:30 +0800284
285 TP_ARGS(which, value, expires),
286
287 TP_STRUCT__entry(
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +0100288 __field( int, which )
289 __field( unsigned long long, expires )
290 __field( long, value_sec )
291 __field( long, value_usec )
292 __field( long, interval_sec )
293 __field( long, interval_usec )
Xiao Guangrong3f0a5252009-08-10 10:52:30 +0800294 ),
295
296 TP_fast_assign(
297 __entry->which = which;
298 __entry->expires = expires;
299 __entry->value_sec = value->it_value.tv_sec;
300 __entry->value_usec = value->it_value.tv_usec;
301 __entry->interval_sec = value->it_interval.tv_sec;
302 __entry->interval_usec = value->it_interval.tv_usec;
303 ),
304
Thomas Gleixnere9c07482009-12-10 13:23:19 +0100305 TP_printk("which=%d expires=%llu it_value=%ld.%ld it_interval=%ld.%ld",
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +0100306 __entry->which, __entry->expires,
Xiao Guangrong3f0a5252009-08-10 10:52:30 +0800307 __entry->value_sec, __entry->value_usec,
308 __entry->interval_sec, __entry->interval_usec)
309);
310
311/**
312 * itimer_expire - called when itimer expires
313 * @which: type of the interval timer
314 * @pid: pid of the process which owns the timer
315 * @now: current time, used to calculate the latency of itimer
316 */
317TRACE_EVENT(itimer_expire,
318
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +0100319 TP_PROTO(int which, struct pid *pid, unsigned long long now),
Xiao Guangrong3f0a5252009-08-10 10:52:30 +0800320
321 TP_ARGS(which, pid, now),
322
323 TP_STRUCT__entry(
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +0100324 __field( int , which )
325 __field( pid_t, pid )
326 __field( unsigned long long, now )
Xiao Guangrong3f0a5252009-08-10 10:52:30 +0800327 ),
328
329 TP_fast_assign(
330 __entry->which = which;
331 __entry->now = now;
332 __entry->pid = pid_nr(pid);
333 ),
334
Thomas Gleixnere9c07482009-12-10 13:23:19 +0100335 TP_printk("which=%d pid=%d now=%llu", __entry->which,
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +0100336 (int) __entry->pid, __entry->now)
Xiao Guangrong3f0a5252009-08-10 10:52:30 +0800337);
338
Frederic Weisbecker2c82d1be2013-04-20 17:35:50 +0200339#ifdef CONFIG_NO_HZ_COMMON
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100340
341#define TICK_DEP_NAMES \
Steven Rostedt (Red Hat)c87edb32016-08-05 12:41:52 -0400342 tick_dep_mask_name(NONE) \
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100343 tick_dep_name(POSIX_TIMER) \
344 tick_dep_name(PERF_EVENTS) \
345 tick_dep_name(SCHED) \
346 tick_dep_name_end(CLOCK_UNSTABLE)
347
348#undef tick_dep_name
Steven Rostedt (Red Hat)c87edb32016-08-05 12:41:52 -0400349#undef tick_dep_mask_name
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100350#undef tick_dep_name_end
351
Steven Rostedt (Red Hat)c87edb32016-08-05 12:41:52 -0400352/* The MASK will convert to their bits and they need to be processed too */
353#define tick_dep_name(sdep) TRACE_DEFINE_ENUM(TICK_DEP_BIT_##sdep); \
354 TRACE_DEFINE_ENUM(TICK_DEP_MASK_##sdep);
355#define tick_dep_name_end(sdep) TRACE_DEFINE_ENUM(TICK_DEP_BIT_##sdep); \
356 TRACE_DEFINE_ENUM(TICK_DEP_MASK_##sdep);
357/* NONE only has a mask defined for it */
358#define tick_dep_mask_name(sdep) TRACE_DEFINE_ENUM(TICK_DEP_MASK_##sdep);
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100359
360TICK_DEP_NAMES
361
362#undef tick_dep_name
Steven Rostedt (Red Hat)c87edb32016-08-05 12:41:52 -0400363#undef tick_dep_mask_name
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100364#undef tick_dep_name_end
365
366#define tick_dep_name(sdep) { TICK_DEP_MASK_##sdep, #sdep },
Steven Rostedt (Red Hat)c87edb32016-08-05 12:41:52 -0400367#define tick_dep_mask_name(sdep) { TICK_DEP_MASK_##sdep, #sdep },
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100368#define tick_dep_name_end(sdep) { TICK_DEP_MASK_##sdep, #sdep }
369
370#define show_tick_dep_name(val) \
371 __print_symbolic(val, TICK_DEP_NAMES)
372
Frederic Weisbeckercb41a292013-04-20 17:35:50 +0200373TRACE_EVENT(tick_stop,
374
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100375 TP_PROTO(int success, int dependency),
Frederic Weisbeckercb41a292013-04-20 17:35:50 +0200376
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100377 TP_ARGS(success, dependency),
Frederic Weisbeckercb41a292013-04-20 17:35:50 +0200378
379 TP_STRUCT__entry(
380 __field( int , success )
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100381 __field( int , dependency )
Frederic Weisbeckercb41a292013-04-20 17:35:50 +0200382 ),
383
384 TP_fast_assign(
385 __entry->success = success;
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100386 __entry->dependency = dependency;
Frederic Weisbeckercb41a292013-04-20 17:35:50 +0200387 ),
388
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100389 TP_printk("success=%d dependency=%s", __entry->success, \
390 show_tick_dep_name(__entry->dependency))
Frederic Weisbeckercb41a292013-04-20 17:35:50 +0200391);
392#endif
393
Xiao Guangrong2b022e32009-08-10 10:48:59 +0800394#endif /* _TRACE_TIMER_H */
395
396/* This part must be outside protection */
397#include <trace/define_trace.h>