diff options
author | Jens Axboe <axboe@kernel.dk> | 2023-03-15 12:18:07 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2023-03-15 12:18:07 -0600 |
commit | 23e5b9307ede26e37c5a97f91d0b7f3f86c4182b (patch) | |
tree | 673fffad83ac91c1ed515d0fa9ee7cc293d59a40 /drivers/md/Kconfig | |
parent | 5f27571382ca42daa3e3d40d1b252bf18c2b61d2 (diff) | |
parent | 6c0f5898836c05c6d850a750ed7940ba29e4e6c5 (diff) |
Merge branch 'md-fixes' of https://git.kernel.org/pub/scm/linux/kernel/git/song/md into block-6.3
Pull MD fixes from Song:
"This set contains two fixes for old issues (by Neil) and one fix
for 6.3 (by Xiao)."
* 'md-fixes' of https://git.kernel.org/pub/scm/linux/kernel/git/song/md:
md: select BLOCK_LEGACY_AUTOLOAD
md: avoid signed overflow in slot_store()
md: Free resources in __md_stop
Diffstat (limited to 'drivers/md/Kconfig')
-rw-r--r-- | drivers/md/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/md/Kconfig b/drivers/md/Kconfig index 5f1e2593fad7..b0a22e99bade 100644 --- a/drivers/md/Kconfig +++ b/drivers/md/Kconfig @@ -15,6 +15,10 @@ if MD config BLK_DEV_MD tristate "RAID support" select BLOCK_HOLDER_DEPRECATED if SYSFS + # BLOCK_LEGACY_AUTOLOAD requirement should be removed + # after relevant mdadm enhancements - to make "names=yes" + # the default - are widely available. + select BLOCK_LEGACY_AUTOLOAD help This driver lets you combine several hard disk partitions into one logical block device. This can be used to simply append one |