lkml.org 
[lkml]   [2003]   [May]   [5]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
SubjectRe: oops 2.5.68 ohci1394/ IRQ/acpi
Nicolas <linux@1g6.biz> wrote:
>
>
> May 5 13:36:56 hal9003 kernel: irq 9: nobody cared!
> ...
> May 5 13:36:56 hal9003 kernel: handlers:
> May 5 13:36:56 hal9003 kernel: [acpi_irq+0/17] (acpi_irq+0x0/0x11)
> May 5 13:36:56 hal9003 kernel: [<c01c1ff0>] (acpi_irq+0x0/0x11)

Look like the ACPI IRQ handler isn't returning an appropriate value.

Can you test this patch?

diff -puN drivers/acpi/osl.c~acpi-irq-ret-fix drivers/acpi/osl.c
--- 25/drivers/acpi/osl.c~acpi-irq-ret-fix Mon May 5 14:14:24 2003
+++ 25-akpm/drivers/acpi/osl.c Mon May 5 14:14:38 2003
@@ -237,7 +237,7 @@ acpi_os_table_override (struct acpi_tabl
static irqreturn_t
acpi_irq(int irq, void *dev_id, struct pt_regs *regs)
{
- return (*acpi_irq_handler)(acpi_irq_context);
+ return (*acpi_irq_handler)(acpi_irq_context) ? IRQ_HANDLED : IRQ_NONE;
}

acpi_status
_

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

\
 
 \ /
  Last update: 2005-03-22 13:35    [W:0.036 / U:0.036 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site