From: mwilck@arcor.de Date: Thu, 1 Aug 2013 22:35:15 +0000 (+0200) Subject: DDF: no need for GET_LAYOUT any more X-Git-Tag: mdadm-3.3~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9591a2de77fa405f7e7d728a8e6c623808f57432;p=thirdparty%2Fmdadm.git DDF: no need for GET_LAYOUT any more With the previous patch, mdmon will provide the layout property for us. Signed-off-by: Martin Wilck Signed-off-by: NeilBrown --- diff --git a/super-ddf.c b/super-ddf.c index 65472a28..7a7f5fe6 100644 --- a/super-ddf.c +++ b/super-ddf.c @@ -4697,16 +4697,10 @@ static int raid10_degraded(struct mdinfo *info) { int n_prim, n_bvds; int i; - struct mdinfo *d, *sra; + struct mdinfo *d; char *found; int ret = -1; - if (info->array.layout == 0) { - sra = sysfs_read(-1, info->sys_name, GET_LAYOUT); - info->array.layout = sra->array.layout; - free(sra); - } - n_prim = info->array.layout & ~0x100; n_bvds = info->array.raid_disks / n_prim; found = xmalloc(n_bvds);