disable_hardirq — disables an irq and waits for hardirq completion
bool disable_hardirq ( | unsigned int irq) ; |
Disable the selected interrupt line. Enables and Disables are nested. This function waits for any pending hard IRQ handlers for this interrupt to complete before returning. If you use this function while holding a resource the hard IRQ handler may need you will deadlock.
When used to optimistically disable an interrupt from atomic context the return value must be checked.