From: Przemyslaw Czarnowski Date: Sun, 26 Dec 2010 11:38:44 +0000 (+1100) Subject: Consider target only for spare-same-domain X-Git-Tag: mdadm-3.2~149 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fee6a49ee80d1c93f7345eb3420abd229438794f;p=thirdparty%2Fmdadm.git Consider target only for spare-same-domain otherwise, matching target will force spare-same-domain regardless of action that comes in domain. Signed-off-by: NeilBrown --- diff --git a/Incremental.c b/Incremental.c index 90fc3739..4ee19813 100644 --- a/Incremental.c +++ b/Incremental.c @@ -978,7 +978,8 @@ static int array_try_spare(char *devname, int *dfdp, struct dev_policy *pol, * array which matches 'target'. * target is considered only if we deal with degraded array */ - if (target) { + if (target && policy_action_allows(pol, st2->ss->name, + act_spare_same_slot)) { if (strcmp(target->metadata, mp->metadata) == 0 && memcmp(target->uuid, mp->uuid, sizeof(target->uuid)) == 0 &&