47a2be1b2d7d73f06d5f70698fd21070e363ac5d
[deliverable/linux.git] / include / trace / irq_event_types.h
1
2 /* use <trace/irq.h> instead */
3 #ifndef TRACE_FORMAT
4 # error Do not include this file directly.
5 # error Unless you know what you are doing.
6 #endif
7
8 #undef TRACE_SYSTEM
9 #define TRACE_SYSTEM irq
10
11 TRACE_FORMAT(irq_handler_entry,
12 TPPROTO(int irq, struct irqaction *action),
13 TPARGS(irq, action),
14 TPFMT("irq=%d handler=%s", irq, action->name));
15
16 TRACE_FORMAT(irq_handler_exit,
17 TPPROTO(int irq, struct irqaction *action, int ret),
18 TPARGS(irq, action, ret),
19 TPFMT("irq=%d handler=%s return=%s",
20 irq, action->name, ret ? "handled" : "unhandled"));
21
22 #undef TRACE_SYSTEM
This page took 0.031649 seconds and 4 git commands to generate.