diff options
author | NeilBrown <neilb@suse.de> | 2007-07-17 07:06:11 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-17 13:23:15 -0400 |
commit | df968c4e8d809deb2602fb0e8db758f26a4006b9 (patch) | |
tree | e963a47e8d66fdbdcd83ff629b08d989e64d418a /drivers/md | |
parent | afd44034acdb54972923bb327bc9f984663ee78b (diff) |
md: improve message about invalid superblock during autodetect
People try to use raid auto-detect with version-1 superblocks (which is not
supported) and get confused when they are told they have an invalid
superblock.
So be more explicit, and say it it is not a valid v0.90 superblock.
Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/md.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c index 9aefc4a023df..3d5a6beb333b 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c | |||
@@ -2073,9 +2073,11 @@ static mdk_rdev_t *md_import_device(dev_t newdev, int super_format, int super_mi | |||
2073 | err = super_types[super_format]. | 2073 | err = super_types[super_format]. |
2074 | load_super(rdev, NULL, super_minor); | 2074 | load_super(rdev, NULL, super_minor); |
2075 | if (err == -EINVAL) { | 2075 | if (err == -EINVAL) { |
2076 | printk(KERN_WARNING | 2076 | printk(KERN_WARNING |
2077 | "md: %s has invalid sb, not importing!\n", | 2077 | "md: %s does not have a valid v%d.%d " |
2078 | bdevname(rdev->bdev,b)); | 2078 | "superblock, not importing!\n", |
2079 | bdevname(rdev->bdev,b), | ||
2080 | super_format, super_minor); | ||
2079 | goto abort_free; | 2081 | goto abort_free; |
2080 | } | 2082 | } |
2081 | if (err < 0) { | 2083 | if (err < 0) { |
@@ -5771,7 +5773,7 @@ static void autostart_arrays(int part) | |||
5771 | for (i = 0; i < dev_cnt; i++) { | 5773 | for (i = 0; i < dev_cnt; i++) { |
5772 | dev_t dev = detected_devices[i]; | 5774 | dev_t dev = detected_devices[i]; |
5773 | 5775 | ||
5774 | rdev = md_import_device(dev,0, 0); | 5776 | rdev = md_import_device(dev,0, 90); |
5775 | if (IS_ERR(rdev)) | 5777 | if (IS_ERR(rdev)) |
5776 | continue; | 5778 | continue; |
5777 | 5779 | ||