From 510242aa486d9c20ec639e150c0342c6bb07afe6 Mon Sep 17 00:00:00 2001 From: NeilBrown Date: Thu, 29 Jul 2010 13:26:26 +1000 Subject: [PATCH] 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 --- super-ddf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/super-ddf.c b/super-ddf.c index 6dd3173..5ecce74 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;