Now the clear_irq() method is called only from ide_intr() but ide_timer_expiry() also should call this method in case when drive_is_ready() succeeds... Signed-off-by: Sergei Shtylyov <sshtylyov@xxxxxxxxxxxxx> --- The patch is atop of ide-2.6.git 'for-next' branch. drivers/ide/ide-io.c | 3 +++ 1 files changed, 3 insertions(+) Index: ide-2.6/drivers/ide/ide-io.c =================================================================== --- ide-2.6.orig/drivers/ide/ide-io.c +++ ide-2.6/drivers/ide/ide-io.c @@ -669,6 +669,9 @@ void ide_timer_expiry (unsigned long dat hwif->dma_ops->dma_lost_irq(drive); if (hwif->ack_intr) hwif->ack_intr(hwif); + if (hwif->port_ops && hwif->port_ops->clear_irq) + hwif->port_ops->clear_irq(drive); + printk(KERN_WARNING "%s: lost interrupt\n", drive->name); startstop = handler(drive); -- To unsubscribe from this list: send the line "unsubscribe linux-ide" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html