12b022e3dSXiao Guangrong #undef TRACE_SYSTEM 22b022e3dSXiao Guangrong #define TRACE_SYSTEM timer 32b022e3dSXiao Guangrong 42b022e3dSXiao Guangrong #if !defined(_TRACE_TIMER_H) || defined(TRACE_HEADER_MULTI_READ) 52b022e3dSXiao Guangrong #define _TRACE_TIMER_H 62b022e3dSXiao Guangrong 72b022e3dSXiao Guangrong #include <linux/tracepoint.h> 8c6a2a177SXiao Guangrong #include <linux/hrtimer.h> 92b022e3dSXiao Guangrong #include <linux/timer.h> 102b022e3dSXiao Guangrong 11363d0f64SLi Zefan DECLARE_EVENT_CLASS(timer_class, 122b022e3dSXiao Guangrong 132b022e3dSXiao Guangrong TP_PROTO(struct timer_list *timer), 142b022e3dSXiao Guangrong 152b022e3dSXiao Guangrong TP_ARGS(timer), 162b022e3dSXiao Guangrong 172b022e3dSXiao Guangrong TP_STRUCT__entry( 182b022e3dSXiao Guangrong __field( void *, timer ) 192b022e3dSXiao Guangrong ), 202b022e3dSXiao Guangrong 212b022e3dSXiao Guangrong TP_fast_assign( 222b022e3dSXiao Guangrong __entry->timer = timer; 232b022e3dSXiao Guangrong ), 242b022e3dSXiao Guangrong 25434a83c3SIngo Molnar TP_printk("timer=%p", __entry->timer) 262b022e3dSXiao Guangrong ); 272b022e3dSXiao Guangrong 282b022e3dSXiao Guangrong /** 29363d0f64SLi Zefan * timer_init - called when the timer is initialized 30363d0f64SLi Zefan * @timer: pointer to struct timer_list 31363d0f64SLi Zefan */ 32363d0f64SLi Zefan DEFINE_EVENT(timer_class, timer_init, 33363d0f64SLi Zefan 34363d0f64SLi Zefan TP_PROTO(struct timer_list *timer), 35363d0f64SLi Zefan 36363d0f64SLi Zefan TP_ARGS(timer) 37363d0f64SLi Zefan ); 38363d0f64SLi Zefan 39363d0f64SLi Zefan /** 402b022e3dSXiao Guangrong * timer_start - called when the timer is started 412b022e3dSXiao Guangrong * @timer: pointer to struct timer_list 422b022e3dSXiao Guangrong * @expires: the timers expiry time 432b022e3dSXiao Guangrong */ 442b022e3dSXiao Guangrong TRACE_EVENT(timer_start, 452b022e3dSXiao Guangrong 464e413e85SBadhri Jagan Sridharan TP_PROTO(struct timer_list *timer, 474e413e85SBadhri Jagan Sridharan unsigned long expires, 48*0eeda71bSThomas Gleixner unsigned int flags), 492b022e3dSXiao Guangrong 50*0eeda71bSThomas Gleixner TP_ARGS(timer, expires, flags), 512b022e3dSXiao Guangrong 522b022e3dSXiao Guangrong TP_STRUCT__entry( 532b022e3dSXiao Guangrong __field( void *, timer ) 542b022e3dSXiao Guangrong __field( void *, function ) 552b022e3dSXiao Guangrong __field( unsigned long, expires ) 562b022e3dSXiao Guangrong __field( unsigned long, now ) 57*0eeda71bSThomas Gleixner __field( unsigned int, flags ) 582b022e3dSXiao Guangrong ), 592b022e3dSXiao Guangrong 602b022e3dSXiao Guangrong TP_fast_assign( 612b022e3dSXiao Guangrong __entry->timer = timer; 622b022e3dSXiao Guangrong __entry->function = timer->function; 632b022e3dSXiao Guangrong __entry->expires = expires; 642b022e3dSXiao Guangrong __entry->now = jiffies; 65*0eeda71bSThomas Gleixner __entry->flags = flags; 662b022e3dSXiao Guangrong ), 672b022e3dSXiao Guangrong 68*0eeda71bSThomas Gleixner TP_printk("timer=%p function=%pf expires=%lu [timeout=%ld] flags=0x%08x", 692b022e3dSXiao Guangrong __entry->timer, __entry->function, __entry->expires, 70*0eeda71bSThomas Gleixner (long)__entry->expires - __entry->now, __entry->flags) 712b022e3dSXiao Guangrong ); 722b022e3dSXiao Guangrong 732b022e3dSXiao Guangrong /** 742b022e3dSXiao Guangrong * timer_expire_entry - called immediately before the timer callback 752b022e3dSXiao Guangrong * @timer: pointer to struct timer_list 762b022e3dSXiao Guangrong * 772b022e3dSXiao Guangrong * Allows to determine the timer latency. 782b022e3dSXiao Guangrong */ 792b022e3dSXiao Guangrong TRACE_EVENT(timer_expire_entry, 802b022e3dSXiao Guangrong 812b022e3dSXiao Guangrong TP_PROTO(struct timer_list *timer), 822b022e3dSXiao Guangrong 832b022e3dSXiao Guangrong TP_ARGS(timer), 842b022e3dSXiao Guangrong 852b022e3dSXiao Guangrong TP_STRUCT__entry( 862b022e3dSXiao Guangrong __field( void *, timer ) 872b022e3dSXiao Guangrong __field( unsigned long, now ) 88ede1b429SArjan van de Ven __field( void *, function) 892b022e3dSXiao Guangrong ), 902b022e3dSXiao Guangrong 912b022e3dSXiao Guangrong TP_fast_assign( 922b022e3dSXiao Guangrong __entry->timer = timer; 932b022e3dSXiao Guangrong __entry->now = jiffies; 94ede1b429SArjan van de Ven __entry->function = timer->function; 952b022e3dSXiao Guangrong ), 962b022e3dSXiao Guangrong 97ede1b429SArjan van de Ven TP_printk("timer=%p function=%pf now=%lu", __entry->timer, __entry->function,__entry->now) 982b022e3dSXiao Guangrong ); 992b022e3dSXiao Guangrong 1002b022e3dSXiao Guangrong /** 1012b022e3dSXiao Guangrong * timer_expire_exit - called immediately after the timer callback returns 1022b022e3dSXiao Guangrong * @timer: pointer to struct timer_list 1032b022e3dSXiao Guangrong * 1042b022e3dSXiao Guangrong * When used in combination with the timer_expire_entry tracepoint we can 1052b022e3dSXiao Guangrong * determine the runtime of the timer callback function. 1062b022e3dSXiao Guangrong * 1072b022e3dSXiao Guangrong * NOTE: Do NOT derefernce timer in TP_fast_assign. The pointer might 1082b022e3dSXiao Guangrong * be invalid. We solely track the pointer. 1092b022e3dSXiao Guangrong */ 110363d0f64SLi Zefan DEFINE_EVENT(timer_class, timer_expire_exit, 1112b022e3dSXiao Guangrong 1122b022e3dSXiao Guangrong TP_PROTO(struct timer_list *timer), 1132b022e3dSXiao Guangrong 114363d0f64SLi Zefan TP_ARGS(timer) 1152b022e3dSXiao Guangrong ); 1162b022e3dSXiao Guangrong 1172b022e3dSXiao Guangrong /** 1182b022e3dSXiao Guangrong * timer_cancel - called when the timer is canceled 1192b022e3dSXiao Guangrong * @timer: pointer to struct timer_list 1202b022e3dSXiao Guangrong */ 121363d0f64SLi Zefan DEFINE_EVENT(timer_class, timer_cancel, 1222b022e3dSXiao Guangrong 1232b022e3dSXiao Guangrong TP_PROTO(struct timer_list *timer), 1242b022e3dSXiao Guangrong 125363d0f64SLi Zefan TP_ARGS(timer) 1262b022e3dSXiao Guangrong ); 1272b022e3dSXiao Guangrong 128c6a2a177SXiao Guangrong /** 129c6a2a177SXiao Guangrong * hrtimer_init - called when the hrtimer is initialized 130cf2fbdd2SMasanari Iida * @hrtimer: pointer to struct hrtimer 131c6a2a177SXiao Guangrong * @clockid: the hrtimers clock 132c6a2a177SXiao Guangrong * @mode: the hrtimers mode 133c6a2a177SXiao Guangrong */ 134c6a2a177SXiao Guangrong TRACE_EVENT(hrtimer_init, 135c6a2a177SXiao Guangrong 136434a83c3SIngo Molnar TP_PROTO(struct hrtimer *hrtimer, clockid_t clockid, 137c6a2a177SXiao Guangrong enum hrtimer_mode mode), 138c6a2a177SXiao Guangrong 139434a83c3SIngo Molnar TP_ARGS(hrtimer, clockid, mode), 140c6a2a177SXiao Guangrong 141c6a2a177SXiao Guangrong TP_STRUCT__entry( 142434a83c3SIngo Molnar __field( void *, hrtimer ) 143c6a2a177SXiao Guangrong __field( clockid_t, clockid ) 144c6a2a177SXiao Guangrong __field( enum hrtimer_mode, mode ) 145c6a2a177SXiao Guangrong ), 146c6a2a177SXiao Guangrong 147c6a2a177SXiao Guangrong TP_fast_assign( 148434a83c3SIngo Molnar __entry->hrtimer = hrtimer; 149c6a2a177SXiao Guangrong __entry->clockid = clockid; 150c6a2a177SXiao Guangrong __entry->mode = mode; 151c6a2a177SXiao Guangrong ), 152c6a2a177SXiao Guangrong 153434a83c3SIngo Molnar TP_printk("hrtimer=%p clockid=%s mode=%s", __entry->hrtimer, 154c6a2a177SXiao Guangrong __entry->clockid == CLOCK_REALTIME ? 155c6a2a177SXiao Guangrong "CLOCK_REALTIME" : "CLOCK_MONOTONIC", 156c6a2a177SXiao Guangrong __entry->mode == HRTIMER_MODE_ABS ? 157c6a2a177SXiao Guangrong "HRTIMER_MODE_ABS" : "HRTIMER_MODE_REL") 158c6a2a177SXiao Guangrong ); 159c6a2a177SXiao Guangrong 160c6a2a177SXiao Guangrong /** 161c6a2a177SXiao Guangrong * hrtimer_start - called when the hrtimer is started 162cf2fbdd2SMasanari Iida * @hrtimer: pointer to struct hrtimer 163c6a2a177SXiao Guangrong */ 164c6a2a177SXiao Guangrong TRACE_EVENT(hrtimer_start, 165c6a2a177SXiao Guangrong 166434a83c3SIngo Molnar TP_PROTO(struct hrtimer *hrtimer), 167c6a2a177SXiao Guangrong 168434a83c3SIngo Molnar TP_ARGS(hrtimer), 169c6a2a177SXiao Guangrong 170c6a2a177SXiao Guangrong TP_STRUCT__entry( 171434a83c3SIngo Molnar __field( void *, hrtimer ) 172c6a2a177SXiao Guangrong __field( void *, function ) 173c6a2a177SXiao Guangrong __field( s64, expires ) 174c6a2a177SXiao Guangrong __field( s64, softexpires ) 175c6a2a177SXiao Guangrong ), 176c6a2a177SXiao Guangrong 177c6a2a177SXiao Guangrong TP_fast_assign( 178434a83c3SIngo Molnar __entry->hrtimer = hrtimer; 179434a83c3SIngo Molnar __entry->function = hrtimer->function; 180434a83c3SIngo Molnar __entry->expires = hrtimer_get_expires(hrtimer).tv64; 181434a83c3SIngo Molnar __entry->softexpires = hrtimer_get_softexpires(hrtimer).tv64; 182c6a2a177SXiao Guangrong ), 183c6a2a177SXiao Guangrong 184434a83c3SIngo Molnar TP_printk("hrtimer=%p function=%pf expires=%llu softexpires=%llu", 185434a83c3SIngo Molnar __entry->hrtimer, __entry->function, 186c6a2a177SXiao Guangrong (unsigned long long)ktime_to_ns((ktime_t) { 187c6a2a177SXiao Guangrong .tv64 = __entry->expires }), 188c6a2a177SXiao Guangrong (unsigned long long)ktime_to_ns((ktime_t) { 189c6a2a177SXiao Guangrong .tv64 = __entry->softexpires })) 190c6a2a177SXiao Guangrong ); 191c6a2a177SXiao Guangrong 192c6a2a177SXiao Guangrong /** 193cf2fbdd2SMasanari Iida * hrtimer_expire_entry - called immediately before the hrtimer callback 194cf2fbdd2SMasanari Iida * @hrtimer: pointer to struct hrtimer 195c6a2a177SXiao Guangrong * @now: pointer to variable which contains current time of the 196c6a2a177SXiao Guangrong * timers base. 197c6a2a177SXiao Guangrong * 198c6a2a177SXiao Guangrong * Allows to determine the timer latency. 199c6a2a177SXiao Guangrong */ 200c6a2a177SXiao Guangrong TRACE_EVENT(hrtimer_expire_entry, 201c6a2a177SXiao Guangrong 202434a83c3SIngo Molnar TP_PROTO(struct hrtimer *hrtimer, ktime_t *now), 203c6a2a177SXiao Guangrong 204434a83c3SIngo Molnar TP_ARGS(hrtimer, now), 205c6a2a177SXiao Guangrong 206c6a2a177SXiao Guangrong TP_STRUCT__entry( 207434a83c3SIngo Molnar __field( void *, hrtimer ) 208c6a2a177SXiao Guangrong __field( s64, now ) 209ede1b429SArjan van de Ven __field( void *, function) 210c6a2a177SXiao Guangrong ), 211c6a2a177SXiao Guangrong 212c6a2a177SXiao Guangrong TP_fast_assign( 213434a83c3SIngo Molnar __entry->hrtimer = hrtimer; 214c6a2a177SXiao Guangrong __entry->now = now->tv64; 215ede1b429SArjan van de Ven __entry->function = hrtimer->function; 216c6a2a177SXiao Guangrong ), 217c6a2a177SXiao Guangrong 218ede1b429SArjan van de Ven TP_printk("hrtimer=%p function=%pf now=%llu", __entry->hrtimer, __entry->function, 219434a83c3SIngo Molnar (unsigned long long)ktime_to_ns((ktime_t) { .tv64 = __entry->now })) 220c6a2a177SXiao Guangrong ); 221c6a2a177SXiao Guangrong 222363d0f64SLi Zefan DECLARE_EVENT_CLASS(hrtimer_class, 223c6a2a177SXiao Guangrong 224434a83c3SIngo Molnar TP_PROTO(struct hrtimer *hrtimer), 225c6a2a177SXiao Guangrong 226434a83c3SIngo Molnar TP_ARGS(hrtimer), 227c6a2a177SXiao Guangrong 228c6a2a177SXiao Guangrong TP_STRUCT__entry( 229434a83c3SIngo Molnar __field( void *, hrtimer ) 230c6a2a177SXiao Guangrong ), 231c6a2a177SXiao Guangrong 232c6a2a177SXiao Guangrong TP_fast_assign( 233434a83c3SIngo Molnar __entry->hrtimer = hrtimer; 234c6a2a177SXiao Guangrong ), 235c6a2a177SXiao Guangrong 236434a83c3SIngo Molnar TP_printk("hrtimer=%p", __entry->hrtimer) 237c6a2a177SXiao Guangrong ); 238c6a2a177SXiao Guangrong 239c6a2a177SXiao Guangrong /** 240363d0f64SLi Zefan * hrtimer_expire_exit - called immediately after the hrtimer callback returns 241cf2fbdd2SMasanari Iida * @hrtimer: pointer to struct hrtimer 242363d0f64SLi Zefan * 243363d0f64SLi Zefan * When used in combination with the hrtimer_expire_entry tracepoint we can 244363d0f64SLi Zefan * determine the runtime of the callback function. 245c6a2a177SXiao Guangrong */ 246363d0f64SLi Zefan DEFINE_EVENT(hrtimer_class, hrtimer_expire_exit, 247c6a2a177SXiao Guangrong 248434a83c3SIngo Molnar TP_PROTO(struct hrtimer *hrtimer), 249c6a2a177SXiao Guangrong 250363d0f64SLi Zefan TP_ARGS(hrtimer) 251363d0f64SLi Zefan ); 252c6a2a177SXiao Guangrong 253363d0f64SLi Zefan /** 254363d0f64SLi Zefan * hrtimer_cancel - called when the hrtimer is canceled 255363d0f64SLi Zefan * @hrtimer: pointer to struct hrtimer 256363d0f64SLi Zefan */ 257363d0f64SLi Zefan DEFINE_EVENT(hrtimer_class, hrtimer_cancel, 258c6a2a177SXiao Guangrong 259363d0f64SLi Zefan TP_PROTO(struct hrtimer *hrtimer), 260c6a2a177SXiao Guangrong 261363d0f64SLi Zefan TP_ARGS(hrtimer) 262c6a2a177SXiao Guangrong ); 263c6a2a177SXiao Guangrong 2643f0a525eSXiao Guangrong /** 2653f0a525eSXiao Guangrong * itimer_state - called when itimer is started or canceled 2663f0a525eSXiao Guangrong * @which: name of the interval timer 2673f0a525eSXiao Guangrong * @value: the itimers value, itimer is canceled if value->it_value is 2683f0a525eSXiao Guangrong * zero, otherwise it is started 2693f0a525eSXiao Guangrong * @expires: the itimers expiry time 2703f0a525eSXiao Guangrong */ 2713f0a525eSXiao Guangrong TRACE_EVENT(itimer_state, 2723f0a525eSXiao Guangrong 2733f0a525eSXiao Guangrong TP_PROTO(int which, const struct itimerval *const value, 2743f0a525eSXiao Guangrong cputime_t expires), 2753f0a525eSXiao Guangrong 2763f0a525eSXiao Guangrong TP_ARGS(which, value, expires), 2773f0a525eSXiao Guangrong 2783f0a525eSXiao Guangrong TP_STRUCT__entry( 2793f0a525eSXiao Guangrong __field( int, which ) 2803f0a525eSXiao Guangrong __field( cputime_t, expires ) 2813f0a525eSXiao Guangrong __field( long, value_sec ) 2823f0a525eSXiao Guangrong __field( long, value_usec ) 2833f0a525eSXiao Guangrong __field( long, interval_sec ) 2843f0a525eSXiao Guangrong __field( long, interval_usec ) 2853f0a525eSXiao Guangrong ), 2863f0a525eSXiao Guangrong 2873f0a525eSXiao Guangrong TP_fast_assign( 2883f0a525eSXiao Guangrong __entry->which = which; 2893f0a525eSXiao Guangrong __entry->expires = expires; 2903f0a525eSXiao Guangrong __entry->value_sec = value->it_value.tv_sec; 2913f0a525eSXiao Guangrong __entry->value_usec = value->it_value.tv_usec; 2923f0a525eSXiao Guangrong __entry->interval_sec = value->it_interval.tv_sec; 2933f0a525eSXiao Guangrong __entry->interval_usec = value->it_interval.tv_usec; 2943f0a525eSXiao Guangrong ), 2953f0a525eSXiao Guangrong 296e9c0748bSThomas Gleixner TP_printk("which=%d expires=%llu it_value=%ld.%ld it_interval=%ld.%ld", 297e9c0748bSThomas Gleixner __entry->which, (unsigned long long)__entry->expires, 2983f0a525eSXiao Guangrong __entry->value_sec, __entry->value_usec, 2993f0a525eSXiao Guangrong __entry->interval_sec, __entry->interval_usec) 3003f0a525eSXiao Guangrong ); 3013f0a525eSXiao Guangrong 3023f0a525eSXiao Guangrong /** 3033f0a525eSXiao Guangrong * itimer_expire - called when itimer expires 3043f0a525eSXiao Guangrong * @which: type of the interval timer 3053f0a525eSXiao Guangrong * @pid: pid of the process which owns the timer 3063f0a525eSXiao Guangrong * @now: current time, used to calculate the latency of itimer 3073f0a525eSXiao Guangrong */ 3083f0a525eSXiao Guangrong TRACE_EVENT(itimer_expire, 3093f0a525eSXiao Guangrong 3103f0a525eSXiao Guangrong TP_PROTO(int which, struct pid *pid, cputime_t now), 3113f0a525eSXiao Guangrong 3123f0a525eSXiao Guangrong TP_ARGS(which, pid, now), 3133f0a525eSXiao Guangrong 3143f0a525eSXiao Guangrong TP_STRUCT__entry( 3153f0a525eSXiao Guangrong __field( int , which ) 3163f0a525eSXiao Guangrong __field( pid_t, pid ) 3173f0a525eSXiao Guangrong __field( cputime_t, now ) 3183f0a525eSXiao Guangrong ), 3193f0a525eSXiao Guangrong 3203f0a525eSXiao Guangrong TP_fast_assign( 3213f0a525eSXiao Guangrong __entry->which = which; 3223f0a525eSXiao Guangrong __entry->now = now; 3233f0a525eSXiao Guangrong __entry->pid = pid_nr(pid); 3243f0a525eSXiao Guangrong ), 3253f0a525eSXiao Guangrong 326e9c0748bSThomas Gleixner TP_printk("which=%d pid=%d now=%llu", __entry->which, 327e9c0748bSThomas Gleixner (int) __entry->pid, (unsigned long long)__entry->now) 3283f0a525eSXiao Guangrong ); 3293f0a525eSXiao Guangrong 3302c82d1beSFrederic Weisbecker #ifdef CONFIG_NO_HZ_COMMON 331cb41a290SFrederic Weisbecker TRACE_EVENT(tick_stop, 332cb41a290SFrederic Weisbecker 333cb41a290SFrederic Weisbecker TP_PROTO(int success, char *error_msg), 334cb41a290SFrederic Weisbecker 335cb41a290SFrederic Weisbecker TP_ARGS(success, error_msg), 336cb41a290SFrederic Weisbecker 337cb41a290SFrederic Weisbecker TP_STRUCT__entry( 338cb41a290SFrederic Weisbecker __field( int , success ) 339cb41a290SFrederic Weisbecker __string( msg, error_msg ) 340cb41a290SFrederic Weisbecker ), 341cb41a290SFrederic Weisbecker 342cb41a290SFrederic Weisbecker TP_fast_assign( 343cb41a290SFrederic Weisbecker __entry->success = success; 344cb41a290SFrederic Weisbecker __assign_str(msg, error_msg); 345cb41a290SFrederic Weisbecker ), 346cb41a290SFrederic Weisbecker 347cb41a290SFrederic Weisbecker TP_printk("success=%s msg=%s", __entry->success ? "yes" : "no", __get_str(msg)) 348cb41a290SFrederic Weisbecker ); 349cb41a290SFrederic Weisbecker #endif 350cb41a290SFrederic Weisbecker 3512b022e3dSXiao Guangrong #endif /* _TRACE_TIMER_H */ 3522b022e3dSXiao Guangrong 3532b022e3dSXiao Guangrong /* This part must be outside protection */ 3542b022e3dSXiao Guangrong #include <trace/define_trace.h> 355