]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
drbd: drbd_send_uuids() and its variants: Return 0 upon success and an error code...
authorAndreas Gruenbacher <agruen@linbit.com>
Wed, 16 Mar 2011 00:07:20 +0000 (01:07 +0100)
committerPhilipp Reisner <philipp.reisner@linbit.com>
Thu, 8 Nov 2012 15:44:34 +0000 (16:44 +0100)
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
drivers/block/drbd/drbd_main.c
drivers/block/drbd/drbd_receiver.c

index 29b993b9b8d750d2029ca56e8d83143cc7850b3d..95586870001aac2d93c89da16e2e911629354a66 100644 (file)
@@ -872,7 +872,7 @@ int _drbd_send_uuids(struct drbd_conf *mdev, u64 uuid_flags)
        int i;
 
        if (!get_ldev_if_state(mdev, D_NEGOTIATING))
-               return 1;
+               return 0;
 
        for (i = UI_CURRENT; i < UI_SIZE; i++)
                p.uuid[i] = mdev->ldev ? cpu_to_be64(mdev->ldev->md.uuid[i]) : 0;
@@ -886,7 +886,7 @@ int _drbd_send_uuids(struct drbd_conf *mdev, u64 uuid_flags)
 
        put_ldev(mdev);
 
-       return !drbd_send_cmd(mdev, &mdev->tconn->data, P_UUIDS, &p.head, sizeof(p));
+       return drbd_send_cmd(mdev, &mdev->tconn->data, P_UUIDS, &p.head, sizeof(p));
 }
 
 int drbd_send_uuids(struct drbd_conf *mdev)
index 222fca535e930902a8571ae8ed67fc422725a907..1403e4b18a28fc110de1063325a7d2f207508f3e 100644 (file)
@@ -765,7 +765,7 @@ int drbd_connected(int vnr, void *p, void *data)
 
        ok &= !drbd_send_sync_param(mdev);
        ok &= drbd_send_sizes(mdev, 0, 0);
-       ok &= drbd_send_uuids(mdev);
+       ok &= !drbd_send_uuids(mdev);
        ok &= !drbd_send_state(mdev);
        clear_bit(USE_DEGR_WFC_T, &mdev->flags);
        clear_bit(RESIZE_PENDING, &mdev->flags);