From: NeilBrown Date: Tue, 9 Mar 2010 05:15:29 +0000 (+1100) Subject: Make sure reshape_active is cleared by getinfo_super X-Git-Tag: mdadm-3.1.2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=624c5ad4cb7030f8039042ad442f919da8adad59;p=thirdparty%2Fmdadm.git Make sure reshape_active is cleared by getinfo_super There were cases where --detail would report phantom reshapes. Signed-off-by: NeilBrown --- diff --git a/super-ddf.c b/super-ddf.c index c2c562f1..b1cb2689 100644 --- a/super-ddf.c +++ b/super-ddf.c @@ -1434,6 +1434,7 @@ static void getinfo_super_ddf_bvd(struct supertype *st, struct mdinfo *info) info->recovery_start = MaxSector; info->resync_start = 0; + info->reshape_active = 0; if (!(ddf->virt->entries[info->container_member].state & DDF_state_inconsistent) && (ddf->virt->entries[info->container_member].init_state diff --git a/super-intel.c b/super-intel.c index bbdcb511..73b1db7e 100644 --- a/super-intel.c +++ b/super-intel.c @@ -1453,6 +1453,7 @@ static void getinfo_super_imsm_volume(struct supertype *st, struct mdinfo *info) info->component_size = __le32_to_cpu(map->blocks_per_member); memset(info->uuid, 0, sizeof(info->uuid)); info->recovery_start = MaxSector; + info->reshape_active = 0; if (map->map_state == IMSM_T_STATE_UNINITIALIZED || dev->vol.dirty) { info->resync_start = 0;