|
@@ -973,8 +973,8 @@ static void nvme_rdma_error_recovery_work(struct work_struct *work)
|
|
nvme_start_queues(&ctrl->ctrl);
|
|
nvme_start_queues(&ctrl->ctrl);
|
|
|
|
|
|
if (!nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_CONNECTING)) {
|
|
if (!nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_CONNECTING)) {
|
|
- /* state change failure should never happen */
|
|
|
|
- WARN_ON_ONCE(1);
|
|
|
|
|
|
+ /* state change failure is ok if we're in DELETING state */
|
|
|
|
+ WARN_ON_ONCE(ctrl->ctrl.state != NVME_CTRL_DELETING);
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
|
|
|