blob: b0c7ede55eb156c0d4880dee2555dc4b35577887 [file] [log] [blame]
Steven Rostedtea20d922009-04-10 08:54:16 -04001#if !defined(_TRACE_IRQ_H) || defined(TRACE_HEADER_MULTI_READ)
Jason Baronaf392412009-02-26 10:11:05 -05002#define _TRACE_IRQ_H
3
Jason Baronaf392412009-02-26 10:11:05 -05004#include <linux/tracepoint.h>
Steven Rostedtea20d922009-04-10 08:54:16 -04005#include <linux/interrupt.h>
Jason Baronaf392412009-02-26 10:11:05 -05006
Steven Rostedtea20d922009-04-10 08:54:16 -04007#undef TRACE_SYSTEM
8#define TRACE_SYSTEM irq
9
Steven Rostedt1d080d62009-06-01 12:20:40 -040010#define softirq_name(sirq) { sirq##_SOFTIRQ, #sirq }
11#define show_softirq_name(val) \
12 __print_symbolic(val, \
13 softirq_name(HI), \
14 softirq_name(TIMER), \
15 softirq_name(NET_TX), \
16 softirq_name(NET_RX), \
17 softirq_name(BLOCK), \
18 softirq_name(TASKLET), \
19 softirq_name(SCHED), \
20 softirq_name(HRTIMER), \
21 softirq_name(RCU))
Steven Rostedtc2adae02009-05-20 19:56:19 -040022
Jason Baron9ee19832009-04-30 13:29:47 -040023/**
24 * irq_handler_entry - called immediately before the irq action handler
25 * @irq: irq number
26 * @action: pointer to struct irqaction
27 *
28 * The struct irqaction pointed to by @action contains various
29 * information about the handler, including the device name,
30 * @action->name, and the device id, @action->dev_id. When used in
31 * conjunction with the irq_handler_exit tracepoint, we can figure
32 * out irq handler latencies.
Steven Rostedtea20d922009-04-10 08:54:16 -040033 */
Steven Rostedt160031b2009-04-24 11:26:55 -040034TRACE_EVENT(irq_handler_entry,
35
Steven Rostedtea20d922009-04-10 08:54:16 -040036 TP_PROTO(int irq, struct irqaction *action),
Steven Rostedt160031b2009-04-24 11:26:55 -040037
Steven Rostedtea20d922009-04-10 08:54:16 -040038 TP_ARGS(irq, action),
Steven Rostedt160031b2009-04-24 11:26:55 -040039
40 TP_STRUCT__entry(
41 __field( int, irq )
42 __string( name, action->name )
43 ),
44
45 TP_fast_assign(
46 __entry->irq = irq;
47 __assign_str(name, action->name);
48 ),
49
50 TP_printk("irq=%d handler=%s", __entry->irq, __get_str(name))
51);
Steven Rostedtea20d922009-04-10 08:54:16 -040052
Jason Baron9ee19832009-04-30 13:29:47 -040053/**
54 * irq_handler_exit - called immediately after the irq action handler returns
55 * @irq: irq number
56 * @action: pointer to struct irqaction
57 * @ret: return value
58 *
59 * If the @ret value is set to IRQ_HANDLED, then we know that the corresponding
60 * @action->handler scuccessully handled this irq. Otherwise, the irq might be
61 * a shared irq line, or the irq was not handled successfully. Can be used in
62 * conjunction with the irq_handler_entry to understand irq handler latencies.
Steven Rostedtea20d922009-04-10 08:54:16 -040063 */
64TRACE_EVENT(irq_handler_exit,
65
66 TP_PROTO(int irq, struct irqaction *action, int ret),
67
68 TP_ARGS(irq, action, ret),
69
70 TP_STRUCT__entry(
71 __field( int, irq )
72 __field( int, ret )
73 ),
74
75 TP_fast_assign(
76 __entry->irq = irq;
77 __entry->ret = ret;
78 ),
79
80 TP_printk("irq=%d return=%s",
81 __entry->irq, __entry->ret ? "handled" : "unhandled")
82);
83
Jason Baron9ee19832009-04-30 13:29:47 -040084/**
85 * softirq_entry - called immediately before the softirq handler
86 * @h: pointer to struct softirq_action
87 * @vec: pointer to first struct softirq_action in softirq_vec array
88 *
89 * The @h parameter, contains a pointer to the struct softirq_action
90 * which has a pointer to the action handler that is called. By subtracting
91 * the @vec pointer from the @h pointer, we can determine the softirq
92 * number. Also, when used in combination with the softirq_exit tracepoint
93 * we can determine the softirq latency.
94 */
Steven Rostedt160031b2009-04-24 11:26:55 -040095TRACE_EVENT(softirq_entry,
Steven Rostedtea20d922009-04-10 08:54:16 -040096
Steven Rostedtea20d922009-04-10 08:54:16 -040097 TP_PROTO(struct softirq_action *h, struct softirq_action *vec),
Steven Rostedt160031b2009-04-24 11:26:55 -040098
Steven Rostedtea20d922009-04-10 08:54:16 -040099 TP_ARGS(h, vec),
Steven Rostedt160031b2009-04-24 11:26:55 -0400100
101 TP_STRUCT__entry(
102 __field( int, vec )
Steven Rostedt160031b2009-04-24 11:26:55 -0400103 ),
104
105 TP_fast_assign(
106 __entry->vec = (int)(h - vec);
Steven Rostedt160031b2009-04-24 11:26:55 -0400107 ),
108
Steven Rostedtc2adae02009-05-20 19:56:19 -0400109 TP_printk("softirq=%d action=%s", __entry->vec,
110 show_softirq_name(__entry->vec))
Steven Rostedt160031b2009-04-24 11:26:55 -0400111);
112
Jason Baron9ee19832009-04-30 13:29:47 -0400113/**
114 * softirq_exit - called immediately after the softirq handler returns
115 * @h: pointer to struct softirq_action
116 * @vec: pointer to first struct softirq_action in softirq_vec array
117 *
118 * The @h parameter contains a pointer to the struct softirq_action
119 * that has handled the softirq. By subtracting the @vec pointer from
120 * the @h pointer, we can determine the softirq number. Also, when used in
121 * combination with the softirq_entry tracepoint we can determine the softirq
122 * latency.
123 */
Steven Rostedt160031b2009-04-24 11:26:55 -0400124TRACE_EVENT(softirq_exit,
125
126 TP_PROTO(struct softirq_action *h, struct softirq_action *vec),
127
128 TP_ARGS(h, vec),
129
130 TP_STRUCT__entry(
131 __field( int, vec )
Steven Rostedt160031b2009-04-24 11:26:55 -0400132 ),
133
134 TP_fast_assign(
135 __entry->vec = (int)(h - vec);
Steven Rostedt160031b2009-04-24 11:26:55 -0400136 ),
137
Steven Rostedtc2adae02009-05-20 19:56:19 -0400138 TP_printk("softirq=%d action=%s", __entry->vec,
139 show_softirq_name(__entry->vec))
Steven Rostedt160031b2009-04-24 11:26:55 -0400140);
Jason Baronaf392412009-02-26 10:11:05 -0500141
Steven Rostedta8d154b2009-04-10 09:36:00 -0400142#endif /* _TRACE_IRQ_H */
143
144/* This part must be outside protection */
145#include <trace/define_trace.h>