]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
drbd: only generate and send a new sync uuid after a successful state change
authorLars Ellenberg <lars.ellenberg@linbit.com>
Wed, 12 Jan 2011 10:51:13 +0000 (11:51 +0100)
committerPhilipp Reisner <philipp.reisner@linbit.com>
Thu, 10 Mar 2011 10:47:52 +0000 (11:47 +0100)
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
drivers/block/drbd/drbd_worker.c

index 7b3d4dc4af84b96d085931a8c055fa7b4316e493..ec42e04bb517708cf537a8db5588f3debd19e75d 100644 (file)
@@ -1544,24 +1544,23 @@ void drbd_start_resync(struct drbd_conf *mdev, enum drbd_conns side)
        }
        write_unlock_irq(&global_state_lock);
 
-       if (side == C_SYNC_TARGET)
-               mdev->bm_resync_fo = 0;
-
-       /* Since protocol 96, we must serialize drbd_gen_and_send_sync_uuid
-        * with w_send_oos, or the sync target will get confused as to
-        * how much bits to resync.  We cannot do that always, because for an
-        * empty resync and protocol < 95, we need to do it here, as we call
-        * drbd_resync_finished from here in that case.
-        * We drbd_gen_and_send_sync_uuid here for protocol < 96,
-        * and from after_state_ch otherwise. */
-       if (side == C_SYNC_SOURCE && mdev->agreed_pro_version < 96)
-               drbd_gen_and_send_sync_uuid(mdev);
-
        if (r == SS_SUCCESS) {
                dev_info(DEV, "Began resync as %s (will sync %lu KB [%lu bits set]).\n",
                     drbd_conn_str(ns.conn),
                     (unsigned long) mdev->rs_total << (BM_BLOCK_SHIFT-10),
                     (unsigned long) mdev->rs_total);
+               if (side == C_SYNC_TARGET)
+                       mdev->bm_resync_fo = 0;
+
+               /* Since protocol 96, we must serialize drbd_gen_and_send_sync_uuid
+                * with w_send_oos, or the sync target will get confused as to
+                * how much bits to resync.  We cannot do that always, because for an
+                * empty resync and protocol < 95, we need to do it here, as we call
+                * drbd_resync_finished from here in that case.
+                * We drbd_gen_and_send_sync_uuid here for protocol < 96,
+                * and from after_state_ch otherwise. */
+               if (side == C_SYNC_SOURCE && mdev->agreed_pro_version < 96)
+                       drbd_gen_and_send_sync_uuid(mdev);
 
                if (mdev->agreed_pro_version < 95 && mdev->rs_total == 0) {
                        /* This still has a race (about when exactly the peers