diff options
author | Neil Brown <neilb@suse.de> | 2006-06-26 04:26:12 +0200 |
---|---|---|
committer | Neil Brown <neilb@suse.de> | 2006-06-26 04:26:12 +0200 |
commit | 08110d41bc376e0a5724ab54b72a8793d03a79c0 (patch) | |
tree | df59f09f9d160b57a76a1998c4eba3e4baf1d517 | |
parent | Work around bug in --add handling for version-1 superblocks (diff) | |
download | 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.c | 4 | ||||
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | super0.c | 2 |
3 files changed, 9 insertions, 1 deletions
@@ -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) { @@ -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 @@ -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); |