]> err.no Git - linux-2.6/commitdiff
[PATCH] libata: fix ATA_EH_REVALIDATE clearing
authorTejun Heo <htejun@gmail.com>
Mon, 12 Jun 2006 05:11:01 +0000 (14:11 +0900)
committerJeff Garzik <jeff@garzik.org>
Mon, 12 Jun 2006 06:10:26 +0000 (02:10 -0400)
ATA_EH_REVALIDATE should be cleared after all devices on the target
port have been revalidated.  Fix ata_eh_revalidate_and_attach()
accordingly.

Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
drivers/scsi/libata-eh.c

index f82799e22588e326707561d1d98d6bcce0b533d3..782dfba573a99d620d9c64b2f9225d1d84ed55c8 100644 (file)
@@ -1556,8 +1556,6 @@ static int ata_eh_revalidate_and_attach(struct ata_port *ap,
 
                        /* schedule the scsi_rescan_device() here */
                        queue_work(ata_aux_wq, &(ap->scsi_rescan_task));
-
-                       ehc->i.action &= ~ATA_EH_REVALIDATE;
                } else if (dev->class == ATA_DEV_UNKNOWN &&
                           ehc->tries[dev->devno] &&
                           ata_class_enabled(ehc->classes[dev->devno])) {
@@ -1578,7 +1576,9 @@ static int ata_eh_revalidate_and_attach(struct ata_port *ap,
                }
        }
 
-       if (rc)
+       if (rc == 0)
+               ehc->i.action &= ~ATA_EH_REVALIDATE;
+       else
                *r_failed_dev = dev;
 
        DPRINTK("EXIT\n");