From 8d69bf147ec77447c5d45c17bed7dc017808cc44 Mon Sep 17 00:00:00 2001 From: Oleksandr Shchirskyi Date: Fri, 18 Jun 2021 15:53:31 +0200 Subject: [PATCH 11/15] Remove Spare drives line from details for external metadata Arrays with external metadata do not have spare disks directly assigned to volumes; spare disks belong to containers and are moved to arrays when the array is degraded/reshaping. Thus, the display of zero spare disks in volume details is incorrect and can be confusing. Signed-off-by: Oleksandr Shchirskyi Signed-off-by: Jes Sorensen --- Detail.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Detail.c b/Detail.c index cd26fb0..ad56344 100644 --- a/Detail.c +++ b/Detail.c @@ -548,7 +548,8 @@ int Detail(char *dev, struct context *c) array.working_disks); if (array.raid_disks) { printf(" Failed Devices : %d\n", array.failed_disks); - printf(" Spare Devices : %d\n", array.spare_disks); + if (!external) + printf(" Spare Devices : %d\n", array.spare_disks); } printf("\n"); if (array.level == 5) { -- 2.7.5