问题

In this process how and who will trigger Kernel Interrupt Handler?
I would like some one to help me correcting this and to clarify my question on 1)How and Who trigger Kernel Interrupt Handler? 2)How to define new or change existing hardware interrupt handlers?
Thank you in Advance!
回答1:

do_IRQ()
. If there is corresponding interrupt handler, it will get executed.
To handle interrupt, you should register your interrupt handler with request_irq()
.
来源:https://stackoverflow.com/questions/17783022/trigger-kernel-interrupt-handler-how