Commit 3345ee71 authored by Chris Wedgwood's avatar Chris Wedgwood Committed by Linus Torvalds

[PATCH] i386 reduce spurious interrupt noise

i386 hardware can (and does) see spurious interrupts from time to
tome.  Ideally I would like the printk removed completely but this is
probably good enough for now.
Signed-off-by: default avatarChris Wedgwood <cw@f00f.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 428877d3
...@@ -1190,7 +1190,7 @@ asmlinkage void smp_error_interrupt(void) ...@@ -1190,7 +1190,7 @@ asmlinkage void smp_error_interrupt(void)
6: Received illegal vector 6: Received illegal vector
7: Illegal register address 7: Illegal register address
*/ */
printk (KERN_INFO "APIC error on CPU%d: %02lx(%02lx)\n", printk (KERN_DEBUG "APIC error on CPU%d: %02lx(%02lx)\n",
smp_processor_id(), v , v1); smp_processor_id(), v , v1);
irq_exit(); irq_exit();
} }
......
...@@ -226,7 +226,7 @@ void mask_and_ack_8259A(unsigned int irq) ...@@ -226,7 +226,7 @@ void mask_and_ack_8259A(unsigned int irq)
* lets ACK and report it. [once per IRQ] * lets ACK and report it. [once per IRQ]
*/ */
if (!(spurious_irq_mask & irqmask)) { if (!(spurious_irq_mask & irqmask)) {
printk("spurious 8259A interrupt: IRQ%d.\n", irq); printk(KERN_DEBUG "spurious 8259A interrupt: IRQ%d.\n", irq);
spurious_irq_mask |= irqmask; spurious_irq_mask |= irqmask;
} }
atomic_inc(&irq_err_count); atomic_inc(&irq_err_count);
......
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