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 <jsorensen@fb.com>
This commit is contained in:
Jes Sorensen 2017-05-09 17:09:40 -04:00
parent b98943a4f8
commit 8b0ebd6452
1 changed files with 9 additions and 6 deletions

15
sysfs.c
View File

@ -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<<MD_DISK_SYNC);
sra->array.active_disks++;
}
if (strstr(buf, "faulty")) {
dev->disk.state |= (1<<MD_DISK_FAULTY);
sra->array.failed_disks++;
} else {
sra->array.working_disks++;
if (strstr(buf, "in_sync")) {
dev->disk.state |= (1<<MD_DISK_SYNC);
sra->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");