From: NeilBrown Date: Thu, 29 Jul 2010 03:26:26 +0000 (+1000) Subject: Restore assembling of ddf containers. X-Git-Tag: mdadm-3.1.3~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=510242aa486d9c20ec639e150c0342c6bb07afe6;p=thirdparty%2Fmdadm.git Restore assembling of ddf containers. The container_enough code change broke ddf as ddf never claimed 'enough' devices. So change it to always claim 'enough' to restore previous behaviour. Signed-off-by: NeilBrown --- diff --git a/super-ddf.c b/super-ddf.c index 6dd3173e..5ecce743 100644 --- a/super-ddf.c +++ b/super-ddf.c @@ -1365,7 +1365,7 @@ static void getinfo_super_ddf(struct supertype *st, struct mdinfo *info) (ddf->anchor.guid+16)); info->array.utime = 0; info->array.chunk_size = 0; - info->container_enough = 0; + info->container_enough = 1; info->disk.major = 0;