[PATCH 4/9] nvme: do not restart the request timeout if we're resetting the controller
Christoph Hellwig
hch at lst.de
Thu Oct 22 05:03:36 PDT 2015
Otherwise we're never going to complete a command when it is restarted just
after we completed all other outstanding commands in nvme_clear_queue.
Signed-off-by: Christoph Hellwig <hch at lst.de>
---
drivers/nvme/host/pci.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c
index 644256c..a3250b8 100644
--- a/drivers/nvme/host/pci.c
+++ b/drivers/nvme/host/pci.c
@@ -1063,7 +1063,9 @@ static enum blk_eh_timer_return nvme_timeout(struct request *req, bool reserved)
req->tag, nvmeq->qid);
}
spin_unlock_irq(&dev_list_lock);
- return BLK_EH_RESET_TIMER;
+
+ req->errors = -EIO;
+ return BLK_EH_HANDLED;
}
if (!dev->ctrl.abort_limit)
--
1.9.1
More information about the Linux-nvme
mailing list