diff options
author | Bian Yu <bianyu@kedacom.com> | 2012-12-12 22:26:58 -0500 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2013-01-14 13:05:17 -0500 |
commit | 1eaca39a84170b369fe61fb1da3c1e8606859e99 (patch) | |
tree | 641b6595d2baf7da163468da092677949612a249 /drivers/ata | |
parent | b719f43059903820c31edb30f4663a2818836e7f (diff) | |
download | linux-3.10-1eaca39a84170b369fe61fb1da3c1e8606859e99.tar.gz linux-3.10-1eaca39a84170b369fe61fb1da3c1e8606859e99.tar.bz2 linux-3.10-1eaca39a84170b369fe61fb1da3c1e8606859e99.zip |
[libata] ahci: Fix lack of command retry after a success error handler.
It should be a mistake introduced by commit 8d899e70c1b3afff.
qc->flags can't be set AC_ERR_*
Signed-off-by: Bian Yu <bianyu@kedacom.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/libata-eh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/libata-eh.c b/drivers/ata/libata-eh.c index bf039b0e97b..bcf4437214f 100644 --- a/drivers/ata/libata-eh.c +++ b/drivers/ata/libata-eh.c @@ -2094,7 +2094,7 @@ static unsigned int ata_eh_speed_down(struct ata_device *dev, */ static inline int ata_eh_worth_retry(struct ata_queued_cmd *qc) { - if (qc->flags & AC_ERR_MEDIA) + if (qc->err_mask & AC_ERR_MEDIA) return 0; /* don't retry media errors */ if (qc->flags & ATA_QCFLAG_IO) return 1; /* otherwise retry anything from fs stack */ |