nvme-tcp: fix reset hang if controller died in the middle of a reset
authorSagi Grimberg <sagi@grimberg.me>
Thu, 30 Jul 2020 20:25:34 +0000 (13:25 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 17 Sep 2020 11:55:35 +0000 (13:55 +0200)
commited67604770cd486482da46c8f5c7d5c613d4becb
tree6556b1cb4a9529068a6749e460c6995c64f4cff2
parent18aca936e2fffd06a330dc5d88ec31fbed22901f
nvme-tcp: fix reset hang if controller died in the middle of a reset

[ Upstream commit e5c01f4f7f623e768e868bcc08d8e7ceb03b75d0 ]

If the controller becomes unresponsive in the middle of a reset, we will
hang because we are waiting for the freeze to complete, but that cannot
happen since we have commands that are inflight holding the
q_usage_counter, and we can't blindly fail requests that times out.

So give a timeout and if we cannot wait for queue freeze before
unfreezing, fail and have the error handling take care how to proceed
(either schedule a reconnect of remove the controller).

Signed-off-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/nvme/host/tcp.c