diff options
author | Sagi Grimberg <sagi@grimberg.me> | 2019-04-30 02:25:48 +0300 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2019-05-01 16:17:15 +0300 |
commit | f34e25898a608380a60135288019c4cb6013bec8 (patch) | |
tree | d95adcdb665a4af0438de4bcc1e88b4d80c87360 /drivers/nvme | |
parent | 2d5abb9a1e8e92b25e781f0c3537a5b3b4b2f033 (diff) | |
download | linux-f34e25898a608380a60135288019c4cb6013bec8.tar.xz |
nvme-tcp: fix possible null deref on a timed out io queue connect
If I/O queue connect times out, we might have freed the queue socket
already, so check for that on the error path in nvme_tcp_start_queue.
Signed-off-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/nvme')
-rw-r--r-- | drivers/nvme/host/tcp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/nvme/host/tcp.c b/drivers/nvme/host/tcp.c index 2405bb9c63cc..2b107a1d152b 100644 --- a/drivers/nvme/host/tcp.c +++ b/drivers/nvme/host/tcp.c @@ -1423,7 +1423,8 @@ static int nvme_tcp_start_queue(struct nvme_ctrl *nctrl, int idx) if (!ret) { set_bit(NVME_TCP_Q_LIVE, &ctrl->queues[idx].flags); } else { - __nvme_tcp_stop_queue(&ctrl->queues[idx]); + if (test_bit(NVME_TCP_Q_ALLOCATED, &ctrl->queues[idx].flags)) + __nvme_tcp_stop_queue(&ctrl->queues[idx]); dev_err(nctrl->device, "failed to connect queue: %d ret=%d\n", idx, ret); } |