aboutsummaryrefslogtreecommitdiff
path: root/include/trace/irq_event_types.h
blob: 5d0919fdd2d45c5224a8e5845d043b83cf22ffa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

/* use <trace/irq.h> instead */
#ifndef TRACE_FORMAT
# error Do not include this file directly.
# error Unless you know what you are doing.
#endif

TRACE_FORMAT(irq_handler_entry,
	TPPROTO(int irq, struct irqaction *action),
	TPARGS(irq, action),
	TPFMT("irq=%d handler=%s", irq, action->name));

TRACE_FORMAT(irq_handler_exit,
	TPPROTO(int irq, struct irqaction *action, int ret),
	TPARGS(irq, action, ret),
	TPFMT("irq=%d handler=%s return=%s",
		irq, action->name, ret ? "handled" : "unhandled"));