]> git.karo-electronics.de Git - linux-beck.git/commitdiff
drbd: drbd_send_oos(): Return 0 upon success and an error code otherwise
authorAndreas Gruenbacher <agruen@linbit.com>
Wed, 16 Mar 2011 00:39:44 +0000 (01:39 +0100)
committerPhilipp Reisner <philipp.reisner@linbit.com>
Thu, 8 Nov 2012 15:44:40 +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_worker.c

index 779bf5b10d5a98a1b1f98b9c728ff3e5c111815f..93805354eec4c0b6506f67978f6583778953c847 100644 (file)
@@ -1640,7 +1640,7 @@ int drbd_send_oos(struct drbd_conf *mdev, struct drbd_request *req)
        p.sector  = cpu_to_be64(req->i.sector);
        p.blksize = cpu_to_be32(req->i.size);
 
-       return !drbd_send_cmd(mdev, &mdev->tconn->data, P_OUT_OF_SYNC, &p.head, sizeof(p));
+       return drbd_send_cmd(mdev, &mdev->tconn->data, P_OUT_OF_SYNC, &p.head, sizeof(p));
 }
 
 /*
index a529ffe213a6bb2c9af51129cdc48cd280245017..3a2c51fd8ea0a23014aebd3230e37702294aec34 100644 (file)
@@ -1241,7 +1241,7 @@ int w_send_oos(struct drbd_work *w, int cancel)
                return 1;
        }
 
-       ok = drbd_send_oos(mdev, req);
+       ok = !drbd_send_oos(mdev, req);
        req_mod(req, OOS_HANDED_TO_NETWORK);
 
        return ok;