You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
279 B
13 lines
279 B
16 years ago
|
--- a/kernel/irq/chip.c
|
||
|
+++ b/kernel/irq/chip.c
|
||
|
@@ -524,6 +524,9 @@ handle_percpu_irq(unsigned int irq, stru
|
||
|
|
||
|
kstat_incr_irqs_this_cpu(irq, desc);
|
||
|
|
||
|
+ if (unlikely(!desc->action || (desc->status & IRQ_DISABLED)))
|
||
|
+ return;
|
||
|
+
|
||
|
if (desc->chip->ack)
|
||
|
desc->chip->ack(irq);
|
||
|
|