[PATCH -mm] misroute-irq: Don't call desc->chip->end because ofedge interrupts

From: Steven Rostedt
Date: Mon Jun 05 2006 - 23:33:47 EST



Hit the following BUG with irqpoll. The below patch fixes it.

hda: WDC WD2000BB-00GUA0, ATA DISK drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14<1>BUG: unable to handle kernel NULL pointer dereference at virtual address 00000000
printing eip:
00000000
*pde = 00000000
Oops: 0000 [#1]
PREEMPT SMP
last sysfs file:
Modules linked in:
CPU: 0
EIP: 0060:[<00000000>] Not tainted VLI
EFLAGS: 00010002 (2.6.17-rc5-mm3 #23)
EIP is at 0x0
eax: c03f2540 ebx: c277dcc0 ecx: c03ea9c4 edx: 00000001
esi: 0000000e edi: c03ea9e4 ebp: c03f5f08 esp: c03f5ed8
ds: 007b es: 007b ss: 0068
Process idle (pid: 0, threadinfo=c03f4000 task=c036d540)
Stack: c01488c5 0000000e c03f5f60 c277dcc0 00000000 00000001 c03ea9c4 c03ea9d0
c03ea9d4 c03ea2c0 00000000 c03ea2e4 c03f5f38 c014904d 00000000 c03ea2c0
00000001 c03f5f60 c03f5f60 00000000 c0370c00 c0148f30 00000000 c03f5f60
Call Trace:
[<c0103db7>] show_stack_log_lvl+0xa7/0xf0
[<c0103fc0>] show_registers+0x1c0/0x260
[<c0104535>] die+0x135/0x2d0
[<c0114be2>] do_page_fault+0x6b2/0x79c
[<c01035f5>] error_code+0x39/0x40
[<c014904d>] handle_edge_irq+0x11d/0x150
[<c01055de>] do_IRQ+0x5e/0xb0
[<c010348d>] common_interrupt+0x25/0x2c
[<c010162d>] cpu_idle+0x4d/0xb0
[<c01002e5>] rest_init+0x45/0x50
[<c03fa81a>] start_kernel+0x32a/0x460
[<c0100210>] 0xc0100210
Code: Bad EIP value.

Signed-off-by: Steven Rostedt <rostedt@xxxxxxxxxxx>


Index: linux-2.6.17-rc5-mm3/kernel/irq/spurious.c
===================================================================
--- linux-2.6.17-rc5-mm3.orig/kernel/irq/spurious.c 2006-06-05 17:26:15.000000000 -0400
+++ linux-2.6.17-rc5-mm3/kernel/irq/spurious.c 2006-06-05 19:47:58.000000000 -0400
@@ -77,7 +77,7 @@ static int misrouted_irq(int irq, struct
* If we did actual work for the real IRQ line we must let the
* IRQ controller clean up too
*/
- if (work)
+ if (work && disc->chip && desc->chip->end)
desc->chip->end(i);
spin_unlock(&desc->lock);
}


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/