From: Benjamin Herrenschmidt Date: Thu, 29 Jun 2006 09:25:01 +0000 (-0700) Subject: [PATCH] genirq: fasteoi handler: handle interrupt disabling X-Git-Tag: v2.6.18-rc1~364 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=98bb244b685eb2a297aa60fa2e5c0631f95828e1;p=platform%2Fkernel%2Flinux-stable.git [PATCH] genirq: fasteoi handler: handle interrupt disabling Note when a disable interrupt happened with the fasteoi handler as well so that delayed disable can be implemented with fasteoi-type controllers. Signed-off-by: Benjamin Herrenschmidt Acked-by: Ingo Molnar Cc: Thomas Gleixner Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/kernel/irq/chip.c b/kernel/irq/chip.c index 8736f2c..a99047a 100644 --- a/kernel/irq/chip.c +++ b/kernel/irq/chip.c @@ -311,10 +311,13 @@ handle_fastack_irq(unsigned int irq, struct irq_desc *desc, * keep it masked and get out of here */ action = desc->action; - if (unlikely(!action || (desc->status & IRQ_DISABLED))) + if (unlikely(!action || (desc->status & IRQ_DISABLED))) { + desc->status |= IRQ_PENDING; goto out; + } desc->status |= IRQ_INPROGRESS; + desc->status &= ~IRQ_PENDING; spin_unlock(&desc->lock); action_ret = handle_IRQ_event(irq, regs, action);