diff options
author | Coly Li <colyli@suse.de> | 2020-05-27 07:01:55 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-05-27 14:19:36 +0300 |
commit | 0c8d3fceade2ab1bbac68bca013e62bfdb851d19 (patch) | |
tree | 447428c4f4da0625f557cd9c1ad4f97c84b38f95 /drivers/md/bcache/Kconfig | |
parent | 9e23ccf8f0a22e5b86a9e0d8ecbb49fe2fa73ae9 (diff) | |
download | linux-0c8d3fceade2ab1bbac68bca013e62bfdb851d19.tar.xz |
bcache: configure the asynchronous registertion to be experimental
In order to avoid the experimental async registration interface to
be treated as new kernel ABI for common users, this patch makes it
as an experimental kernel configure BCACHE_ASYNC_REGISTRAION.
This interface is for extreme large cached data situation, to make sure
the bcache device can always created without the udev timeout issue. For
normal users the async or sync registration does not make difference.
In future when we decide to use the asynchronous registration as default
behavior, this experimental interface may be removed.
Signed-off-by: Coly Li <colyli@suse.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/md/bcache/Kconfig')
-rw-r--r-- | drivers/md/bcache/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/md/bcache/Kconfig b/drivers/md/bcache/Kconfig index 6dfa653d30db..bf7dd96db9b3 100644 --- a/drivers/md/bcache/Kconfig +++ b/drivers/md/bcache/Kconfig @@ -26,3 +26,12 @@ config BCACHE_CLOSURES_DEBUG Keeps all active closures in a linked list and provides a debugfs interface to list them, which makes it possible to see asynchronous operations that get stuck. + +config BCACHE_ASYNC_REGISTRAION + bool "Asynchronous device registration (EXPERIMENTAL)" + depends on BCACHE + help + Add a sysfs file /sys/fs/bcache/register_async. Writing registering + device path into this file will returns immediately and the real + registration work is handled in kernel work queue in asynchronous + way. |