I am learning kernel interrupt handling and have question about probe_irq_on explanation http://www.linuxcertif.com/man/9/probe_irq_on/en/
"turns on IRQ detection. It operates by enabling all interrupts which have no handlers, while keeping the handlers for those interrupts NULL. The kernel's generic interrupt handling routine will disable these IRQs when an interrupt is received on them."
Does it say "interrupt is received on these IRQs" I always thought IRQ(Interrupt request) is same as Interrupt.So quite confused about this. Is there any difference btw these two ??
Thanks