1TRACE_IRQ_HANDLER_EX(9) IRQ TRACE_IRQ_HANDLER_EX(9)
2
3
4
6 trace_irq_handler_exit - called immediately after the irq action
7 handler returns
8
10 void trace_irq_handler_exit(int irq, struct irqaction * action,
11 int ret);
12
14 irq
15 irq number
16
17 action
18 pointer to struct irqaction
19
20 ret
21 return value
22
24 If the ret value is set to IRQ_HANDLED, then we know that the
25 corresponding action->handler scuccessully handled this irq. Otherwise,
26 the irq might be a shared irq line, or the irq was not handled
27 successfully. Can be used in conjunction with the irq_handler_entry to
28 understand irq handler latencies.
29
31 Jason Baron <jbaron@redhat.com>
32 Author.
33
35Kernel Hackers Manual 2.6. June 2019 TRACE_IRQ_HANDLER_EX(9)