Skip to content

Commit dd90905

Browse files
committed
Merge tag 'nvme-6.15-2025-05-08' of git://git.infradead.org/nvme into block-6.15
Pull NVMe fix from Christoph: "nvme fixes for linux 6.15 - unblock ctrl state transition for firmware update (Daniel Wagner)" * tag 'nvme-6.15-2025-05-08' of git://git.infradead.org/nvme: nvme: unblock ctrl state transition for firmware update
2 parents c0d0a9f + 650415f commit dd90905

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

drivers/nvme/host/core.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4493,7 +4493,8 @@ static void nvme_fw_act_work(struct work_struct *work)
44934493
msleep(100);
44944494
}
44954495

4496-
if (!nvme_change_ctrl_state(ctrl, NVME_CTRL_LIVE))
4496+
if (!nvme_change_ctrl_state(ctrl, NVME_CTRL_CONNECTING) ||
4497+
!nvme_change_ctrl_state(ctrl, NVME_CTRL_LIVE))
44974498
return;
44984499

44994500
nvme_unquiesce_io_queues(ctrl);

0 commit comments

Comments
 (0)