diff options
author | Guoqing Jiang <jgq516@gmail.com> | 2021-05-25 11:46:23 +0200 |
---|---|---|
committer | Song Liu <song@kernel.org> | 2021-06-15 07:32:07 +0200 |
commit | 608f52e30aae7dc8da836e5b7b112d50a2d00e43 (patch) | |
tree | 2c5d661f4f1604b7bd249c6bd949c7a64ce35053 /drivers/md/Kconfig | |
parent | md/raid10: enable io accounting (diff) | |
download | linux-608f52e30aae7dc8da836e5b7b112d50a2d00e43.tar.xz linux-608f52e30aae7dc8da836e5b7b112d50a2d00e43.zip |
md: mark some personalities as deprecated
Mark the three personalities (linear, fault and multipath) as deprecated
because:
1. people can use dm multipath or nvme multipath.
2. linear is already deprecated in MODULE_ALIAS.
3. no one actively using fault.
Signed-off-by: Guoqing Jiang <jiangguoqing@kylinos.cn>
Signed-off-by: Song Liu <song@kernel.org>
Diffstat (limited to 'drivers/md/Kconfig')
-rw-r--r-- | drivers/md/Kconfig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/md/Kconfig b/drivers/md/Kconfig index f2014385d48b..0602e82a9516 100644 --- a/drivers/md/Kconfig +++ b/drivers/md/Kconfig @@ -47,7 +47,7 @@ config MD_AUTODETECT If unsure, say Y. config MD_LINEAR - tristate "Linear (append) mode" + tristate "Linear (append) mode (deprecated)" depends on BLK_DEV_MD help If you say Y here, then your multiple devices driver will be able to @@ -158,7 +158,7 @@ config MD_RAID456 If unsure, say Y. config MD_MULTIPATH - tristate "Multipath I/O support" + tristate "Multipath I/O support (deprecated)" depends on BLK_DEV_MD help MD_MULTIPATH provides a simple multi-path personality for use @@ -169,7 +169,7 @@ config MD_MULTIPATH If unsure, say N. config MD_FAULTY - tristate "Faulty test module for MD" + tristate "Faulty test module for MD (deprecated)" depends on BLK_DEV_MD help The "faulty" module allows for a block device that occasionally returns |