diff options
author | Christoph Hellwig <hch@lst.de> | 2014-06-28 12:29:19 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2014-07-17 22:16:27 +0200 |
commit | a25ee5485157403612fbb59be6c0435ede2f1da8 (patch) | |
tree | b878190650b7dd2c769979f543d25ec697362d7a /drivers/scsi/sd.c | |
parent | 6a7b43985daa4f42b6d6f0186594c3a68f84a1d8 (diff) | |
download | linux-stable-a25ee5485157403612fbb59be6c0435ede2f1da8.tar.gz linux-stable-a25ee5485157403612fbb59be6c0435ede2f1da8.tar.bz2 linux-stable-a25ee5485157403612fbb59be6c0435ede2f1da8.zip |
sd: retry write same commands
Currently cmd->allowed is initialized from rq->retries for write same
commands, but retries is always 0 for non-BLOCK_PC requests. Set it
to the standard number of retries instead.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Diffstat (limited to 'drivers/scsi/sd.c')
-rw-r--r-- | drivers/scsi/sd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c index 03bed86b9fc9..f54a53086c9d 100644 --- a/drivers/scsi/sd.c +++ b/drivers/scsi/sd.c @@ -850,7 +850,7 @@ static int sd_setup_write_same_cmnd(struct scsi_cmnd *cmd) } cmd->transfersize = sdp->sector_size; - cmd->allowed = rq->retries; + cmd->allowed = SD_MAX_RETRIES; /* * For WRITE_SAME the data transferred in the DATA IN buffer is |