bcache: use delayed kworker fo asynchronous devices registration
authorColy Li <colyli@suse.de>
Sun, 14 Jun 2020 16:53:32 +0000 (00:53 +0800)
committerJens Axboe <axboe@kernel.dk>
Sun, 14 Jun 2020 22:47:56 +0000 (16:47 -0600)
commitee4a36f414617aaae01f93133e828363e7e9dd17
tree64b9b74b22788eaefcb03660514aa68408598741
parentdcacbc1242c71e18fa9d2eadc5647e115c9c627d
bcache: use delayed kworker fo asynchronous devices registration

This patch changes the asynchronous registration kworker to a delayed
kworker. There is probability queue_work() queues the async registration
kworker to the same CPU (even though very little), then the process
which writing sysfs interface to reigster bcache device may won't return
immeidately. queue_delayed_work() in this patch will delay 10 jiffies
before insert the kworker to run queue, which makes sure the registering
process may always returns to user space in time.

Fixes: 9e23ccf8f0a22 ("bcache: asynchronous devices registration")
Signed-off-by: Coly Li <colyli@suse.de>
Cc: Hannes Reinecke <hare@suse.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/md/bcache/super.c