nvme: delete dev from dev_list in nvme_reset
Device resets need to delete the device from the device list before kicking of the reset an re-probe, otherwise we get the device added to the list twice. nvme_reset is the only side missing this deletion at the moment, and this patch adds it. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Keith Busch <keith.busch@intel.com> Signed-off-by: Jens Axboe <axboe@fb.com>
This commit is contained in:
parent
0a7385ad69
commit
201cf1ecdf
1 changed files with 1 additions and 0 deletions
|
@ -3089,6 +3089,7 @@ static int nvme_reset(struct nvme_dev *dev)
|
||||||
|
|
||||||
spin_lock(&dev_list_lock);
|
spin_lock(&dev_list_lock);
|
||||||
if (!work_pending(&dev->reset_work)) {
|
if (!work_pending(&dev->reset_work)) {
|
||||||
|
list_del_init(&dev->node);
|
||||||
queue_work(nvme_workq, &dev->reset_work);
|
queue_work(nvme_workq, &dev->reset_work);
|
||||||
ret = 0;
|
ret = 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue