md-cluster: show array's status more accurate
authorGuoqing Jiang <gqjiang@suse.com>
Mon, 2 Jul 2018 08:26:25 +0000 (16:26 +0800)
committerShaohua Li <shli@fb.com>
Thu, 5 Jul 2018 18:17:01 +0000 (11:17 -0700)
commit0357ba27bd611ff496390fdb172fdb31ca475398
tree76f17068447c1073018095d197a349bf661062eb
parent010228e4a932ca1e8365e3b58c8e1e44c16ff793
md-cluster: show array's status more accurate

When resync or recovery is happening in one node,
other nodes don't show the appropriate info now.

For example, when create an array in master node
without "--assume-clean", then assemble the array
in slave nodes, you can see "resync=PENDING" when
read /proc/mdstat in slave nodes. However, the info
is confusing since "PENDING" status is introduced
for start array in read-only mode.

We introduce RESYNCING_REMOTE flag to indicate that
resync thread is running in remote node. The flags
is set when node receive RESYNCING msg. And we clear
the REMOTE flag in following cases:

1. resync or recover is finished in master node,
   which means slaves receive msg with both lo
   and hi are set to 0.
2. node continues resync/recovery in recover_bitmaps.
3. when resync_finish is called.

Then we show accurate information in status_resync
by check REMOTE flags and with other conditions.

Signed-off-by: Guoqing Jiang <gqjiang@suse.com>
Reviewed-by: NeilBrown <neilb@suse.com>
Signed-off-by: Shaohua Li <shli@fb.com>
drivers/md/md-cluster.c
drivers/md/md.c
drivers/md/md.h