Assemble: allow --force to work even when event counts are 0.

If any superblocks in a confused array had an event count of 0,
"mdadm -Af" would not update the event counts to assemble the array.
I don't remember why that text is there, and it has caused at least
one situation to be difficult to recover from.  So remove the
test.  --force means --force!

Signed-off-by: NeilBrown <neilb@suse.de>
This commit is contained in:
NeilBrown 2008-11-27 15:46:51 +11:00
parent 35e3446bfe
commit d555f10146
1 changed files with 0 additions and 2 deletions

View File

@ -632,7 +632,6 @@ int Assemble(struct supertype *st, char *mddev, int mdfd,
int j = best[i];
if (j>=0 &&
!devices[j].uptodate &&
devices[j].i.events > 0 &&
(chosen_drive < 0 ||
devices[j].i.events
> devices[chosen_drive].i.events))
@ -690,7 +689,6 @@ int Assemble(struct supertype *st, char *mddev, int mdfd,
int j = best[i];
if (j >= 0 &&
!devices[j].uptodate &&
devices[j].i.events > 0 &&
devices[j].i.events == current_events) {
chosen_drive = j;
goto add_another;