Commit 1de95269 authored by David S. Miller's avatar David S. Miller

Merge davem@nuts.ninka.net:/home/davem/src/BK/net-2.5

into kernel.bkbits.net:/home/davem/net-2.5
parents 4b4be4d2 68d8610f
...@@ -221,13 +221,14 @@ int handle_IRQ_event(unsigned int irq, struct pt_regs * regs, struct irqaction * ...@@ -221,13 +221,14 @@ int handle_IRQ_event(unsigned int irq, struct pt_regs * regs, struct irqaction *
local_irq_disable(); local_irq_disable();
if (retval != 1) { if (retval != 1) {
static int count = 100; static int count = 100;
while (count) { if (count) {
count--; count--;
printk(retval printk(retval
? "irq event %d: bogus retval mask %x\n" ? "irq event %d: bogus retval mask %x\n"
: "irq %d: nobody cared!\n", : "irq %d: nobody cared!\n",
irq, irq,
retval); retval);
dump_stack();
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment