diff options
-rw-r--r-- | drivers/scsi/libata-scsi.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/scsi/libata-scsi.c b/drivers/scsi/libata-scsi.c index 28706521773c..44008150d310 100644 --- a/drivers/scsi/libata-scsi.c +++ b/drivers/scsi/libata-scsi.c | |||
@@ -831,11 +831,14 @@ void ata_eh_qc_complete(struct ata_queued_cmd *qc) | |||
831 | * should be retried. To be used from EH. | 831 | * should be retried. To be used from EH. |
832 | * | 832 | * |
833 | * SCSI midlayer limits the number of retries to scmd->allowed. | 833 | * SCSI midlayer limits the number of retries to scmd->allowed. |
834 | * This function might need to adjust scmd->retries for commands | 834 | * scmd->retries is decremented for commands which get retried |
835 | * which get retried due to unrelated NCQ failures. | 835 | * due to unrelated failures (qc->err_mask is zero). |
836 | */ | 836 | */ |
837 | void ata_eh_qc_retry(struct ata_queued_cmd *qc) | 837 | void ata_eh_qc_retry(struct ata_queued_cmd *qc) |
838 | { | 838 | { |
839 | struct scsi_cmnd *scmd = qc->scsicmd; | ||
840 | if (!qc->err_mask && scmd->retries) | ||
841 | scmd->retries--; | ||
839 | __ata_eh_qc_complete(qc); | 842 | __ata_eh_qc_complete(qc); |
840 | } | 843 | } |
841 | 844 | ||