Assemble.c Don't ignore faulty disk when array is auto assembled.

Since commit 20dc76d15b ("imsm: Set disk slot number") mdadm
sets slot number for each disk in imsm array. Now auto-assemble determines
devices using slot number and ignores devices on the same slot that have
older generation number.
It causes infinit loop if failed device is still visible in system
(it has metadata, but it is not merged with exisiting array).

To avoid it, out-of-sync device should be added to the best[]. Later
mdadm adds it as spare to the container.

Imsm doesn't support disk replacement feature, so it can use rooms for
replacements.

Signed-off-by: Mariusz Tkaczyk <mariusz.tkaczyk@intel.com>
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
This commit is contained in:
Mariusz Tkaczyk 2018-06-07 14:47:47 +02:00 committed by Jes Sorensen
parent 28156667e5
commit 7298c9a6fa
1 changed files with 2 additions and 0 deletions

View File

@ -779,6 +779,8 @@ static int load_devices(struct devs *devices, char *devmap,
if (best[i] == -1 || (devices[best[i]].i.events
< devices[devcnt].i.events))
best[i] = devcnt;
else if (st->ss == &super_imsm)
best[i+1] = devcnt;
}
devcnt++;
}