From: NeilBrown Date: Sun, 1 Feb 2009 23:03:20 +0000 (+1100) Subject: Fix the used device size in mdadm -D output. X-Git-Tag: mdadm-2.6.9~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1236192111a8425e6c6d81c44103e9f4a2f465c;p=thirdparty%2Fmdadm.git 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 --- diff --git a/Detail.c b/Detail.c index 3cee66fe..8f86ead8 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