From: Jes Sorensen Date: Fri, 5 May 2017 15:51:43 +0000 (-0400) Subject: sysfs/sysfs_read: Count active_disks and failed_disks X-Git-Tag: mdadm-4.1-rc1~152 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=64ec81da7a70adcdc0dbccaacc69aaf90edb4011;p=thirdparty%2Fmdadm.git sysfs/sysfs_read: Count active_disks and failed_disks Cound active_disks as drives mark 'in_sync' and failed_disks as disks marked 'faulty', in the same way ioctl(GET_ARRAY_INFO) does. Signed-off-by: Jes Sorensen --- diff --git a/sysfs.c b/sysfs.c index aa30de5c..f7967e88 100644 --- a/sysfs.c +++ b/sysfs.c @@ -270,6 +270,8 @@ struct mdinfo *sysfs_read(int fd, char *devnm, unsigned long options) if (!dir) goto abort; sra->array.spare_disks = 0; + sra->array.active_disks = 0; + sra->array.failed_disks = 0; devp = &sra->devs; sra->devs = NULL; @@ -356,10 +358,14 @@ 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")) + if (strstr(buf, "in_sync")) { dev->disk.state |= (1<array.active_disks++; + } + if (strstr(buf, "faulty")) { dev->disk.state |= (1<array.failed_disks++; + } if (dev->disk.state == 0) sra->array.spare_disks++; }