Skip to content

Commit

Permalink
drbd: drbd_get_data_sock(): Return 0 upon success and an error code o…
Browse files Browse the repository at this point in the history
…therwise

Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
  • Loading branch information
Andreas Gruenbacher authored and Philipp Reisner committed Nov 8, 2012
1 parent c0d42c8 commit 11b0be2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 18 deletions.
17 changes: 4 additions & 13 deletions drivers/block/drbd/drbd_int.h
Original file line number Diff line number Diff line change
Expand Up @@ -1115,24 +1115,15 @@ static inline struct drbd_conf *vnr_to_mdev(struct drbd_tconn *tconn, int vnr)
return (struct drbd_conf *)idr_find(&tconn->volumes, vnr);
}

/* returns 1 if it was successful,
* returns 0 if there was no data socket.
* so wherever you are going to use the data.socket, e.g. do
* if (!drbd_get_data_sock(mdev->tconn))
* return 0;
* CODE();
* drbd_get_data_sock(mdev->tconn);
*/
static inline int drbd_get_data_sock(struct drbd_tconn *tconn)
{
mutex_lock(&tconn->data.mutex);
/* drbd_disconnect() could have called drbd_free_sock()
* while we were waiting in down()... */
if (unlikely(tconn->data.socket == NULL)) {
if (!tconn->data.socket) {
/* Disconnected. */
mutex_unlock(&tconn->data.mutex);
return 0;
return -EIO;
}
return 1;
return 0;
}

static inline void drbd_put_data_sock(struct drbd_tconn *tconn)
Expand Down
8 changes: 4 additions & 4 deletions drivers/block/drbd/drbd_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ int conn_send_cmd2(struct drbd_tconn *tconn, enum drbd_packet cmd, char *data,

prepare_header80(&h, cmd, size);

if (!drbd_get_data_sock(tconn))
if (drbd_get_data_sock(tconn))
return 0;

ok = (sizeof(h) ==
Expand Down Expand Up @@ -1245,7 +1245,7 @@ int drbd_send_bitmap(struct drbd_conf *mdev)
{
int err;

if (!drbd_get_data_sock(mdev->tconn))
if (drbd_get_data_sock(mdev->tconn))
return -1;
err = !_drbd_send_bitmap(mdev);
drbd_put_data_sock(mdev->tconn);
Expand Down Expand Up @@ -1562,7 +1562,7 @@ int drbd_send_dblock(struct drbd_conf *mdev, struct drbd_request *req)
void *dgb;
int dgs;

if (!drbd_get_data_sock(mdev->tconn))
if (drbd_get_data_sock(mdev->tconn))
return 0;

dgs = (mdev->tconn->agreed_pro_version >= 87 && mdev->tconn->integrity_w_tfm) ?
Expand Down Expand Up @@ -1652,7 +1652,7 @@ int drbd_send_block(struct drbd_conf *mdev, enum drbd_packet cmd,
* This one may be interrupted by DRBD_SIG and/or DRBD_SIGKILL
* in response to admin command or module unload.
*/
if (!drbd_get_data_sock(mdev->tconn))
if (drbd_get_data_sock(mdev->tconn))
return 0;

ok = sizeof(p) == drbd_send(mdev->tconn, mdev->tconn->data.socket, &p, sizeof(p), dgs ? MSG_MORE : 0);
Expand Down
2 changes: 1 addition & 1 deletion drivers/block/drbd/drbd_worker.c
Original file line number Diff line number Diff line change
Expand Up @@ -1209,7 +1209,7 @@ int w_send_barrier(struct drbd_work *w, int cancel)
if (cancel)
return 1;

if (!drbd_get_data_sock(mdev->tconn))
if (drbd_get_data_sock(mdev->tconn))
return 0;
p->barrier = b->br_number;
/* inc_ap_pending was done where this was queued.
Expand Down

0 comments on commit 11b0be2

Please sign in to comment.