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 <mwilck@arcor.de>
Signed-off-by: NeilBrown <neilb@suse.de>
This commit is contained in:
mwilck@arcor.de 2013-08-02 00:35:15 +02:00 committed by NeilBrown
parent 0c5d6054e4
commit 9591a2de77
1 changed files with 1 additions and 7 deletions

View File

@ -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);