]> git.baikalelectronics.ru Git - kernel.git/commit
nvme-tcp: avoid race between time out and tear down
authorChao Leng <lengchao@huawei.com>
Thu, 22 Oct 2020 02:15:15 +0000 (10:15 +0800)
committerChristoph Hellwig <hch@lst.de>
Tue, 3 Nov 2020 09:26:02 +0000 (10:26 +0100)
commit0874a699157dc472574d17acabb7ef04c7a16c83
tree856376e07969f38cda1795b6c7ca46043d50630b
parentd6be6bf350f29a63ee87314bd3d54860897d160d
nvme-tcp: avoid race between time out and tear down

Now use teardown_lock to serialize for time out and tear down. This may
cause abnormal: first cancel all request in tear down, then time out may
complete the request again, but the request may already be freed or
restarted.

To avoid race between time out and tear down, in tear down process,
first we quiesce the queue, and then delete the timer and cancel
the time out work for the queue. At the same time we need to delete
teardown_lock.

Signed-off-by: Chao Leng <lengchao@huawei.com>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Christoph Hellwig <hch@lst.de>
drivers/nvme/host/tcp.c