From: Jes Sorensen Date: Tue, 9 May 2017 21:09:40 +0000 (-0400) Subject: sysfs/sysfs_read: Count working_disks X-Git-Tag: mdadm-4.1-rc1~132 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b0ebd645202b627982eb3ed9fc72583c4f245d3;p=thirdparty%2Fmdadm.git sysfs/sysfs_read: Count working_disks This counts working_disks the same way as get_array_info counts it in the kernel. Signed-off-by: Jes Sorensen --- diff --git a/sysfs.c b/sysfs.c index f7967e88..e47f5e48 100644 --- a/sysfs.c +++ b/sysfs.c @@ -272,6 +272,7 @@ struct mdinfo *sysfs_read(int fd, char *devnm, unsigned long options) sra->array.spare_disks = 0; sra->array.active_disks = 0; sra->array.failed_disks = 0; + sra->array.working_disks = 0; devp = &sra->devs; sra->devs = NULL; @@ -358,16 +359,18 @@ struct mdinfo *sysfs_read(int fd, char *devnm, unsigned long options) strcpy(dbase, "state"); if (load_sys(fname, buf, sizeof(buf))) goto abort; - if (strstr(buf, "in_sync")) { - dev->disk.state |= (1<array.active_disks++; - } if (strstr(buf, "faulty")) { dev->disk.state |= (1<array.failed_disks++; + } else { + sra->array.working_disks++; + if (strstr(buf, "in_sync")) { + dev->disk.state |= (1<array.active_disks++; + } + if (dev->disk.state == 0) + sra->array.spare_disks++; } - if (dev->disk.state == 0) - sra->array.spare_disks++; } if (options & GET_ERROR) { strcpy(buf, "errors");