diff options
author | Jens Axboe <axboe@kernel.dk> | 2023-01-26 11:43:33 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2023-01-26 11:43:33 -0700 |
commit | db3ba974c2bc895ba39689a364cb7a49c0fe779f (patch) | |
tree | 2c32ea1700593f449b0652042ef652108b388b81 /drivers/nvme/host/pci.c | |
parent | 8e4ff684762b6503db45e8906e258faee080c336 (diff) | |
parent | 85eee6341abb81ac6a35062ffd5c3029eb53be6b (diff) |
Merge tag 'nvme-6.2-2023-01-26' of git://git.infradead.org/nvme into block-6.2
Pull NVMe fixes from Christoph:
"nvme fixes for Linux 6.2
- flush initial scan_work for async probe (Keith Busch)
- fix passthrough csi check (Keith Busch)
- fix nvme-fc initialization order (Ross Lagerwall)"
* tag 'nvme-6.2-2023-01-26' of git://git.infradead.org/nvme:
nvme: fix passthrough csi check
nvme-pci: flush initial scan_work for async probe
nvme-fc: fix initialization order
Diffstat (limited to 'drivers/nvme/host/pci.c')
-rw-r--r-- | drivers/nvme/host/pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c index 1ff8843bc4b3..c734934c407c 100644 --- a/drivers/nvme/host/pci.c +++ b/drivers/nvme/host/pci.c @@ -3102,6 +3102,7 @@ static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id) nvme_start_ctrl(&dev->ctrl); nvme_put_ctrl(&dev->ctrl); + flush_work(&dev->ctrl.scan_work); return 0; out_disable: |