From e336254463da8ffa9923118a9c802253d312b8bb Mon Sep 17 00:00:00 2001 From: Neil Brown Date: Thu, 14 Dec 2006 17:31:19 +1100 Subject: Change 'Device Size' to 'Used Dev Size' because it only shows how much of each device is actually used, not how big they are. --- Detail.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'Detail.c') diff --git a/Detail.c b/Detail.c index 832e0d8..42e9907 100644 --- a/Detail.c +++ b/Detail.c @@ -168,11 +168,14 @@ int Detail(char *dev, int brief, int test, char *homehost) (larray_size >= 0xFFFFFFFFULL|| array.size == 0)) { unsigned long long dsize = get_component_size(fd); if (dsize > 0) - printf(" Device Size : %llu%s\n", dsize, human_size((long long)array.size<<10)); + printf(" Used Dev Size : %llu%s\n", + dsize, + human_size((long long)array.size<<10)); else - printf(" Device Size : unknown\n"); + printf(" Used Dev Size : unknown\n"); } else - printf(" Device Size : %d%s\n", array.size, human_size((long long)array.size<<10)); + printf(" Used Dev Size : %d%s\n", array.size, + human_size((long long)array.size<<10)); } printf(" Raid Devices : %d\n", array.raid_disks); printf(" Total Devices : %d\n", array.nr_disks); -- cgit