genirq: revert lazy irq disable for simple irqs

In commit 76d2160147f43f982dfe881404cfde9fd0a9da21 lazy irq disabling
was implemented, and the simple irq handler had a masking set to it.

Remy Bohmer discovered that some devices in the ARM architecture
would trigger the mask, but never unmask it. His patch to do the
unmasking was questioned by Russell King about masking simple irqs
to begin with. Looking further, it was discovered that the problems
Remy was seeing was due to improper use of the simple handler by
devices, and he later submitted patches to fix those. But the issue
that was uncovered was that the simple handler should never mask.

This patch reverts the masking in the simple handler.

Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by Steven Rostedt and committed by Ingo Molnar 971e5b35 213fde71

+2 -7
+2 -7
kernel/irq/chip.c
··· 297 298 if (unlikely(desc->status & IRQ_INPROGRESS)) 299 goto out_unlock; 300 kstat_cpu(cpu).irqs[irq]++; 301 302 action = desc->action; 303 - if (unlikely(!action || (desc->status & IRQ_DISABLED))) { 304 - if (desc->chip->mask) 305 - desc->chip->mask(irq); 306 - desc->status &= ~(IRQ_REPLAY | IRQ_WAITING); 307 - desc->status |= IRQ_PENDING; 308 goto out_unlock; 309 - } 310 311 - desc->status &= ~(IRQ_REPLAY | IRQ_WAITING | IRQ_PENDING); 312 desc->status |= IRQ_INPROGRESS; 313 spin_unlock(&desc->lock); 314
··· 297 298 if (unlikely(desc->status & IRQ_INPROGRESS)) 299 goto out_unlock; 300 + desc->status &= ~(IRQ_REPLAY | IRQ_WAITING); 301 kstat_cpu(cpu).irqs[irq]++; 302 303 action = desc->action; 304 + if (unlikely(!action || (desc->status & IRQ_DISABLED))) 305 goto out_unlock; 306 307 desc->status |= IRQ_INPROGRESS; 308 spin_unlock(&desc->lock); 309