From: NeilBrown Date: Mon, 16 Nov 2009 00:06:44 +0000 (+1100) Subject: Grow: data_offset is in sectors, offsets[] is in bytes - convert X-Git-Tag: mdadm-3.1.1~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14e5b4d72b4db55e688581d98ec47131554f747c;p=thirdparty%2Fmdadm.git Grow: data_offset is in sectors, offsets[] is in bytes - convert Another missed sectors->bytes conversion. Signed-off-by: NeilBrown --- diff --git a/Grow.c b/Grow.c index 27e0d702..36c35f9c 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");