mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 02:21:47 +00:00
drbd: Converted drbd_do_handshake() from mdev to tconn
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com> Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
This commit is contained in:
parent
9ba7aa00ae
commit
65d11ed6f2
@ -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;
|
||||
|
||||
@ -3991,39 +3991,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;
|
||||
}
|
||||
|
||||
@ -4036,15 +4036,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);
|
||||
|
Loading…
Reference in New Issue
Block a user