From a1236192111a8425e6c6d81c44103e9f4a2f465c Mon Sep 17 00:00:00 2001 From: NeilBrown Date: Mon, 2 Feb 2009 10:03:20 +1100 Subject: [PATCH] Fix the used device size in mdadm -D output. As get_component_size() returns the number of used sectors of a device we need halve before pringing as K, and shift the value by 9, not 10, before passing to human_size. Thanks to Andre Noll for identifying problem (and a slightly different version of this patch) Signed-off-by: NeilBrown --- Detail.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Detail.c b/Detail.c index 3cee66f..8f86ead 100644 --- a/Detail.c +++ b/Detail.c @@ -198,8 +198,8 @@ int Detail(char *dev, int brief, int export, int test, char *homehost) unsigned long long dsize = get_component_size(fd); if (dsize > 0) printf(" Used Dev Size : %llu%s\n", - dsize, - human_size((long long)dsize<<10)); + dsize/2, + human_size((long long)dsize<<9)); else printf(" Used Dev Size : unknown\n"); } else