nvmet-rdma: update queue list during ib_device removal
authorIsrael Rukshin <israelr@mellanox.com>
Sun, 5 Nov 2017 08:43:01 +0000 (08:43 +0000)
committerJens Axboe <axboe@kernel.dk>
Sat, 11 Nov 2017 02:53:25 +0000 (19:53 -0700)
commit43b92fd27aaef0f529c9321cfebbaec1d7b8f503
tree8709595d742fd21f2f0afa4e77b1610e1a3d62a1
parent6ddcf0a30adc5080504ca66f474101e7ad247dd7
nvmet-rdma: update queue list during ib_device removal

A NULL deref happens when nvmet_rdma_remove_one() is called more than once
(e.g. while connected via 2 ports).
The first call frees the queues related to the first ib_device but
doesn't remove them from the queue list.
While calling nvmet_rdma_remove_one() for the second ib_device it goes over
the full queue list again and we get the NULL deref.

Fixes: f1d4ef7d ("nvmet-rdma: register ib_client to not deadlock in device removal")
Signed-off-by: Israel Rukshin <israelr@mellanox.com>
Reviewed-by: Max Gurtovoy <maxg@mellanox.com>
Reviewed-by: Sagi Grimberg <sagi@grmberg.me>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/nvme/target/rdma.c