]> git.baikalelectronics.ru Git - kernel.git/commit
nbd: only clear the queue on device teardown
authorJosef Bacik <josef@toxicpanda.com>
Thu, 6 Apr 2017 21:02:03 +0000 (17:02 -0400)
committerJens Axboe <axboe@fb.com>
Mon, 17 Apr 2017 15:58:42 +0000 (09:58 -0600)
commit224211f0ee0e1fd5701759836e39355e6c1e3d8e
treef65a2a8d4dfe50b1b44357c3d7aba216f1c9ec18
parent64e5f834b259d86e02ef6ac43a6094bf6296c344
nbd: only clear the queue on device teardown

When running a disconnect torture test I noticed that sometimes we would
crash with a negative ref count on our queue.  This was because we were
ending the same request twice.  Turns out we were racing with
NBD_CLEAR_SOCK clearing the requests as well as the teardown of the
device clearing the requests.  So instead make the ioctl only shutdown
the sockets and make it so that we only ever run nbd_clear_que from the
device teardown.

Signed-off-by: Josef Bacik <jbacik@fb.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
drivers/block/nbd.c