summaryrefslogtreecommitdiffstats
path: root/super1.c
diff options
context:
space:
mode:
authorNeil Brown <neilb@suse.de>2006-12-14 17:31:19 +1100
committerNeil Brown <neilb@suse.de>2006-12-14 17:31:19 +1100
commite336254463da8ffa9923118a9c802253d312b8bb (patch)
tree5e251e8b137c5103c6cd58a4338b27f0e783e39f /super1.c
parent758d3a8e7d3e0620d68d3b9e72ef0747319c6dac (diff)
downloadmdadm-e336254463da8ffa9923118a9c802253d312b8bb.tar.gz
mdadm-e336254463da8ffa9923118a9c802253d312b8bb.tar.xz
mdadm-e336254463da8ffa9923118a9c802253d312b8bb.zip
Change 'Device Size' to 'Used Dev Size'
because it only shows how much of each device is actually used, not how big they are.
Diffstat (limited to 'super1.c')
-rw-r--r--super1.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/super1.c b/super1.c
index 1890949..b7d1c99 100644
--- a/super1.c
+++ b/super1.c
@@ -174,7 +174,9 @@ static void examine_super1(void *sbv, char *homehost)
printf(" Raid Level : %s\n", c?c:"-unknown-");
printf(" Raid Devices : %d\n", __le32_to_cpu(sb->raid_disks));
printf("\n");
- printf(" Device Size : %llu%s\n", (unsigned long long)sb->data_size, human_size(sb->data_size<<9));
+ printf(" Used Dev Size : %llu%s\n",
+ (unsigned long long)sb->data_size,
+ human_size(sb->data_size<<9));
if (__le32_to_cpu(sb->level) >= 0) {
int ddsks=0;
switch(__le32_to_cpu(sb->level)) {