On Thu, Jun 29, 2023 at 08:08:31AM +0800, Ming Lei wrote: > On Wed, Jun 28, 2023 at 08:35:04AM -0600, Keith Busch wrote: > > On Wed, Jun 28, 2023 at 09:30:16AM +0800, Ming Lei wrote: > > > That may not be enough: > > > > > > - What if nvme_sysfs_delete() is called from sysfs before the 1st check in > > > nvme_reset_work()? > > > > > > - What if one pending nvme_dev_disable()<-nvme_timeout() comes after > > > the added nvme_unquiesce_io_queues() returns? > > > > Okay, the following will handle both: > > > > --- > > diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c > > index b027e5e3f4acb..c9224d39195e5 100644 > > --- a/drivers/nvme/host/pci.c > > +++ b/drivers/nvme/host/pci.c > > @@ -2690,7 +2690,8 @@ static void nvme_reset_work(struct work_struct *work) > > if (dev->ctrl.state != NVME_CTRL_RESETTING) { > > dev_warn(dev->ctrl.device, "ctrl state %d is not RESETTING\n", > > dev->ctrl.state); > > - return; > > + result = -ENODEV; > > + goto out; > > } > > > > /* > > @@ -2777,7 +2778,9 @@ static void nvme_reset_work(struct work_struct *work) > > result); > > nvme_change_ctrl_state(&dev->ctrl, NVME_CTRL_DELETING); > > nvme_dev_disable(dev, true); > > + nvme_sync_queues(&dev->ctrl); > > nvme_mark_namespaces_dead(&dev->ctrl); > > + nvme_unquiesce_io_queues(&dev->ctrl); > > nvme_change_ctrl_state(&dev->ctrl, NVME_CTRL_DEAD); > > } > > This one looks better, but reset may not be scheduled successfully because > of removal, such as, the removal comes exactly before changing state > to NVME_CTRL_RESETTING. For example, io timeout disables the controller, but can't schedule the reset because someone requested driver unbinding between the disabling and the reset_work queueing? I think this needs some error checks, like below. Fortunately there are not many places in nvme-pci that needs this. I do think the unconditional unquiesce in nvme_remove_namespaces() you proposed earlier looks good though, too. --- diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c index c9224d39195e5..bf21bd08ee7ed 100644 --- a/drivers/nvme/host/pci.c +++ b/drivers/nvme/host/pci.c @@ -108,6 +108,7 @@ MODULE_PARM_DESC(noacpi, "disable acpi bios quirks"); struct nvme_dev; struct nvme_queue; +static int nvme_disable_prepare_reset(struct nvme_dev *dev, bool shutdown); static void nvme_dev_disable(struct nvme_dev *dev, bool shutdown); static void nvme_delete_io_queues(struct nvme_dev *dev); static void nvme_update_attrs(struct nvme_dev *dev); @@ -1298,9 +1299,7 @@ static enum blk_eh_timer_return nvme_timeout(struct request *req) */ if (nvme_should_reset(dev, csts)) { nvme_warn_reset(dev, csts); - nvme_dev_disable(dev, false); - nvme_reset_ctrl(&dev->ctrl); - return BLK_EH_DONE; + goto disable; } /* @@ -1351,10 +1350,7 @@ static enum blk_eh_timer_return nvme_timeout(struct request *req) "I/O %d QID %d timeout, reset controller\n", req->tag, nvmeq->qid); nvme_req(req)->flags |= NVME_REQ_CANCELLED; - nvme_dev_disable(dev, false); - nvme_reset_ctrl(&dev->ctrl); - - return BLK_EH_DONE; + goto disable; } if (atomic_dec_return(&dev->ctrl.abort_limit) < 0) { @@ -1391,6 +1387,12 @@ static enum blk_eh_timer_return nvme_timeout(struct request *req) * as the device then is in a faulty state. */ return BLK_EH_RESET_TIMER; + +disable: + if (!nvme_disable_prepare_reset(dev, false) && + nvme_try_sched_reset(&dev->ctrl)) + nvme_unquiesce_io_queues(&dev->ctrl); + return BLK_EH_DONE; } static void nvme_free_queue(struct nvme_queue *nvmeq) @@ -3278,7 +3280,8 @@ static pci_ers_result_t nvme_error_detected(struct pci_dev *pdev, case pci_channel_io_frozen: dev_warn(dev->ctrl.device, "frozen state error detected, reset controller\n"); - nvme_dev_disable(dev, false); + if (nvme_disable_prepare_reset(dev, false)) + return PCI_ERS_RESULT_DISCONNECT; return PCI_ERS_RESULT_NEED_RESET; case pci_channel_io_perm_failure: dev_warn(dev->ctrl.device, @@ -3294,7 +3297,8 @@ static pci_ers_result_t nvme_slot_reset(struct pci_dev *pdev) dev_info(dev->ctrl.device, "restart after slot reset\n"); pci_restore_state(pdev); - nvme_reset_ctrl(&dev->ctrl); + if (!nvme_try_sched_reset(&dev->ctrl)) + nvme_unquiesce_io_queues(&dev->ctrl); return PCI_ERS_RESULT_RECOVERED; } --