aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/net/ceph/decode.c
diff options
context:
space:
mode:
authorJeff Layton <jlayton@kernel.org>2019-06-17 06:57:25 -0400
committerIlya Dryomov <idryomov@gmail.com>2019-07-08 14:01:43 +0200
commitd3c3c0a841d5dafc5395be363996d619255a732f (patch)
tree866bd73f26ee2e136bfe11b6fb83b4d5e56d97c5 /net/ceph/decode.c
parentceph: fix decode_locker to use ceph_decode_entity_addr (diff)
downloadwireguard-linux-d3c3c0a841d5dafc5395be363996d619255a732f.tar.xz
wireguard-linux-d3c3c0a841d5dafc5395be363996d619255a732f.zip
libceph: use TYPE_LEGACY for entity addrs instead of TYPE_NONE
Going forward, we'll have different address types so let's use the addr2 TYPE_LEGACY for internal tracking rather than TYPE_NONE. Also, make ceph_pr_addr print the address type value as well. Signed-off-by: Jeff Layton <jlayton@kernel.org> Reviewed-by: "Yan, Zheng" <zyan@redhat.com> Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'net/ceph/decode.c')
-rw-r--r--net/ceph/decode.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/net/ceph/decode.c b/net/ceph/decode.c
index b82981199549..eea529595a7a 100644
--- a/net/ceph/decode.c
+++ b/net/ceph/decode.c
@@ -21,17 +21,6 @@ ceph_decode_entity_addr_versioned(void **p, void *end,
ceph_decode_copy_safe(p, end, &addr->type, sizeof(addr->type), bad);
- /*
- * TYPE_NONE == 0
- * TYPE_LEGACY == 1
- *
- * Clients that don't support ADDR2 always send TYPE_NONE.
- * For now, since all we support is msgr1, just set this to 0
- * when we get a TYPE_LEGACY type.
- */
- if (addr->type == cpu_to_le32(1))
- addr->type = 0;
-
ceph_decode_copy_safe(p, end, &addr->nonce, sizeof(addr->nonce), bad);
ceph_decode_32_safe(p, end, addr_len, bad);
@@ -61,7 +50,12 @@ ceph_decode_entity_addr_legacy(void **p, void *end,
/* Skip rest of type field */
ceph_decode_skip_n(p, end, 3, bad);
- addr->type = 0;
+
+ /*
+ * Clients that don't support ADDR2 always send TYPE_NONE, change it
+ * to TYPE_LEGACY for forward compatibility.
+ */
+ addr->type = CEPH_ENTITY_ADDR_TYPE_LEGACY;
ceph_decode_copy_safe(p, end, &addr->nonce, sizeof(addr->nonce), bad);
memset(&addr->in_addr, 0, sizeof(addr->in_addr));
ceph_decode_copy_safe(p, end, &addr->in_addr,