]> git.baikalelectronics.ru Git - kernel.git/commit
nbd: fix shutdown and recv work deadlock v2
authorMike Christie <mchristi@redhat.com>
Sun, 8 Dec 2019 22:51:50 +0000 (16:51 -0600)
committerJens Axboe <axboe@kernel.dk>
Mon, 16 Dec 2019 23:12:47 +0000 (16:12 -0700)
commit7ff54fed20c1b30564e817aaf70f64cb92c30c5c
tree54a8008a6f4727e4ed19a8910068fd7ee67171bf
parent1bbfb698f297e9ba308c477e4eaef19e8a87fefe
nbd: fix shutdown and recv work deadlock v2

This fixes a regression added with:

commit 0f7abac3d7496187c0db4e34dbbc29d04cf15786
Author: Mike Christie <mchristi@redhat.com>
Date:   Sun Aug 4 14:10:06 2019 -0500

    nbd: fix max number of supported devs

where we can deadlock during device shutdown. The problem occurs if
the recv_work's nbd_config_put occurs after nbd_start_device_ioctl has
returned and the userspace app has droppped its reference via closing
the device and running nbd_release. The recv_work nbd_config_put call
would then drop the refcount to zero and try to destroy the config which
would try to do destroy_workqueue from the recv work.

This patch just has nbd_start_device_ioctl do a flush_workqueue when it
wakes so we know after the ioctl returns running works have exited. This
also fixes a possible race where we could try to reuse the device while
old recv_works are still running.

Cc: stable@vger.kernel.org
Fixes: 0f7abac3d749 ("nbd: fix max number of supported devs")
Signed-off-by: Mike Christie <mchristi@redhat.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/block/nbd.c