From eb8b951657cccfb0213bf11cf7458650c1346939 Mon Sep 17 00:00:00 2001 From: NeilBrown Date: Thu, 28 Nov 2013 13:33:56 +1100 Subject: [PATCH] Incremental: don't abort container if one member explicitly disabled. If a member of a container is explicitly disabled, others may not be so we should continue. Signed-off-by: NeilBrown --- Incremental.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Incremental.c b/Incremental.c index 68080957..d082e61d 100644 --- a/Incremental.c +++ b/Incremental.c @@ -1534,7 +1534,7 @@ static int Incremental_container(struct supertype *st, char *devname, pr_err("array %s/%s is " "explicitly ignored by mdadm.conf\n", match->container, match->member); - return 2; + continue; } if (match) trustworthy = LOCAL; -- 2.39.2