diff options
author | akpm@osdl.org <akpm@osdl.org> | 2006-06-26 00:27:54 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-26 09:58:39 -0700 |
commit | b3cc9ec76ba44d010f4c820c4608b91aaf28a0b9 (patch) | |
tree | 69fc8168c27c616a1a9830c5b992a4221aad7afc /drivers/md/Kconfig | |
parent | 4d2554d045497d1be3204cf67385f966f01cc9bd (diff) | |
download | op-kernel-dev-b3cc9ec76ba44d010f4c820c4608b91aaf28a0b9.zip op-kernel-dev-b3cc9ec76ba44d010f4c820c4608b91aaf28a0b9.tar.gz |
[PATCH] md: Fix Kconfig error
RAID5 recently changed to RAID456
Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/md/Kconfig')
-rw-r--r-- | drivers/md/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/Kconfig b/drivers/md/Kconfig index 0fa55e4..bf869ed 100644 --- a/drivers/md/Kconfig +++ b/drivers/md/Kconfig @@ -137,7 +137,7 @@ config MD_RAID456 config MD_RAID5_RESHAPE bool "Support adding drives to a raid-5 array (experimental)" - depends on MD_RAID5 && EXPERIMENTAL + depends on MD_RAID456 && EXPERIMENTAL ---help--- A RAID-5 set can be expanded by adding extra drives. This requires "restriping" the array which means (almost) every |