diff options
author | Heinz Mauelshagen <heinzm@redhat.com> | 2017-12-13 17:13:19 +0100 |
---|---|---|
committer | Mike Snitzer <snitzer@redhat.com> | 2017-12-13 11:57:36 -0500 |
commit | dc15b943d4651bc13b9737bb27283ad9d3b8eeba (patch) | |
tree | 013c3c46162f47651fa9eb372d171c486491a173 /drivers/md | |
parent | 11e4723206683ad59f8e9dc7771e7b44a37f7b62 (diff) |
dm raid: ensure 'a' chars during reshape
During reshape, 'A' chars were reported in status rather than 'a'.
Signed-off-by: Heinz Mauelshagen <heinzm@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/dm-raid.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/md/dm-raid.c b/drivers/md/dm-raid.c index 109b001407a8..af4f40de2c0b 100644 --- a/drivers/md/dm-raid.c +++ b/drivers/md/dm-raid.c @@ -3451,6 +3451,15 @@ static sector_t rs_get_progress(struct raid_set *rs, unsigned long recovery, */ set_bit(RT_FLAG_RS_RESYNCING, &rs->runtime_flags); + } else if (test_bit(MD_RECOVERY_RESHAPE, &recovery) && + !test_bit(MD_RECOVERY_REQUESTED, &recovery)) { + /* + * If "reshape" is occurring, the raid set + * is or may be out of sync hence the health + * characters shall be 'a'. + */ + set_bit(RT_FLAG_RS_RESYNCING, &rs->runtime_flags); + } else if (test_bit(MD_RECOVERY_REQUESTED, &recovery)) { /* * If "check" or "repair" is occurring, the raid set has |