mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 10:31:48 +00:00
drbd: drbd_get_data_sock(): Return 0 upon success and an error code otherwise
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com> Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
This commit is contained in:
parent
c0d42c8e57
commit
11b0be28e5
@ -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)
|
||||
|
@ -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) ==
|
||||
@ -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);
|
||||
@ -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) ?
|
||||
@ -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);
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user