Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 2 | #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 Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 9 | #include <linux/hrtimer.h> |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 10 | #include <linux/timer.h> |
| 11 | |
Li Zefan | 363d0f6 | 2010-05-24 16:23:15 +0800 | [diff] [blame] | 12 | DECLARE_EVENT_CLASS(timer_class, |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 13 | |
| 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 Molnar | 434a83c | 2009-10-15 11:50:39 +0200 | [diff] [blame] | 26 | TP_printk("timer=%p", __entry->timer) |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 27 | ); |
| 28 | |
| 29 | /** |
Li Zefan | 363d0f6 | 2010-05-24 16:23:15 +0800 | [diff] [blame] | 30 | * timer_init - called when the timer is initialized |
| 31 | * @timer: pointer to struct timer_list |
| 32 | */ |
| 33 | DEFINE_EVENT(timer_class, timer_init, |
| 34 | |
| 35 | TP_PROTO(struct timer_list *timer), |
| 36 | |
| 37 | TP_ARGS(timer) |
| 38 | ); |
| 39 | |
Thomas Gleixner | 8a58a34 | 2017-02-10 16:41:15 +0100 | [diff] [blame] | 40 | #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 Zefan | 363d0f6 | 2010-05-24 16:23:15 +0800 | [diff] [blame] | 47 | /** |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 48 | * timer_start - called when the timer is started |
| 49 | * @timer: pointer to struct timer_list |
| 50 | * @expires: the timers expiry time |
| 51 | */ |
| 52 | TRACE_EVENT(timer_start, |
| 53 | |
Badhri Jagan Sridharan | 4e413e8 | 2015-05-07 16:20:34 -0700 | [diff] [blame] | 54 | TP_PROTO(struct timer_list *timer, |
| 55 | unsigned long expires, |
Thomas Gleixner | 0eeda71 | 2015-05-26 22:50:29 +0000 | [diff] [blame] | 56 | unsigned int flags), |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 57 | |
Thomas Gleixner | 0eeda71 | 2015-05-26 22:50:29 +0000 | [diff] [blame] | 58 | TP_ARGS(timer, expires, flags), |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 59 | |
| 60 | TP_STRUCT__entry( |
| 61 | __field( void *, timer ) |
| 62 | __field( void *, function ) |
| 63 | __field( unsigned long, expires ) |
| 64 | __field( unsigned long, now ) |
Thomas Gleixner | 0eeda71 | 2015-05-26 22:50:29 +0000 | [diff] [blame] | 65 | __field( unsigned int, flags ) |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 66 | ), |
| 67 | |
| 68 | TP_fast_assign( |
| 69 | __entry->timer = timer; |
| 70 | __entry->function = timer->function; |
| 71 | __entry->expires = expires; |
| 72 | __entry->now = jiffies; |
Thomas Gleixner | 0eeda71 | 2015-05-26 22:50:29 +0000 | [diff] [blame] | 73 | __entry->flags = flags; |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 74 | ), |
| 75 | |
Thomas Gleixner | 8a58a34 | 2017-02-10 16:41:15 +0100 | [diff] [blame] | 76 | TP_printk("timer=%p function=%pf expires=%lu [timeout=%ld] cpu=%u idx=%u flags=%s", |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 77 | __entry->timer, __entry->function, __entry->expires, |
Thomas Gleixner | 8a58a34 | 2017-02-10 16:41:15 +0100 | [diff] [blame] | 78 | (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 Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 82 | ); |
| 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 | */ |
| 90 | TRACE_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 Ven | ede1b42 | 2010-08-18 15:33:13 -0700 | [diff] [blame] | 99 | __field( void *, function) |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 100 | ), |
| 101 | |
| 102 | TP_fast_assign( |
| 103 | __entry->timer = timer; |
| 104 | __entry->now = jiffies; |
Arjan van de Ven | ede1b42 | 2010-08-18 15:33:13 -0700 | [diff] [blame] | 105 | __entry->function = timer->function; |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 106 | ), |
| 107 | |
Arjan van de Ven | ede1b42 | 2010-08-18 15:33:13 -0700 | [diff] [blame] | 108 | TP_printk("timer=%p function=%pf now=%lu", __entry->timer, __entry->function,__entry->now) |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 109 | ); |
| 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 Zefan | 363d0f6 | 2010-05-24 16:23:15 +0800 | [diff] [blame] | 121 | DEFINE_EVENT(timer_class, timer_expire_exit, |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 122 | |
| 123 | TP_PROTO(struct timer_list *timer), |
| 124 | |
Li Zefan | 363d0f6 | 2010-05-24 16:23:15 +0800 | [diff] [blame] | 125 | TP_ARGS(timer) |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 126 | ); |
| 127 | |
| 128 | /** |
| 129 | * timer_cancel - called when the timer is canceled |
| 130 | * @timer: pointer to struct timer_list |
| 131 | */ |
Li Zefan | 363d0f6 | 2010-05-24 16:23:15 +0800 | [diff] [blame] | 132 | DEFINE_EVENT(timer_class, timer_cancel, |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 133 | |
| 134 | TP_PROTO(struct timer_list *timer), |
| 135 | |
Li Zefan | 363d0f6 | 2010-05-24 16:23:15 +0800 | [diff] [blame] | 136 | TP_ARGS(timer) |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 137 | ); |
| 138 | |
Anna-Maria Gleixner | 91633ee | 2017-12-21 11:41:37 +0100 | [diff] [blame] | 139 | #define decode_clockid(type) \ |
| 140 | __print_symbolic(type, \ |
| 141 | { CLOCK_REALTIME, "CLOCK_REALTIME" }, \ |
| 142 | { CLOCK_MONOTONIC, "CLOCK_MONOTONIC" }, \ |
| 143 | { CLOCK_BOOTTIME, "CLOCK_BOOTTIME" }, \ |
| 144 | { CLOCK_TAI, "CLOCK_TAI" }) |
| 145 | |
| 146 | #define decode_hrtimer_mode(mode) \ |
| 147 | __print_symbolic(mode, \ |
| 148 | { HRTIMER_MODE_ABS, "ABS" }, \ |
| 149 | { HRTIMER_MODE_REL, "REL" }, \ |
| 150 | { HRTIMER_MODE_ABS_PINNED, "ABS|PINNED" }, \ |
Anna-Maria Gleixner | 98ecadd | 2017-12-21 11:41:55 +0100 | [diff] [blame] | 151 | { HRTIMER_MODE_REL_PINNED, "REL|PINNED" }, \ |
| 152 | { HRTIMER_MODE_ABS_SOFT, "ABS|SOFT" }, \ |
| 153 | { HRTIMER_MODE_REL_SOFT, "REL|SOFT" }, \ |
| 154 | { HRTIMER_MODE_ABS_PINNED_SOFT, "ABS|PINNED|SOFT" }, \ |
| 155 | { HRTIMER_MODE_REL_PINNED_SOFT, "REL|PINNED|SOFT" }) |
Anna-Maria Gleixner | 91633ee | 2017-12-21 11:41:37 +0100 | [diff] [blame] | 156 | |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 157 | /** |
| 158 | * hrtimer_init - called when the hrtimer is initialized |
Masanari Iida | cf2fbdd | 2013-03-16 20:53:05 +0900 | [diff] [blame] | 159 | * @hrtimer: pointer to struct hrtimer |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 160 | * @clockid: the hrtimers clock |
| 161 | * @mode: the hrtimers mode |
| 162 | */ |
| 163 | TRACE_EVENT(hrtimer_init, |
| 164 | |
Ingo Molnar | 434a83c | 2009-10-15 11:50:39 +0200 | [diff] [blame] | 165 | TP_PROTO(struct hrtimer *hrtimer, clockid_t clockid, |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 166 | enum hrtimer_mode mode), |
| 167 | |
Ingo Molnar | 434a83c | 2009-10-15 11:50:39 +0200 | [diff] [blame] | 168 | TP_ARGS(hrtimer, clockid, mode), |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 169 | |
| 170 | TP_STRUCT__entry( |
Ingo Molnar | 434a83c | 2009-10-15 11:50:39 +0200 | [diff] [blame] | 171 | __field( void *, hrtimer ) |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 172 | __field( clockid_t, clockid ) |
| 173 | __field( enum hrtimer_mode, mode ) |
| 174 | ), |
| 175 | |
| 176 | TP_fast_assign( |
Ingo Molnar | 434a83c | 2009-10-15 11:50:39 +0200 | [diff] [blame] | 177 | __entry->hrtimer = hrtimer; |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 178 | __entry->clockid = clockid; |
| 179 | __entry->mode = mode; |
| 180 | ), |
| 181 | |
Ingo Molnar | 434a83c | 2009-10-15 11:50:39 +0200 | [diff] [blame] | 182 | TP_printk("hrtimer=%p clockid=%s mode=%s", __entry->hrtimer, |
Anna-Maria Gleixner | 91633ee | 2017-12-21 11:41:37 +0100 | [diff] [blame] | 183 | decode_clockid(__entry->clockid), |
| 184 | decode_hrtimer_mode(__entry->mode)) |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 185 | ); |
| 186 | |
| 187 | /** |
| 188 | * hrtimer_start - called when the hrtimer is started |
Masanari Iida | cf2fbdd | 2013-03-16 20:53:05 +0900 | [diff] [blame] | 189 | * @hrtimer: pointer to struct hrtimer |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 190 | */ |
| 191 | TRACE_EVENT(hrtimer_start, |
| 192 | |
Anna-Maria Gleixner | 63e2ed3 | 2017-12-21 11:41:38 +0100 | [diff] [blame] | 193 | TP_PROTO(struct hrtimer *hrtimer, enum hrtimer_mode mode), |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 194 | |
Anna-Maria Gleixner | 63e2ed3 | 2017-12-21 11:41:38 +0100 | [diff] [blame] | 195 | TP_ARGS(hrtimer, mode), |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 196 | |
| 197 | TP_STRUCT__entry( |
Ingo Molnar | 434a83c | 2009-10-15 11:50:39 +0200 | [diff] [blame] | 198 | __field( void *, hrtimer ) |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 199 | __field( void *, function ) |
| 200 | __field( s64, expires ) |
| 201 | __field( s64, softexpires ) |
Anna-Maria Gleixner | 63e2ed3 | 2017-12-21 11:41:38 +0100 | [diff] [blame] | 202 | __field( enum hrtimer_mode, mode ) |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 203 | ), |
| 204 | |
| 205 | TP_fast_assign( |
Ingo Molnar | 434a83c | 2009-10-15 11:50:39 +0200 | [diff] [blame] | 206 | __entry->hrtimer = hrtimer; |
| 207 | __entry->function = hrtimer->function; |
Thomas Gleixner | 2456e85 | 2016-12-25 11:38:40 +0100 | [diff] [blame] | 208 | __entry->expires = hrtimer_get_expires(hrtimer); |
| 209 | __entry->softexpires = hrtimer_get_softexpires(hrtimer); |
Anna-Maria Gleixner | 63e2ed3 | 2017-12-21 11:41:38 +0100 | [diff] [blame] | 210 | __entry->mode = mode; |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 211 | ), |
| 212 | |
Anna-Maria Gleixner | 63e2ed3 | 2017-12-21 11:41:38 +0100 | [diff] [blame] | 213 | TP_printk("hrtimer=%p function=%pf expires=%llu softexpires=%llu " |
| 214 | "mode=%s", __entry->hrtimer, __entry->function, |
Thomas Gleixner | 2456e85 | 2016-12-25 11:38:40 +0100 | [diff] [blame] | 215 | (unsigned long long) __entry->expires, |
Anna-Maria Gleixner | 63e2ed3 | 2017-12-21 11:41:38 +0100 | [diff] [blame] | 216 | (unsigned long long) __entry->softexpires, |
| 217 | decode_hrtimer_mode(__entry->mode)) |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 218 | ); |
| 219 | |
| 220 | /** |
Masanari Iida | cf2fbdd | 2013-03-16 20:53:05 +0900 | [diff] [blame] | 221 | * hrtimer_expire_entry - called immediately before the hrtimer callback |
| 222 | * @hrtimer: pointer to struct hrtimer |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 223 | * @now: pointer to variable which contains current time of the |
| 224 | * timers base. |
| 225 | * |
| 226 | * Allows to determine the timer latency. |
| 227 | */ |
| 228 | TRACE_EVENT(hrtimer_expire_entry, |
| 229 | |
Ingo Molnar | 434a83c | 2009-10-15 11:50:39 +0200 | [diff] [blame] | 230 | TP_PROTO(struct hrtimer *hrtimer, ktime_t *now), |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 231 | |
Ingo Molnar | 434a83c | 2009-10-15 11:50:39 +0200 | [diff] [blame] | 232 | TP_ARGS(hrtimer, now), |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 233 | |
| 234 | TP_STRUCT__entry( |
Ingo Molnar | 434a83c | 2009-10-15 11:50:39 +0200 | [diff] [blame] | 235 | __field( void *, hrtimer ) |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 236 | __field( s64, now ) |
Arjan van de Ven | ede1b42 | 2010-08-18 15:33:13 -0700 | [diff] [blame] | 237 | __field( void *, function) |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 238 | ), |
| 239 | |
| 240 | TP_fast_assign( |
Ingo Molnar | 434a83c | 2009-10-15 11:50:39 +0200 | [diff] [blame] | 241 | __entry->hrtimer = hrtimer; |
Thomas Gleixner | 2456e85 | 2016-12-25 11:38:40 +0100 | [diff] [blame] | 242 | __entry->now = *now; |
Arjan van de Ven | ede1b42 | 2010-08-18 15:33:13 -0700 | [diff] [blame] | 243 | __entry->function = hrtimer->function; |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 244 | ), |
| 245 | |
Arjan van de Ven | ede1b42 | 2010-08-18 15:33:13 -0700 | [diff] [blame] | 246 | TP_printk("hrtimer=%p function=%pf now=%llu", __entry->hrtimer, __entry->function, |
Thomas Gleixner | 2456e85 | 2016-12-25 11:38:40 +0100 | [diff] [blame] | 247 | (unsigned long long) __entry->now) |
| 248 | ); |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 249 | |
Li Zefan | 363d0f6 | 2010-05-24 16:23:15 +0800 | [diff] [blame] | 250 | DECLARE_EVENT_CLASS(hrtimer_class, |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 251 | |
Ingo Molnar | 434a83c | 2009-10-15 11:50:39 +0200 | [diff] [blame] | 252 | TP_PROTO(struct hrtimer *hrtimer), |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 253 | |
Ingo Molnar | 434a83c | 2009-10-15 11:50:39 +0200 | [diff] [blame] | 254 | TP_ARGS(hrtimer), |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 255 | |
| 256 | TP_STRUCT__entry( |
Ingo Molnar | 434a83c | 2009-10-15 11:50:39 +0200 | [diff] [blame] | 257 | __field( void *, hrtimer ) |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 258 | ), |
| 259 | |
| 260 | TP_fast_assign( |
Ingo Molnar | 434a83c | 2009-10-15 11:50:39 +0200 | [diff] [blame] | 261 | __entry->hrtimer = hrtimer; |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 262 | ), |
| 263 | |
Ingo Molnar | 434a83c | 2009-10-15 11:50:39 +0200 | [diff] [blame] | 264 | TP_printk("hrtimer=%p", __entry->hrtimer) |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 265 | ); |
| 266 | |
| 267 | /** |
Li Zefan | 363d0f6 | 2010-05-24 16:23:15 +0800 | [diff] [blame] | 268 | * hrtimer_expire_exit - called immediately after the hrtimer callback returns |
Masanari Iida | cf2fbdd | 2013-03-16 20:53:05 +0900 | [diff] [blame] | 269 | * @hrtimer: pointer to struct hrtimer |
Li Zefan | 363d0f6 | 2010-05-24 16:23:15 +0800 | [diff] [blame] | 270 | * |
| 271 | * When used in combination with the hrtimer_expire_entry tracepoint we can |
| 272 | * determine the runtime of the callback function. |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 273 | */ |
Li Zefan | 363d0f6 | 2010-05-24 16:23:15 +0800 | [diff] [blame] | 274 | DEFINE_EVENT(hrtimer_class, hrtimer_expire_exit, |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 275 | |
Ingo Molnar | 434a83c | 2009-10-15 11:50:39 +0200 | [diff] [blame] | 276 | TP_PROTO(struct hrtimer *hrtimer), |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 277 | |
Li Zefan | 363d0f6 | 2010-05-24 16:23:15 +0800 | [diff] [blame] | 278 | TP_ARGS(hrtimer) |
| 279 | ); |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 280 | |
Li Zefan | 363d0f6 | 2010-05-24 16:23:15 +0800 | [diff] [blame] | 281 | /** |
| 282 | * hrtimer_cancel - called when the hrtimer is canceled |
| 283 | * @hrtimer: pointer to struct hrtimer |
| 284 | */ |
| 285 | DEFINE_EVENT(hrtimer_class, hrtimer_cancel, |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 286 | |
Li Zefan | 363d0f6 | 2010-05-24 16:23:15 +0800 | [diff] [blame] | 287 | TP_PROTO(struct hrtimer *hrtimer), |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 288 | |
Li Zefan | 363d0f6 | 2010-05-24 16:23:15 +0800 | [diff] [blame] | 289 | TP_ARGS(hrtimer) |
Xiao Guangrong | c6a2a17 | 2009-08-10 10:51:23 +0800 | [diff] [blame] | 290 | ); |
| 291 | |
Xiao Guangrong | 3f0a525 | 2009-08-10 10:52:30 +0800 | [diff] [blame] | 292 | /** |
| 293 | * itimer_state - called when itimer is started or canceled |
| 294 | * @which: name of the interval timer |
| 295 | * @value: the itimers value, itimer is canceled if value->it_value is |
| 296 | * zero, otherwise it is started |
| 297 | * @expires: the itimers expiry time |
| 298 | */ |
| 299 | TRACE_EVENT(itimer_state, |
| 300 | |
| 301 | TP_PROTO(int which, const struct itimerval *const value, |
Frederic Weisbecker | 858cf3a | 2017-01-31 04:09:35 +0100 | [diff] [blame] | 302 | unsigned long long expires), |
Xiao Guangrong | 3f0a525 | 2009-08-10 10:52:30 +0800 | [diff] [blame] | 303 | |
| 304 | TP_ARGS(which, value, expires), |
| 305 | |
| 306 | TP_STRUCT__entry( |
Frederic Weisbecker | 858cf3a | 2017-01-31 04:09:35 +0100 | [diff] [blame] | 307 | __field( int, which ) |
| 308 | __field( unsigned long long, expires ) |
| 309 | __field( long, value_sec ) |
| 310 | __field( long, value_usec ) |
| 311 | __field( long, interval_sec ) |
| 312 | __field( long, interval_usec ) |
Xiao Guangrong | 3f0a525 | 2009-08-10 10:52:30 +0800 | [diff] [blame] | 313 | ), |
| 314 | |
| 315 | TP_fast_assign( |
| 316 | __entry->which = which; |
| 317 | __entry->expires = expires; |
| 318 | __entry->value_sec = value->it_value.tv_sec; |
| 319 | __entry->value_usec = value->it_value.tv_usec; |
| 320 | __entry->interval_sec = value->it_interval.tv_sec; |
| 321 | __entry->interval_usec = value->it_interval.tv_usec; |
| 322 | ), |
| 323 | |
Thomas Gleixner | e9c0748 | 2009-12-10 13:23:19 +0100 | [diff] [blame] | 324 | TP_printk("which=%d expires=%llu it_value=%ld.%ld it_interval=%ld.%ld", |
Frederic Weisbecker | 858cf3a | 2017-01-31 04:09:35 +0100 | [diff] [blame] | 325 | __entry->which, __entry->expires, |
Xiao Guangrong | 3f0a525 | 2009-08-10 10:52:30 +0800 | [diff] [blame] | 326 | __entry->value_sec, __entry->value_usec, |
| 327 | __entry->interval_sec, __entry->interval_usec) |
| 328 | ); |
| 329 | |
| 330 | /** |
| 331 | * itimer_expire - called when itimer expires |
| 332 | * @which: type of the interval timer |
| 333 | * @pid: pid of the process which owns the timer |
| 334 | * @now: current time, used to calculate the latency of itimer |
| 335 | */ |
| 336 | TRACE_EVENT(itimer_expire, |
| 337 | |
Frederic Weisbecker | 858cf3a | 2017-01-31 04:09:35 +0100 | [diff] [blame] | 338 | TP_PROTO(int which, struct pid *pid, unsigned long long now), |
Xiao Guangrong | 3f0a525 | 2009-08-10 10:52:30 +0800 | [diff] [blame] | 339 | |
| 340 | TP_ARGS(which, pid, now), |
| 341 | |
| 342 | TP_STRUCT__entry( |
Frederic Weisbecker | 858cf3a | 2017-01-31 04:09:35 +0100 | [diff] [blame] | 343 | __field( int , which ) |
| 344 | __field( pid_t, pid ) |
| 345 | __field( unsigned long long, now ) |
Xiao Guangrong | 3f0a525 | 2009-08-10 10:52:30 +0800 | [diff] [blame] | 346 | ), |
| 347 | |
| 348 | TP_fast_assign( |
| 349 | __entry->which = which; |
| 350 | __entry->now = now; |
| 351 | __entry->pid = pid_nr(pid); |
| 352 | ), |
| 353 | |
Thomas Gleixner | e9c0748 | 2009-12-10 13:23:19 +0100 | [diff] [blame] | 354 | TP_printk("which=%d pid=%d now=%llu", __entry->which, |
Frederic Weisbecker | 858cf3a | 2017-01-31 04:09:35 +0100 | [diff] [blame] | 355 | (int) __entry->pid, __entry->now) |
Xiao Guangrong | 3f0a525 | 2009-08-10 10:52:30 +0800 | [diff] [blame] | 356 | ); |
| 357 | |
Frederic Weisbecker | 2c82d1be | 2013-04-20 17:35:50 +0200 | [diff] [blame] | 358 | #ifdef CONFIG_NO_HZ_COMMON |
Frederic Weisbecker | e6e6cc2 | 2015-12-11 03:27:25 +0100 | [diff] [blame] | 359 | |
| 360 | #define TICK_DEP_NAMES \ |
Steven Rostedt (Red Hat) | c87edb3 | 2016-08-05 12:41:52 -0400 | [diff] [blame] | 361 | tick_dep_mask_name(NONE) \ |
Frederic Weisbecker | e6e6cc2 | 2015-12-11 03:27:25 +0100 | [diff] [blame] | 362 | tick_dep_name(POSIX_TIMER) \ |
| 363 | tick_dep_name(PERF_EVENTS) \ |
| 364 | tick_dep_name(SCHED) \ |
| 365 | tick_dep_name_end(CLOCK_UNSTABLE) |
| 366 | |
| 367 | #undef tick_dep_name |
Steven Rostedt (Red Hat) | c87edb3 | 2016-08-05 12:41:52 -0400 | [diff] [blame] | 368 | #undef tick_dep_mask_name |
Frederic Weisbecker | e6e6cc2 | 2015-12-11 03:27:25 +0100 | [diff] [blame] | 369 | #undef tick_dep_name_end |
| 370 | |
Steven Rostedt (Red Hat) | c87edb3 | 2016-08-05 12:41:52 -0400 | [diff] [blame] | 371 | /* The MASK will convert to their bits and they need to be processed too */ |
| 372 | #define tick_dep_name(sdep) TRACE_DEFINE_ENUM(TICK_DEP_BIT_##sdep); \ |
| 373 | TRACE_DEFINE_ENUM(TICK_DEP_MASK_##sdep); |
| 374 | #define tick_dep_name_end(sdep) TRACE_DEFINE_ENUM(TICK_DEP_BIT_##sdep); \ |
| 375 | TRACE_DEFINE_ENUM(TICK_DEP_MASK_##sdep); |
| 376 | /* NONE only has a mask defined for it */ |
| 377 | #define tick_dep_mask_name(sdep) TRACE_DEFINE_ENUM(TICK_DEP_MASK_##sdep); |
Frederic Weisbecker | e6e6cc2 | 2015-12-11 03:27:25 +0100 | [diff] [blame] | 378 | |
| 379 | TICK_DEP_NAMES |
| 380 | |
| 381 | #undef tick_dep_name |
Steven Rostedt (Red Hat) | c87edb3 | 2016-08-05 12:41:52 -0400 | [diff] [blame] | 382 | #undef tick_dep_mask_name |
Frederic Weisbecker | e6e6cc2 | 2015-12-11 03:27:25 +0100 | [diff] [blame] | 383 | #undef tick_dep_name_end |
| 384 | |
| 385 | #define tick_dep_name(sdep) { TICK_DEP_MASK_##sdep, #sdep }, |
Steven Rostedt (Red Hat) | c87edb3 | 2016-08-05 12:41:52 -0400 | [diff] [blame] | 386 | #define tick_dep_mask_name(sdep) { TICK_DEP_MASK_##sdep, #sdep }, |
Frederic Weisbecker | e6e6cc2 | 2015-12-11 03:27:25 +0100 | [diff] [blame] | 387 | #define tick_dep_name_end(sdep) { TICK_DEP_MASK_##sdep, #sdep } |
| 388 | |
| 389 | #define show_tick_dep_name(val) \ |
| 390 | __print_symbolic(val, TICK_DEP_NAMES) |
| 391 | |
Frederic Weisbecker | cb41a29 | 2013-04-20 17:35:50 +0200 | [diff] [blame] | 392 | TRACE_EVENT(tick_stop, |
| 393 | |
Frederic Weisbecker | e6e6cc2 | 2015-12-11 03:27:25 +0100 | [diff] [blame] | 394 | TP_PROTO(int success, int dependency), |
Frederic Weisbecker | cb41a29 | 2013-04-20 17:35:50 +0200 | [diff] [blame] | 395 | |
Frederic Weisbecker | e6e6cc2 | 2015-12-11 03:27:25 +0100 | [diff] [blame] | 396 | TP_ARGS(success, dependency), |
Frederic Weisbecker | cb41a29 | 2013-04-20 17:35:50 +0200 | [diff] [blame] | 397 | |
| 398 | TP_STRUCT__entry( |
| 399 | __field( int , success ) |
Frederic Weisbecker | e6e6cc2 | 2015-12-11 03:27:25 +0100 | [diff] [blame] | 400 | __field( int , dependency ) |
Frederic Weisbecker | cb41a29 | 2013-04-20 17:35:50 +0200 | [diff] [blame] | 401 | ), |
| 402 | |
| 403 | TP_fast_assign( |
| 404 | __entry->success = success; |
Frederic Weisbecker | e6e6cc2 | 2015-12-11 03:27:25 +0100 | [diff] [blame] | 405 | __entry->dependency = dependency; |
Frederic Weisbecker | cb41a29 | 2013-04-20 17:35:50 +0200 | [diff] [blame] | 406 | ), |
| 407 | |
Frederic Weisbecker | e6e6cc2 | 2015-12-11 03:27:25 +0100 | [diff] [blame] | 408 | TP_printk("success=%d dependency=%s", __entry->success, \ |
| 409 | show_tick_dep_name(__entry->dependency)) |
Frederic Weisbecker | cb41a29 | 2013-04-20 17:35:50 +0200 | [diff] [blame] | 410 | ); |
| 411 | #endif |
| 412 | |
Xiao Guangrong | 2b022e3 | 2009-08-10 10:48:59 +0800 | [diff] [blame] | 413 | #endif /* _TRACE_TIMER_H */ |
| 414 | |
| 415 | /* This part must be outside protection */ |
| 416 | #include <trace/define_trace.h> |