blob: da975d69c45362ea61589b061383dba4b7b10c76 [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
Anna-Maria Gleixner6849cbb2019-03-21 13:09:20 +010076 TP_printk("timer=%p function=%ps 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
Anna-Maria Gleixner6849cbb2019-03-21 13:09:20 +0100108 TP_printk("timer=%p function=%ps now=%lu",
109 __entry->timer, __entry->function, __entry->now)
Xiao Guangrong2b022e32009-08-10 10:48:59 +0800110);
111
112/**
113 * timer_expire_exit - called immediately after the timer callback returns
114 * @timer: pointer to struct timer_list
115 *
116 * When used in combination with the timer_expire_entry tracepoint we can
117 * determine the runtime of the timer callback function.
118 *
119 * NOTE: Do NOT derefernce timer in TP_fast_assign. The pointer might
120 * be invalid. We solely track the pointer.
121 */
Li Zefan363d0f62010-05-24 16:23:15 +0800122DEFINE_EVENT(timer_class, timer_expire_exit,
Xiao Guangrong2b022e32009-08-10 10:48:59 +0800123
124 TP_PROTO(struct timer_list *timer),
125
Li Zefan363d0f62010-05-24 16:23:15 +0800126 TP_ARGS(timer)
Xiao Guangrong2b022e32009-08-10 10:48:59 +0800127);
128
129/**
130 * timer_cancel - called when the timer is canceled
131 * @timer: pointer to struct timer_list
132 */
Li Zefan363d0f62010-05-24 16:23:15 +0800133DEFINE_EVENT(timer_class, timer_cancel,
Xiao Guangrong2b022e32009-08-10 10:48:59 +0800134
135 TP_PROTO(struct timer_list *timer),
136
Li Zefan363d0f62010-05-24 16:23:15 +0800137 TP_ARGS(timer)
Xiao Guangrong2b022e32009-08-10 10:48:59 +0800138);
139
Anna-Maria Gleixner91633ee2017-12-21 11:41:37 +0100140#define decode_clockid(type) \
141 __print_symbolic(type, \
142 { CLOCK_REALTIME, "CLOCK_REALTIME" }, \
143 { CLOCK_MONOTONIC, "CLOCK_MONOTONIC" }, \
144 { CLOCK_BOOTTIME, "CLOCK_BOOTTIME" }, \
145 { CLOCK_TAI, "CLOCK_TAI" })
146
147#define decode_hrtimer_mode(mode) \
148 __print_symbolic(mode, \
149 { HRTIMER_MODE_ABS, "ABS" }, \
150 { HRTIMER_MODE_REL, "REL" }, \
151 { HRTIMER_MODE_ABS_PINNED, "ABS|PINNED" }, \
Anna-Maria Gleixner98ecadd2017-12-21 11:41:55 +0100152 { HRTIMER_MODE_REL_PINNED, "REL|PINNED" }, \
153 { HRTIMER_MODE_ABS_SOFT, "ABS|SOFT" }, \
154 { HRTIMER_MODE_REL_SOFT, "REL|SOFT" }, \
155 { HRTIMER_MODE_ABS_PINNED_SOFT, "ABS|PINNED|SOFT" }, \
156 { HRTIMER_MODE_REL_PINNED_SOFT, "REL|PINNED|SOFT" })
Anna-Maria Gleixner91633ee2017-12-21 11:41:37 +0100157
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800158/**
159 * hrtimer_init - called when the hrtimer is initialized
Masanari Iidacf2fbdd2013-03-16 20:53:05 +0900160 * @hrtimer: pointer to struct hrtimer
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800161 * @clockid: the hrtimers clock
162 * @mode: the hrtimers mode
163 */
164TRACE_EVENT(hrtimer_init,
165
Ingo Molnar434a83c2009-10-15 11:50:39 +0200166 TP_PROTO(struct hrtimer *hrtimer, clockid_t clockid,
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800167 enum hrtimer_mode mode),
168
Ingo Molnar434a83c2009-10-15 11:50:39 +0200169 TP_ARGS(hrtimer, clockid, mode),
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800170
171 TP_STRUCT__entry(
Ingo Molnar434a83c2009-10-15 11:50:39 +0200172 __field( void *, hrtimer )
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800173 __field( clockid_t, clockid )
174 __field( enum hrtimer_mode, mode )
175 ),
176
177 TP_fast_assign(
Ingo Molnar434a83c2009-10-15 11:50:39 +0200178 __entry->hrtimer = hrtimer;
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800179 __entry->clockid = clockid;
180 __entry->mode = mode;
181 ),
182
Ingo Molnar434a83c2009-10-15 11:50:39 +0200183 TP_printk("hrtimer=%p clockid=%s mode=%s", __entry->hrtimer,
Anna-Maria Gleixner91633ee2017-12-21 11:41:37 +0100184 decode_clockid(__entry->clockid),
185 decode_hrtimer_mode(__entry->mode))
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800186);
187
188/**
189 * hrtimer_start - called when the hrtimer is started
Masanari Iidacf2fbdd2013-03-16 20:53:05 +0900190 * @hrtimer: pointer to struct hrtimer
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800191 */
192TRACE_EVENT(hrtimer_start,
193
Anna-Maria Gleixner63e2ed32017-12-21 11:41:38 +0100194 TP_PROTO(struct hrtimer *hrtimer, enum hrtimer_mode mode),
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800195
Anna-Maria Gleixner63e2ed32017-12-21 11:41:38 +0100196 TP_ARGS(hrtimer, mode),
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800197
198 TP_STRUCT__entry(
Ingo Molnar434a83c2009-10-15 11:50:39 +0200199 __field( void *, hrtimer )
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800200 __field( void *, function )
201 __field( s64, expires )
202 __field( s64, softexpires )
Anna-Maria Gleixner63e2ed32017-12-21 11:41:38 +0100203 __field( enum hrtimer_mode, mode )
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800204 ),
205
206 TP_fast_assign(
Ingo Molnar434a83c2009-10-15 11:50:39 +0200207 __entry->hrtimer = hrtimer;
208 __entry->function = hrtimer->function;
Thomas Gleixner2456e852016-12-25 11:38:40 +0100209 __entry->expires = hrtimer_get_expires(hrtimer);
210 __entry->softexpires = hrtimer_get_softexpires(hrtimer);
Anna-Maria Gleixner63e2ed32017-12-21 11:41:38 +0100211 __entry->mode = mode;
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800212 ),
213
Anna-Maria Gleixner6849cbb2019-03-21 13:09:20 +0100214 TP_printk("hrtimer=%p function=%ps expires=%llu softexpires=%llu "
Anna-Maria Gleixner63e2ed32017-12-21 11:41:38 +0100215 "mode=%s", __entry->hrtimer, __entry->function,
Thomas Gleixner2456e852016-12-25 11:38:40 +0100216 (unsigned long long) __entry->expires,
Anna-Maria Gleixner63e2ed32017-12-21 11:41:38 +0100217 (unsigned long long) __entry->softexpires,
218 decode_hrtimer_mode(__entry->mode))
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800219);
220
221/**
Masanari Iidacf2fbdd2013-03-16 20:53:05 +0900222 * hrtimer_expire_entry - called immediately before the hrtimer callback
223 * @hrtimer: pointer to struct hrtimer
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800224 * @now: pointer to variable which contains current time of the
225 * timers base.
226 *
227 * Allows to determine the timer latency.
228 */
229TRACE_EVENT(hrtimer_expire_entry,
230
Ingo Molnar434a83c2009-10-15 11:50:39 +0200231 TP_PROTO(struct hrtimer *hrtimer, ktime_t *now),
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800232
Ingo Molnar434a83c2009-10-15 11:50:39 +0200233 TP_ARGS(hrtimer, now),
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800234
235 TP_STRUCT__entry(
Ingo Molnar434a83c2009-10-15 11:50:39 +0200236 __field( void *, hrtimer )
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800237 __field( s64, now )
Arjan van de Venede1b422010-08-18 15:33:13 -0700238 __field( void *, function)
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800239 ),
240
241 TP_fast_assign(
Ingo Molnar434a83c2009-10-15 11:50:39 +0200242 __entry->hrtimer = hrtimer;
Thomas Gleixner2456e852016-12-25 11:38:40 +0100243 __entry->now = *now;
Arjan van de Venede1b422010-08-18 15:33:13 -0700244 __entry->function = hrtimer->function;
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800245 ),
246
Anna-Maria Gleixner6849cbb2019-03-21 13:09:20 +0100247 TP_printk("hrtimer=%p function=%ps now=%llu",
248 __entry->hrtimer, __entry->function,
Thomas Gleixner2456e852016-12-25 11:38:40 +0100249 (unsigned long long) __entry->now)
250);
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800251
Li Zefan363d0f62010-05-24 16:23:15 +0800252DECLARE_EVENT_CLASS(hrtimer_class,
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800253
Ingo Molnar434a83c2009-10-15 11:50:39 +0200254 TP_PROTO(struct hrtimer *hrtimer),
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800255
Ingo Molnar434a83c2009-10-15 11:50:39 +0200256 TP_ARGS(hrtimer),
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800257
258 TP_STRUCT__entry(
Ingo Molnar434a83c2009-10-15 11:50:39 +0200259 __field( void *, hrtimer )
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800260 ),
261
262 TP_fast_assign(
Ingo Molnar434a83c2009-10-15 11:50:39 +0200263 __entry->hrtimer = hrtimer;
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800264 ),
265
Ingo Molnar434a83c2009-10-15 11:50:39 +0200266 TP_printk("hrtimer=%p", __entry->hrtimer)
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800267);
268
269/**
Li Zefan363d0f62010-05-24 16:23:15 +0800270 * hrtimer_expire_exit - called immediately after the hrtimer callback returns
Masanari Iidacf2fbdd2013-03-16 20:53:05 +0900271 * @hrtimer: pointer to struct hrtimer
Li Zefan363d0f62010-05-24 16:23:15 +0800272 *
273 * When used in combination with the hrtimer_expire_entry tracepoint we can
274 * determine the runtime of the callback function.
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800275 */
Li Zefan363d0f62010-05-24 16:23:15 +0800276DEFINE_EVENT(hrtimer_class, hrtimer_expire_exit,
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800277
Ingo Molnar434a83c2009-10-15 11:50:39 +0200278 TP_PROTO(struct hrtimer *hrtimer),
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800279
Li Zefan363d0f62010-05-24 16:23:15 +0800280 TP_ARGS(hrtimer)
281);
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800282
Li Zefan363d0f62010-05-24 16:23:15 +0800283/**
284 * hrtimer_cancel - called when the hrtimer is canceled
285 * @hrtimer: pointer to struct hrtimer
286 */
287DEFINE_EVENT(hrtimer_class, hrtimer_cancel,
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800288
Li Zefan363d0f62010-05-24 16:23:15 +0800289 TP_PROTO(struct hrtimer *hrtimer),
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800290
Li Zefan363d0f62010-05-24 16:23:15 +0800291 TP_ARGS(hrtimer)
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800292);
293
Xiao Guangrong3f0a5252009-08-10 10:52:30 +0800294/**
295 * itimer_state - called when itimer is started or canceled
296 * @which: name of the interval timer
297 * @value: the itimers value, itimer is canceled if value->it_value is
298 * zero, otherwise it is started
299 * @expires: the itimers expiry time
300 */
301TRACE_EVENT(itimer_state,
302
303 TP_PROTO(int which, const struct itimerval *const value,
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +0100304 unsigned long long expires),
Xiao Guangrong3f0a5252009-08-10 10:52:30 +0800305
306 TP_ARGS(which, value, expires),
307
308 TP_STRUCT__entry(
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +0100309 __field( int, which )
310 __field( unsigned long long, expires )
311 __field( long, value_sec )
312 __field( long, value_usec )
313 __field( long, interval_sec )
314 __field( long, interval_usec )
Xiao Guangrong3f0a5252009-08-10 10:52:30 +0800315 ),
316
317 TP_fast_assign(
318 __entry->which = which;
319 __entry->expires = expires;
320 __entry->value_sec = value->it_value.tv_sec;
321 __entry->value_usec = value->it_value.tv_usec;
322 __entry->interval_sec = value->it_interval.tv_sec;
323 __entry->interval_usec = value->it_interval.tv_usec;
324 ),
325
Thomas Gleixnere9c07482009-12-10 13:23:19 +0100326 TP_printk("which=%d expires=%llu it_value=%ld.%ld it_interval=%ld.%ld",
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +0100327 __entry->which, __entry->expires,
Xiao Guangrong3f0a5252009-08-10 10:52:30 +0800328 __entry->value_sec, __entry->value_usec,
329 __entry->interval_sec, __entry->interval_usec)
330);
331
332/**
333 * itimer_expire - called when itimer expires
334 * @which: type of the interval timer
335 * @pid: pid of the process which owns the timer
336 * @now: current time, used to calculate the latency of itimer
337 */
338TRACE_EVENT(itimer_expire,
339
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +0100340 TP_PROTO(int which, struct pid *pid, unsigned long long now),
Xiao Guangrong3f0a5252009-08-10 10:52:30 +0800341
342 TP_ARGS(which, pid, now),
343
344 TP_STRUCT__entry(
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +0100345 __field( int , which )
346 __field( pid_t, pid )
347 __field( unsigned long long, now )
Xiao Guangrong3f0a5252009-08-10 10:52:30 +0800348 ),
349
350 TP_fast_assign(
351 __entry->which = which;
352 __entry->now = now;
353 __entry->pid = pid_nr(pid);
354 ),
355
Thomas Gleixnere9c07482009-12-10 13:23:19 +0100356 TP_printk("which=%d pid=%d now=%llu", __entry->which,
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +0100357 (int) __entry->pid, __entry->now)
Xiao Guangrong3f0a5252009-08-10 10:52:30 +0800358);
359
Frederic Weisbecker2c82d1be2013-04-20 17:35:50 +0200360#ifdef CONFIG_NO_HZ_COMMON
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100361
362#define TICK_DEP_NAMES \
Steven Rostedt (Red Hat)c87edb32016-08-05 12:41:52 -0400363 tick_dep_mask_name(NONE) \
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100364 tick_dep_name(POSIX_TIMER) \
365 tick_dep_name(PERF_EVENTS) \
366 tick_dep_name(SCHED) \
367 tick_dep_name_end(CLOCK_UNSTABLE)
368
369#undef tick_dep_name
Steven Rostedt (Red Hat)c87edb32016-08-05 12:41:52 -0400370#undef tick_dep_mask_name
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100371#undef tick_dep_name_end
372
Steven Rostedt (Red Hat)c87edb32016-08-05 12:41:52 -0400373/* The MASK will convert to their bits and they need to be processed too */
374#define tick_dep_name(sdep) TRACE_DEFINE_ENUM(TICK_DEP_BIT_##sdep); \
375 TRACE_DEFINE_ENUM(TICK_DEP_MASK_##sdep);
376#define tick_dep_name_end(sdep) TRACE_DEFINE_ENUM(TICK_DEP_BIT_##sdep); \
377 TRACE_DEFINE_ENUM(TICK_DEP_MASK_##sdep);
378/* NONE only has a mask defined for it */
379#define tick_dep_mask_name(sdep) TRACE_DEFINE_ENUM(TICK_DEP_MASK_##sdep);
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100380
381TICK_DEP_NAMES
382
383#undef tick_dep_name
Steven Rostedt (Red Hat)c87edb32016-08-05 12:41:52 -0400384#undef tick_dep_mask_name
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100385#undef tick_dep_name_end
386
387#define tick_dep_name(sdep) { TICK_DEP_MASK_##sdep, #sdep },
Steven Rostedt (Red Hat)c87edb32016-08-05 12:41:52 -0400388#define tick_dep_mask_name(sdep) { TICK_DEP_MASK_##sdep, #sdep },
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100389#define tick_dep_name_end(sdep) { TICK_DEP_MASK_##sdep, #sdep }
390
391#define show_tick_dep_name(val) \
392 __print_symbolic(val, TICK_DEP_NAMES)
393
Frederic Weisbeckercb41a292013-04-20 17:35:50 +0200394TRACE_EVENT(tick_stop,
395
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100396 TP_PROTO(int success, int dependency),
Frederic Weisbeckercb41a292013-04-20 17:35:50 +0200397
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100398 TP_ARGS(success, dependency),
Frederic Weisbeckercb41a292013-04-20 17:35:50 +0200399
400 TP_STRUCT__entry(
401 __field( int , success )
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100402 __field( int , dependency )
Frederic Weisbeckercb41a292013-04-20 17:35:50 +0200403 ),
404
405 TP_fast_assign(
406 __entry->success = success;
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100407 __entry->dependency = dependency;
Frederic Weisbeckercb41a292013-04-20 17:35:50 +0200408 ),
409
Frederic Weisbeckere6e6cc22015-12-11 03:27:25 +0100410 TP_printk("success=%d dependency=%s", __entry->success, \
411 show_tick_dep_name(__entry->dependency))
Frederic Weisbeckercb41a292013-04-20 17:35:50 +0200412);
413#endif
414
Xiao Guangrong2b022e32009-08-10 10:48:59 +0800415#endif /* _TRACE_TIMER_H */
416
417/* This part must be outside protection */
418#include <trace/define_trace.h>