diff options
author | Steven Rostedt <srostedt@redhat.com> | 2009-04-14 19:39:12 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2009-04-14 22:05:43 -0400 |
commit | ad8d75fff811a6a230f7f43b05a6483099349533 (patch) | |
tree | 764f75c0785b29067b141719b6e8000f005da7fd /include/trace/irq.h | |
parent | ecda8ae02a08ef065ff387f5cb2a2d4999da2408 (diff) |
tracing/events: move trace point headers into include/trace/events
Impact: clean up
Create a sub directory in include/trace called events to keep the
trace point headers in their own separate directory. Only headers that
declare trace points should be defined in this directory.
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Neil Horman <nhorman@tuxdriver.com>
Cc: Zhao Lei <zhaolei@cn.fujitsu.com>
Cc: Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>
Cc: Pekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'include/trace/irq.h')
-rw-r--r-- | include/trace/irq.h | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/include/trace/irq.h b/include/trace/irq.h deleted file mode 100644 index 75e3468e4493..000000000000 --- a/include/trace/irq.h +++ /dev/null | |||
@@ -1,57 +0,0 @@ | |||
1 | #if !defined(_TRACE_IRQ_H) || defined(TRACE_HEADER_MULTI_READ) | ||
2 | #define _TRACE_IRQ_H | ||
3 | |||
4 | #include <linux/tracepoint.h> | ||
5 | #include <linux/interrupt.h> | ||
6 | |||
7 | #undef TRACE_SYSTEM | ||
8 | #define TRACE_SYSTEM irq | ||
9 | |||
10 | /* | ||
11 | * Tracepoint for entry of interrupt handler: | ||
12 | */ | ||
13 | TRACE_FORMAT(irq_handler_entry, | ||
14 | TP_PROTO(int irq, struct irqaction *action), | ||
15 | TP_ARGS(irq, action), | ||
16 | TP_FMT("irq=%d handler=%s", irq, action->name) | ||
17 | ); | ||
18 | |||
19 | /* | ||
20 | * Tracepoint for return of an interrupt handler: | ||
21 | */ | ||
22 | TRACE_EVENT(irq_handler_exit, | ||
23 | |||
24 | TP_PROTO(int irq, struct irqaction *action, int ret), | ||
25 | |||
26 | TP_ARGS(irq, action, ret), | ||
27 | |||
28 | TP_STRUCT__entry( | ||
29 | __field( int, irq ) | ||
30 | __field( int, ret ) | ||
31 | ), | ||
32 | |||
33 | TP_fast_assign( | ||
34 | __entry->irq = irq; | ||
35 | __entry->ret = ret; | ||
36 | ), | ||
37 | |||
38 | TP_printk("irq=%d return=%s", | ||
39 | __entry->irq, __entry->ret ? "handled" : "unhandled") | ||
40 | ); | ||
41 | |||
42 | TRACE_FORMAT(softirq_entry, | ||
43 | TP_PROTO(struct softirq_action *h, struct softirq_action *vec), | ||
44 | TP_ARGS(h, vec), | ||
45 | TP_FMT("softirq=%d action=%s", (int)(h - vec), softirq_to_name[h-vec]) | ||
46 | ); | ||
47 | |||
48 | TRACE_FORMAT(softirq_exit, | ||
49 | TP_PROTO(struct softirq_action *h, struct softirq_action *vec), | ||
50 | TP_ARGS(h, vec), | ||
51 | TP_FMT("softirq=%d action=%s", (int)(h - vec), softirq_to_name[h-vec]) | ||
52 | ); | ||
53 | |||
54 | #endif /* _TRACE_IRQ_H */ | ||
55 | |||
56 | /* This part must be outside protection */ | ||
57 | #include <trace/define_trace.h> | ||