summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeil Brown <neilb@suse.de>2006-06-26 12:26:12 +1000
committerNeil Brown <neilb@suse.de>2006-06-26 12:26:12 +1000
commit08110d41bc376e0a5724ab54b72a8793d03a79c0 (patch)
treedf59f09f9d160b57a76a1998c4eba3e4baf1d517
parent7eae7080e2e9edd69d31ae2c88d9e28d1c24217c (diff)
downloadmdadm-08110d41bc376e0a5724ab54b72a8793d03a79c0.tar.gz
mdadm-08110d41bc376e0a5724ab54b72a8793d03a79c0.tar.xz
mdadm-08110d41bc376e0a5724ab54b72a8793d03a79c0.zip
Fix a recently introduced bug, and make --assemble more resilient to it.
Make -assemble a bit more resilient to finding strange information in superblocks. Don't claim newly added spares are InSync!! (don't know why that code was ever in there)
-rw-r--r--Assemble.c4
-rw-r--r--ChangeLog4
-rw-r--r--super0.c2
3 files changed, 9 insertions, 1 deletions
diff --git a/Assemble.c b/Assemble.c
index aa7eeb2..90a9c57 100644
--- a/Assemble.c
+++ b/Assemble.c
@@ -499,6 +499,10 @@ int Assemble(struct supertype *st, char *mddev, int mdfd,
if (nextspare < info.array.raid_disks)
nextspare = info.array.raid_disks;
i = nextspare++;
+ } else {
+ if (i >= info.array.raid_disks &&
+ i >= nextspare)
+ nextspare = i+1;
}
if (i < 10000) {
if (i >= bestcnt) {
diff --git a/ChangeLog b/ChangeLog
index ecbb598..75e53bb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,10 @@ Changes Prior to this release
to make it a bit easier to see what is happening.
- Work around bug in --add handling for version-1 superblocks
in 2.6.17 (and prior).
+ - Make -assemble a bit more resilient to finding strange
+ information in superblocks.
+ - Don't claim newly added spares are InSync!! (don't know why that
+ code was ever in there)
Changes Prior to 2.5.1 release
- Various fixes for gcc warnings
diff --git a/super0.c b/super0.c
index 0f993a2..da6671d 100644
--- a/super0.c
+++ b/super0.c
@@ -350,6 +350,7 @@ static void getinfo_super0(struct mdinfo *info, void *sbv)
/* work_disks is calculated rather than read directly */
for (i=0; i < MD_SB_DISKS; i++)
if ((sb->disks[i].state & (1<<MD_DISK_SYNC)) &&
+ (sb->disks[i].raid_disk < info->array.raid_disks) &&
(sb->disks[i].state & (1<<MD_DISK_ACTIVE)) &&
!(sb->disks[i].state & (1<<MD_DISK_FAULTY)))
working ++;
@@ -647,7 +648,6 @@ static int write_init_super0(struct supertype *st, void *sbv, mdu_disk_info_t *d
}
sb->disks[dinfo->number].state &= ~(1<<MD_DISK_FAULTY);
- sb->disks[dinfo->number].state |= (1<<MD_DISK_SYNC);
sb->this_disk = sb->disks[dinfo->number];
sb->sb_csum = calc_sb0_csum(sb);