All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] [SCSI] Fix a bug in deriving the FLUSH_TIMEOUT from the basic I/O timeout
@ 2014-06-04 16:33 ` K. Y. Srinivasan
  0 siblings, 0 replies; 45+ messages in thread
From: K. Y. Srinivasan @ 2014-06-04 16:33 UTC (permalink / raw)
  To: gregkh, linux-kernel, devel, ohering, jbottomley, hch, linux-scsi,
	apw, jasowang

Commit ID: 7e660100d85af860e7ad763202fff717adcdaacd added code to derive the
FLUSH_TIMEOUT from the basic I/O timeout. However, this patch did not use the
basic I/O timeout of the device. Fix this bug.

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
---
 drivers/scsi/sd.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c
index e9689d5..54150b1 100644
--- a/drivers/scsi/sd.c
+++ b/drivers/scsi/sd.c
@@ -832,7 +832,9 @@ static int sd_setup_write_same_cmnd(struct scsi_device *sdp, struct request *rq)
 
 static int scsi_setup_flush_cmnd(struct scsi_device *sdp, struct request *rq)
 {
-	rq->timeout *= SD_FLUSH_TIMEOUT_MULTIPLIER;
+	int timeout = sdp->request_queue->rq_timeout;
+
+	rq->timeout = (timeout * SD_FLUSH_TIMEOUT_MULTIPLIER);
 	rq->retries = SD_MAX_RETRIES;
 	rq->cmd[0] = SYNCHRONIZE_CACHE;
 	rq->cmd_len = 10;
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 45+ messages in thread

end of thread, other threads:[~2014-07-18 18:17 UTC | newest]

Thread overview: 45+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-04 16:33 [PATCH 1/1] [SCSI] Fix a bug in deriving the FLUSH_TIMEOUT from the basic I/O timeout K. Y. Srinivasan
2014-06-04 16:33 ` K. Y. Srinivasan
2014-06-04 17:02 ` James Bottomley
2014-06-04 17:02   ` James Bottomley
2014-06-04 17:15   ` KY Srinivasan
2014-06-04 17:15     ` KY Srinivasan
2014-06-06  1:32     ` Mike Christie
2014-06-06  2:53       ` KY Srinivasan
2014-06-06  2:53         ` KY Srinivasan
2014-06-06 17:18         ` Mike Christie
2014-06-06 17:18           ` Mike Christie
2014-06-06 17:52           ` James Bottomley
2014-06-06 18:22             ` Jens Axboe
2014-06-20 21:36               ` KY Srinivasan
2014-07-17 23:53                 ` KY Srinivasan
2014-07-17 23:53                   ` KY Srinivasan
2014-07-18  0:51                   ` Elliott, Robert (Server Storage)
2014-07-18  0:51                     ` Elliott, Robert (Server Storage)
2014-07-18 15:11                     ` Christoph Hellwig (hch@infradead.org)
2014-07-18 15:11                       ` Christoph Hellwig (hch@infradead.org)
2014-07-18 15:39                     ` James Bottomley
2014-07-18 15:39                       ` James Bottomley
2014-07-18 17:17                       ` Elliott, Robert (Server Storage)
2014-07-18 17:17                         ` Elliott, Robert (Server Storage)
2014-07-18 17:41                         ` James Bottomley
2014-07-18 17:41                           ` James Bottomley
2014-07-18 18:16                           ` Douglas Gilbert
2014-07-18 18:16                             ` Douglas Gilbert
2014-07-18 15:10                   ` Christoph Hellwig (hch@infradead.org)
2014-07-18 15:10                     ` Christoph Hellwig (hch@infradead.org)
2014-07-18 16:44                     ` KY Srinivasan
2014-07-18 16:44                       ` KY Srinivasan
2014-07-18 16:57                       ` James Bottomley
2014-07-18 16:57                         ` James Bottomley
2014-07-18 17:01                         ` hch
2014-07-18 17:01                           ` hch
2014-07-18 17:05                         ` KY Srinivasan
2014-07-18 17:05                           ` KY Srinivasan
2014-07-18 17:12                           ` hch
2014-07-18 17:15                             ` hch
2014-07-18 17:15                               ` hch
2014-07-18 17:00 ` Christoph Hellwig
2014-07-18 17:00   ` Christoph Hellwig
2014-07-18 17:03   ` James Bottomley
2014-07-18 17:03     ` James Bottomley

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.