summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2009-11-16 11:06:44 +1100
committerNeilBrown <neilb@suse.de>2009-11-16 11:06:44 +1100
commit14e5b4d72b4db55e688581d98ec47131554f747c (patch)
tree269f775d2e1303c4f0047a50789038f0154721b1
parent9ce510be9c71bae002a3b68ad138b164c908150a (diff)
downloadmdadm-14e5b4d72b4db55e688581d98ec47131554f747c.tar.gz
Grow: data_offset is in sectors, offsets[] is in bytes - convert
Another missed sectors->bytes conversion. Signed-off-by: NeilBrown <neilb@suse.de>
-rw-r--r--Grow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Grow.c b/Grow.c
index 27e0d70..36c35f9 100644
--- a/Grow.c
+++ b/Grow.c
@@ -1763,7 +1763,7 @@ int Grow_restart(struct supertype *st, struct mdinfo *info, int *fdlist, int cnt
continue;
st->ss->getinfo_super(st, &dinfo);
st->ss->free_super(st);
- offsets[j] = dinfo.data_offset;
+ offsets[j] = dinfo.data_offset * 512;
}
printf(Name ": restoring critical section\n");