Skip to content

Commit

Permalink
NVMe: Unify controller probe and resume
Browse files Browse the repository at this point in the history
This unifies probe and resume so they both may be scheduled in the same
way. This is necessary for error handling that may occur during device
initialization since the task to cleanup the device wouldn't be able to
run if it is blocked on device initialization.

Signed-off-by: Keith Busch <keith.busch@intel.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
  • Loading branch information
Keith Busch authored and Jens Axboe committed Jun 27, 2015
1 parent 17188bb commit ffe7704
Showing 1 changed file with 29 additions and 23 deletions.
52 changes: 29 additions & 23 deletions drivers/block/nvme-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -2361,19 +2361,20 @@ static int nvme_dev_add(struct nvme_dev *dev)
}
kfree(ctrl);

dev->tagset.ops = &nvme_mq_ops;
dev->tagset.nr_hw_queues = dev->online_queues - 1;
dev->tagset.timeout = NVME_IO_TIMEOUT;
dev->tagset.numa_node = dev_to_node(dev->dev);
dev->tagset.queue_depth =
if (!dev->tagset.tags) {
dev->tagset.ops = &nvme_mq_ops;
dev->tagset.nr_hw_queues = dev->online_queues - 1;
dev->tagset.timeout = NVME_IO_TIMEOUT;
dev->tagset.numa_node = dev_to_node(dev->dev);
dev->tagset.queue_depth =
min_t(int, dev->q_depth, BLK_MQ_MAX_DEPTH) - 1;
dev->tagset.cmd_size = nvme_cmd_size(dev);
dev->tagset.flags = BLK_MQ_F_SHOULD_MERGE;
dev->tagset.driver_data = dev;

if (blk_mq_alloc_tag_set(&dev->tagset))
return 0;
dev->tagset.cmd_size = nvme_cmd_size(dev);
dev->tagset.flags = BLK_MQ_F_SHOULD_MERGE;
dev->tagset.driver_data = dev;

if (blk_mq_alloc_tag_set(&dev->tagset))
return 0;
}
schedule_work(&dev->scan_work);
return 0;
}
Expand Down Expand Up @@ -2924,16 +2925,25 @@ static int nvme_dev_resume(struct nvme_dev *dev)
spin_unlock(&dev_list_lock);
} else {
nvme_unfreeze_queues(dev);
schedule_work(&dev->scan_work);
nvme_dev_add(dev);
nvme_set_irq_hints(dev);
}
return 0;
}

static void nvme_dev_reset(struct nvme_dev *dev)
{
bool in_probe = work_busy(&dev->probe_work);

nvme_dev_shutdown(dev);
if (nvme_dev_resume(dev)) {

/* Synchronize with device probe so that work will see failure status
* and exit gracefully without trying to schedule another reset */
flush_work(&dev->probe_work);

/* Fail this device if reset occured during probe to avoid
* infinite initialization loops. */
if (in_probe) {
dev_warn(dev->dev, "Device failed to resume\n");
kref_get(&dev->kref);
if (IS_ERR(kthread_run(nvme_remove_dead_ctrl, dev, "nvme%d",
Expand All @@ -2942,7 +2952,11 @@ static void nvme_dev_reset(struct nvme_dev *dev)
"Failed to start controller remove task\n");
kref_put(&dev->kref, nvme_free_dev);
}
return;
}
/* Schedule device resume asynchronously so the reset work is available
* to cleanup errors that may occur during reinitialization */
schedule_work(&dev->probe_work);
}

static void nvme_reset_failed_dev(struct work_struct *ws)
Expand Down Expand Up @@ -2974,6 +2988,7 @@ static int nvme_reset(struct nvme_dev *dev)

if (!ret) {
flush_work(&dev->reset_work);
flush_work(&dev->probe_work);
return 0;
}

Expand Down Expand Up @@ -3070,18 +3085,9 @@ static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id)
static void nvme_async_probe(struct work_struct *work)
{
struct nvme_dev *dev = container_of(work, struct nvme_dev, probe_work);
int result;

result = nvme_dev_start(dev);
if (result)
goto reset;

if (dev->online_queues > 1)
result = nvme_dev_add(dev);
if (result)
if (nvme_dev_resume(dev))
goto reset;

nvme_set_irq_hints(dev);
return;
reset:
spin_lock(&dev_list_lock);
Expand Down

0 comments on commit ffe7704

Please sign in to comment.