[PATCH 086/118] drbd: Converted drbd_do_handshake() from mdev to tconn

From: Philipp Reisner
Date: Thu Aug 25 2011 - 11:17:58 EST


Signed-off-by: Philipp Reisner <philipp.reisner@xxxxxxxxxx>
Signed-off-by: Lars Ellenberg <lars.ellenberg@xxxxxxxxxx>
---
drivers/block/drbd/drbd_receiver.c | 30 +++++++++++++++---------------
1 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/drivers/block/drbd/drbd_receiver.c b/drivers/block/drbd/drbd_receiver.c
index 4369651..7c6c385 100644
--- a/drivers/block/drbd/drbd_receiver.c
+++ b/drivers/block/drbd/drbd_receiver.c
@@ -60,7 +60,7 @@ enum finish_epoch {
FE_RECYCLED,
};

-static int drbd_do_handshake(struct drbd_conf *mdev);
+static int drbd_do_handshake(struct drbd_tconn *tconn);
static int drbd_do_auth(struct drbd_conf *mdev);

static enum finish_epoch drbd_may_finish_epoch(struct drbd_conf *, struct drbd_epoch *, enum epoch_event);
@@ -883,7 +883,7 @@ retry:

D_ASSERT(mdev->tconn->asender.task == NULL);

- h = drbd_do_handshake(mdev);
+ h = drbd_do_handshake(mdev->tconn);
if (h <= 0)
return h;

@@ -3994,39 +3994,39 @@ static int drbd_send_handshake(struct drbd_tconn *tconn)
* -1 peer talks different language,
* no point in trying again, please go standalone.
*/
-static int drbd_do_handshake(struct drbd_conf *mdev)
+static int drbd_do_handshake(struct drbd_tconn *tconn)
{
- /* ASSERT current == mdev->tconn->receiver ... */
- struct p_handshake *p = &mdev->tconn->data.rbuf.handshake;
+ /* ASSERT current == tconn->receiver ... */
+ struct p_handshake *p = &tconn->data.rbuf.handshake;
const int expect = sizeof(struct p_handshake) - sizeof(struct p_header80);
struct packet_info pi;
int rv;

- rv = drbd_send_handshake(mdev->tconn);
+ rv = drbd_send_handshake(tconn);
if (!rv)
return 0;

- rv = drbd_recv_header(mdev->tconn, &pi);
+ rv = drbd_recv_header(tconn, &pi);
if (!rv)
return 0;

if (pi.cmd != P_HAND_SHAKE) {
- dev_err(DEV, "expected HandShake packet, received: %s (0x%04x)\n",
+ conn_err(tconn, "expected HandShake packet, received: %s (0x%04x)\n",
cmdname(pi.cmd), pi.cmd);
return -1;
}

if (pi.size != expect) {
- dev_err(DEV, "expected HandShake length: %u, received: %u\n",
+ conn_err(tconn, "expected HandShake length: %u, received: %u\n",
expect, pi.size);
return -1;
}

- rv = drbd_recv(mdev->tconn, &p->head.payload, expect);
+ rv = drbd_recv(tconn, &p->head.payload, expect);

if (rv != expect) {
if (!signal_pending(current))
- dev_warn(DEV, "short read receiving handshake packet: l=%u\n", rv);
+ conn_warn(tconn, "short read receiving handshake packet: l=%u\n", rv);
return 0;
}

@@ -4039,15 +4039,15 @@ static int drbd_do_handshake(struct drbd_conf *mdev)
PRO_VERSION_MIN > p->protocol_max)
goto incompat;

- mdev->tconn->agreed_pro_version = min_t(int, PRO_VERSION_MAX, p->protocol_max);
+ tconn->agreed_pro_version = min_t(int, PRO_VERSION_MAX, p->protocol_max);

- dev_info(DEV, "Handshake successful: "
- "Agreed network protocol version %d\n", mdev->tconn->agreed_pro_version);
+ conn_info(tconn, "Handshake successful: "
+ "Agreed network protocol version %d\n", tconn->agreed_pro_version);

return 1;

incompat:
- dev_err(DEV, "incompatible DRBD dialects: "
+ conn_err(tconn, "incompatible DRBD dialects: "
"I support %d-%d, peer supports %d-%d\n",
PRO_VERSION_MIN, PRO_VERSION_MAX,
p->protocol_min, p->protocol_max);
--
1.7.4.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/