aboutsummaryrefslogtreecommitdiffstats
path: root/include/trace
diff options
context:
space:
mode:
authorXiao Guangrong <xiaoguangrong@cn.fujitsu.com>2009-08-09 22:48:59 -0400
committerThomas Gleixner <tglx@linutronix.de>2009-08-29 08:10:06 -0400
commit2b022e3d4bf9885f781221c59d86283a2cdfc2ed (patch)
tree49bcc100381924b149567bc0dd8bcdc91f95ea9f /include/trace
parentf71bb0ac5e85410601b0db29d7b1635345ea61a4 (diff)
timers: Add tracepoints for timer_list timers
Add tracepoints which cover the timer life cycle. The tracepoints are integrated with the already existing debug_object debug points as far as possible. Based on patches from Mathieu: http://marc.info/?l=linux-kernel&m=123791201816247&w=2 and Anton: http://marc.info/?l=linux-kernel&m=124331396919301&w=2 [ tglx: Fixed timeout value in timer_start tracepoint, massaged comments and made the printk's more readable ] Signed-off-by: Xiao Guangrong <xiaoguangrong@cn.fujitsu.com> Cc: Anton Blanchard <anton@samba.org> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> Cc: Peter Zijlstra <peterz@infradead.org> Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> Cc: Zhaolei <zhaolei@cn.fujitsu.com> LKML-Reference: <4A7F8A9B.3040201@cn.fujitsu.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/trace')
-rw-r--r--include/trace/events/timer.h137
1 files changed, 137 insertions, 0 deletions
diff --git a/include/trace/events/timer.h b/include/trace/events/timer.h
new file mode 100644
index 000000000000..725892a93b49
--- /dev/null
+++ b/include/trace/events/timer.h
@@ -0,0 +1,137 @@
1#undef TRACE_SYSTEM
2#define TRACE_SYSTEM timer
3
4#if !defined(_TRACE_TIMER_H) || defined(TRACE_HEADER_MULTI_READ)
5#define _TRACE_TIMER_H
6
7#include <linux/tracepoint.h>
8#include <linux/timer.h>
9
10/**
11 * timer_init - called when the timer is initialized
12 * @timer: pointer to struct timer_list
13 */
14TRACE_EVENT(timer_init,
15
16 TP_PROTO(struct timer_list *timer),
17
18 TP_ARGS(timer),
19
20 TP_STRUCT__entry(
21 __field( void *, timer )
22 ),
23
24 TP_fast_assign(
25 __entry->timer = timer;
26 ),
27
28 TP_printk("timer %p", __entry->timer)
29);
30
31/**
32 * timer_start - called when the timer is started
33 * @timer: pointer to struct timer_list
34 * @expires: the timers expiry time
35 */
36TRACE_EVENT(timer_start,
37
38 TP_PROTO(struct timer_list *timer, unsigned long expires),
39
40 TP_ARGS(timer, expires),
41
42 TP_STRUCT__entry(
43 __field( void *, timer )
44 __field( void *, function )
45 __field( unsigned long, expires )
46 __field( unsigned long, now )
47 ),
48
49 TP_fast_assign(
50 __entry->timer = timer;
51 __entry->function = timer->function;
52 __entry->expires = expires;
53 __entry->now = jiffies;
54 ),
55
56 TP_printk("timer %p: func %pf, expires %lu, timeout %ld",
57 __entry->timer, __entry->function, __entry->expires,
58 (long)__entry->expires - __entry->now)
59);
60
61/**
62 * timer_expire_entry - called immediately before the timer callback
63 * @timer: pointer to struct timer_list
64 *
65 * Allows to determine the timer latency.
66 */
67TRACE_EVENT(timer_expire_entry,
68
69 TP_PROTO(struct timer_list *timer),
70
71 TP_ARGS(timer),
72
73 TP_STRUCT__entry(
74 __field( void *, timer )
75 __field( unsigned long, now )
76 ),
77
78 TP_fast_assign(
79 __entry->timer = timer;
80 __entry->now = jiffies;
81 ),
82
83 TP_printk("timer %p: now %lu", __entry->timer, __entry->now)
84);
85
86/**
87 * timer_expire_exit - called immediately after the timer callback returns
88 * @timer: pointer to struct timer_list
89 *
90 * When used in combination with the timer_expire_entry tracepoint we can
91 * determine the runtime of the timer callback function.
92 *
93 * NOTE: Do NOT derefernce timer in TP_fast_assign. The pointer might
94 * be invalid. We solely track the pointer.
95 */
96TRACE_EVENT(timer_expire_exit,
97
98 TP_PROTO(struct timer_list *timer),
99
100 TP_ARGS(timer),
101
102 TP_STRUCT__entry(
103 __field(void *, timer )
104 ),
105
106 TP_fast_assign(
107 __entry->timer = timer;
108 ),
109
110 TP_printk("timer %p", __entry->timer)
111);
112
113/**
114 * timer_cancel - called when the timer is canceled
115 * @timer: pointer to struct timer_list
116 */
117TRACE_EVENT(timer_cancel,
118
119 TP_PROTO(struct timer_list *timer),
120
121 TP_ARGS(timer),
122
123 TP_STRUCT__entry(
124 __field( void *, timer )
125 ),
126
127 TP_fast_assign(
128 __entry->timer = timer;
129 ),
130
131 TP_printk("timer %p", __entry->timer)
132);
133
134#endif /* _TRACE_TIMER_H */
135
136/* This part must be outside protection */
137#include <trace/define_trace.h>