]> git.baikalelectronics.ru Git - kernel.git/commit
nbd: fix max number of supported devs
authorMike Christie <mchristi@redhat.com>
Sun, 4 Aug 2019 19:10:06 +0000 (14:10 -0500)
committerJens Axboe <axboe@kernel.dk>
Tue, 20 Aug 2019 18:44:07 +0000 (12:44 -0600)
commit0f7abac3d7496187c0db4e34dbbc29d04cf15786
treeeaf48cfb759c44b0a4117fe5ddaad8071cf22268
parent1c599a584be6b95949524e66d056928c4ce049de
nbd: fix max number of supported devs

This fixes a bug added in 4.10 with commit:

commit 9adc2ef378b8eb3f904517eeea7101f54a740f5c
Author: Josef Bacik <jbacik@fb.com>
Date:   Tue Nov 22 14:04:40 2016 -0500

    nbd: add multi-connection support

that limited the number of devices to 256. Before the patch we could
create 1000s of devices, but the patch switched us from using our
own thread to using a work queue which has a default limit of 256
active works.

The problem is that our recv_work function sits in a loop until
disconnection but only handles IO for one connection. The work is
started when the connection is started/restarted, but if we end up
creating 257 or more connections, the queue_work call just queues
connection257+'s recv_work and that waits for connection 1 - 256's
recv_work to be disconnected and that work instance completing.

Instead of reverting back to kthreads, this has us allocate a
workqueue_struct per device, so we can block in the work.

Cc: stable@vger.kernel.org
Reviewed-by: Josef Bacik <josef@toxicpanda.com>
Signed-off-by: Mike Christie <mchristi@redhat.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/block/nbd.c