diff options
author | Lars Ellenberg <lars.ellenberg@linbit.com> | 2011-09-26 09:24:56 -0400 |
---|---|---|
committer | Philipp Reisner <philipp.reisner@linbit.com> | 2012-05-09 09:15:47 -0400 |
commit | 40424e4a24bc500639cb4bf1bf846362b0e692a5 (patch) | |
tree | 3747089f12567b97417121f01a7a0da19852da39 /drivers/block | |
parent | 1e86ac48af137a3cfd48cba727e7abe132dfc8de (diff) |
drbd: fix "stalled" empty resync
With sync-after dependencies, given "lucky" timing of pause/unpause
events, and the end of an empty (0 bits set) resync was sometimes not
detected on the SyncTarget, leading to a "stalled" SyncSource state.
Fixed this by expecting not only "Inconsistent -> UpToDate" but also
"Consistent -> UpToDate" transitions for the peer disk state
to end a resync.
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
Diffstat (limited to 'drivers/block')
-rw-r--r-- | drivers/block/drbd/drbd_receiver.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/drivers/block/drbd/drbd_receiver.c b/drivers/block/drbd/drbd_receiver.c index aa6c52c80e2e..1a48e02b83bc 100644 --- a/drivers/block/drbd/drbd_receiver.c +++ b/drivers/block/drbd/drbd_receiver.c | |||
@@ -3169,9 +3169,14 @@ static int receive_state(struct drbd_conf *mdev, enum drbd_packets cmd, unsigned | |||
3169 | os = ns = mdev->state; | 3169 | os = ns = mdev->state; |
3170 | spin_unlock_irq(&mdev->req_lock); | 3170 | spin_unlock_irq(&mdev->req_lock); |
3171 | 3171 | ||
3172 | /* peer says his disk is uptodate, while we think it is inconsistent, | 3172 | /* If this is the "end of sync" confirmation, usually the peer disk |
3173 | * and this happens while we think we have a sync going on. */ | 3173 | * transitions from D_INCONSISTENT to D_UP_TO_DATE. For empty (0 bits |
3174 | if (os.pdsk == D_INCONSISTENT && real_peer_disk == D_UP_TO_DATE && | 3174 | * set) resync started in PausedSyncT, or if the timing of pause-/ |
3175 | * unpause-sync events has been "just right", the peer disk may | ||
3176 | * transition from D_CONSISTENT to D_UP_TO_DATE as well. | ||
3177 | */ | ||
3178 | if ((os.pdsk == D_INCONSISTENT || os.pdsk == D_CONSISTENT) && | ||
3179 | real_peer_disk == D_UP_TO_DATE && | ||
3175 | os.conn > C_CONNECTED && os.disk == D_UP_TO_DATE) { | 3180 | os.conn > C_CONNECTED && os.disk == D_UP_TO_DATE) { |
3176 | /* If we are (becoming) SyncSource, but peer is still in sync | 3181 | /* If we are (becoming) SyncSource, but peer is still in sync |
3177 | * preparation, ignore its uptodate-ness to avoid flapping, it | 3182 | * preparation, ignore its uptodate-ness to avoid flapping, it |