summaryrefslogtreecommitdiffstats
path: root/Assemble.c
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2009-11-17 12:30:54 +1100
committerNeilBrown <neilb@suse.de>2009-11-17 12:30:54 +1100
commitf22385f9826bcf35c8055c3b89b731f5760a46c5 (patch)
tree7fab61d87c2b2bbe8aaad4e642b8c083999ff094 /Assemble.c
parent14e5b4d72b4db55e688581d98ec47131554f747c (diff)
downloadmdadm-f22385f9826bcf35c8055c3b89b731f5760a46c5.tar.gz
mdadm-f22385f9826bcf35c8055c3b89b731f5760a46c5.tar.xz
mdadm-f22385f9826bcf35c8055c3b89b731f5760a46c5.zip
Assemble: include ACTIVE but not in-sync devices as non-spares.
Previously such things did not exist: ACTIVE and SYNC were either both set or both clear. Recent changes with reshape means that a device can be ACTIVE but not yet fully in-sync, so they need to be handled and included in the array as active devices. Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'Assemble.c')
-rw-r--r--Assemble.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Assemble.c b/Assemble.c
index a52dc50..a16cafe 100644
--- a/Assemble.c
+++ b/Assemble.c
@@ -777,7 +777,7 @@ int Assemble(struct supertype *st, char *mddev,
* as they don't make sense
*/
if (content->array.level != -4)
- if (!(devices[j].i.disk.state & (1<<MD_DISK_SYNC))) {
+ if (!(devices[j].i.disk.state & (1<<MD_DISK_ACTIVE))) {
if (!(devices[j].i.disk.state
& (1<<MD_DISK_FAULTY)))
sparecnt++;