Commit 0ffc7e98 authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Jens Axboe

nvme-pci: refactor the tagset handling in nvme_reset_work

The code to create, update or delete a tagset and namespaces in
nvme_reset_work is a bit convoluted.  Refactor it with a two high-level
conditionals for first probe vs reset and I/O queues vs no I/O queues
to make the code flow more clear.
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Reviewed-by: default avatarChaitanya Kulkarni <kch@nvidia.com>
Link: https://lore.kernel.org/r/20221101150050.3510-3-hch@lst.de
[axboe: fix whitespace issue]
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 71b26083
...@@ -2898,24 +2898,36 @@ static void nvme_reset_work(struct work_struct *work) ...@@ -2898,24 +2898,36 @@ static void nvme_reset_work(struct work_struct *work)
if (result) if (result)
goto out; goto out;
/* if (dev->ctrl.tagset) {
* Keep the controller around but remove all namespaces if we don't have /*
* any working I/O queue. * This is a controller reset and we already have a tagset.
*/ * Freeze and update the number of I/O queues as thos might have
if (dev->online_queues < 2) { * changed. If there are no I/O queues left after this reset,
dev_warn(dev->ctrl.device, "IO queues not created\n"); * keep the controller around but remove all namespaces.
nvme_kill_queues(&dev->ctrl); */
nvme_remove_namespaces(&dev->ctrl); if (dev->online_queues > 1) {
nvme_free_tagset(dev); nvme_start_queues(&dev->ctrl);
nvme_wait_freeze(&dev->ctrl);
nvme_pci_update_nr_queues(dev);
nvme_dbbuf_set(dev);
nvme_unfreeze(&dev->ctrl);
} else {
dev_warn(dev->ctrl.device, "IO queues lost\n");
nvme_kill_queues(&dev->ctrl);
nvme_remove_namespaces(&dev->ctrl);
nvme_free_tagset(dev);
}
} else { } else {
nvme_start_queues(&dev->ctrl); /*
nvme_wait_freeze(&dev->ctrl); * First probe. Still allow the controller to show up even if
if (!dev->ctrl.tagset) * there are no namespaces.
*/
if (dev->online_queues > 1) {
nvme_pci_alloc_tag_set(dev); nvme_pci_alloc_tag_set(dev);
else nvme_dbbuf_set(dev);
nvme_pci_update_nr_queues(dev); } else {
nvme_dbbuf_set(dev); dev_warn(dev->ctrl.device, "IO queues not created\n");
nvme_unfreeze(&dev->ctrl); }
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment