diff options
author | Sage Weil <sage@newdream.net> | 2010-03-25 18:45:38 -0400 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2010-05-17 18:25:32 -0400 |
commit | dbad185d4939ffb806f6fa753ef9f470e3b72b62 (patch) | |
tree | 0d3aaa8f0028c8b4c7826ff2a9c292ca862cd64a /fs/ceph/messenger.c | |
parent | a5ee751c15016d0deee0d651e42a3b163ea73ade (diff) |
ceph: drop src address(es) from message header [new protocol feature]
The CEPH_FEATURE_NOSRCADDR protocol feature avoids putting the full source
address in each message header (twice). This patch switches the client to
the new scheme, and _requires_ this feature on the server. The server
will support both the old and new schemes. That means an old client will
work with a new server, but a new client will not work with an old server.
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph/messenger.c')
-rw-r--r-- | fs/ceph/messenger.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/fs/ceph/messenger.c b/fs/ceph/messenger.c index bb16edb1aef6..fe75ec7d8402 100644 --- a/fs/ceph/messenger.c +++ b/fs/ceph/messenger.c | |||
@@ -663,7 +663,7 @@ static void prepare_write_connect(struct ceph_messenger *msgr, | |||
663 | dout("prepare_write_connect %p cseq=%d gseq=%d proto=%d\n", con, | 663 | dout("prepare_write_connect %p cseq=%d gseq=%d proto=%d\n", con, |
664 | con->connect_seq, global_seq, proto); | 664 | con->connect_seq, global_seq, proto); |
665 | 665 | ||
666 | con->out_connect.features = CEPH_FEATURE_SUPPORTED; | 666 | con->out_connect.features = CEPH_FEATURE_SUPPORTED_CLIENT; |
667 | con->out_connect.host_type = cpu_to_le32(CEPH_ENTITY_TYPE_CLIENT); | 667 | con->out_connect.host_type = cpu_to_le32(CEPH_ENTITY_TYPE_CLIENT); |
668 | con->out_connect.connect_seq = cpu_to_le32(con->connect_seq); | 668 | con->out_connect.connect_seq = cpu_to_le32(con->connect_seq); |
669 | con->out_connect.global_seq = cpu_to_le32(global_seq); | 669 | con->out_connect.global_seq = cpu_to_le32(global_seq); |
@@ -1126,8 +1126,8 @@ static void fail_protocol(struct ceph_connection *con) | |||
1126 | 1126 | ||
1127 | static int process_connect(struct ceph_connection *con) | 1127 | static int process_connect(struct ceph_connection *con) |
1128 | { | 1128 | { |
1129 | u64 sup_feat = CEPH_FEATURE_SUPPORTED; | 1129 | u64 sup_feat = CEPH_FEATURE_SUPPORTED_CLIENT; |
1130 | u64 req_feat = CEPH_FEATURE_REQUIRED; | 1130 | u64 req_feat = CEPH_FEATURE_REQUIRED_CLIENT; |
1131 | u64 server_feat = le64_to_cpu(con->in_reply.features); | 1131 | u64 server_feat = le64_to_cpu(con->in_reply.features); |
1132 | 1132 | ||
1133 | dout("process_connect on %p tag %d\n", con, (int)con->in_tag); | 1133 | dout("process_connect on %p tag %d\n", con, (int)con->in_tag); |
@@ -1514,14 +1514,14 @@ static void process_message(struct ceph_connection *con) | |||
1514 | 1514 | ||
1515 | /* if first message, set peer_name */ | 1515 | /* if first message, set peer_name */ |
1516 | if (con->peer_name.type == 0) | 1516 | if (con->peer_name.type == 0) |
1517 | con->peer_name = msg->hdr.src.name; | 1517 | con->peer_name = msg->hdr.src; |
1518 | 1518 | ||
1519 | con->in_seq++; | 1519 | con->in_seq++; |
1520 | mutex_unlock(&con->mutex); | 1520 | mutex_unlock(&con->mutex); |
1521 | 1521 | ||
1522 | dout("===== %p %llu from %s%lld %d=%s len %d+%d (%u %u %u) =====\n", | 1522 | dout("===== %p %llu from %s%lld %d=%s len %d+%d (%u %u %u) =====\n", |
1523 | msg, le64_to_cpu(msg->hdr.seq), | 1523 | msg, le64_to_cpu(msg->hdr.seq), |
1524 | ENTITY_NAME(msg->hdr.src.name), | 1524 | ENTITY_NAME(msg->hdr.src), |
1525 | le16_to_cpu(msg->hdr.type), | 1525 | le16_to_cpu(msg->hdr.type), |
1526 | ceph_msg_type_name(le16_to_cpu(msg->hdr.type)), | 1526 | ceph_msg_type_name(le16_to_cpu(msg->hdr.type)), |
1527 | le32_to_cpu(msg->hdr.front_len), | 1527 | le32_to_cpu(msg->hdr.front_len), |
@@ -1987,9 +1987,7 @@ void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg) | |||
1987 | } | 1987 | } |
1988 | 1988 | ||
1989 | /* set src+dst */ | 1989 | /* set src+dst */ |
1990 | msg->hdr.src.name = con->msgr->inst.name; | 1990 | msg->hdr.src = con->msgr->inst.name; |
1991 | msg->hdr.src.addr = con->msgr->my_enc_addr; | ||
1992 | msg->hdr.orig_src = msg->hdr.src; | ||
1993 | 1991 | ||
1994 | BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len)); | 1992 | BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len)); |
1995 | 1993 | ||