summaryrefslogtreecommitdiff
path: root/net/ceph/messenger.c
diff options
context:
space:
mode:
authorIlya Dryomov <ilya.dryomov@inktank.com>2013-12-30 17:21:29 (GMT)
committerIlya Dryomov <ilya.dryomov@inktank.com>2013-12-31 18:32:30 (GMT)
commitf48db1e9ac6f1578ab7efef9f66c70279e2f0cb5 (patch)
tree3c6a017262e228c2346cc1233326ad58868a07a5 /net/ceph/messenger.c
parentcdff49918c8286ac18593e742ead25242c76c81d (diff)
downloadlinux-f48db1e9ac6f1578ab7efef9f66c70279e2f0cb5.tar.xz
libceph: use CEPH_MON_PORT when the specified port is 0
Similar to userspace, don't bail with "parse_ips bad ip ..." if the specified port is port 0, instead use port CEPH_MON_PORT (6789, the default monitor port). Signed-off-by: Ilya Dryomov <ilya.dryomov@inktank.com> Reviewed-by: Sage Weil <sage@inktank.com>
Diffstat (limited to 'net/ceph/messenger.c')
-rw-r--r--net/ceph/messenger.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/ceph/messenger.c b/net/ceph/messenger.c
index bd172e1..d2cadb5 100644
--- a/net/ceph/messenger.c
+++ b/net/ceph/messenger.c
@@ -1866,7 +1866,9 @@ int ceph_parse_ips(const char *c, const char *end,
port = (port * 10) + (*p - '0');
p++;
}
- if (port > 65535 || port == 0)
+ if (port == 0)
+ port = CEPH_MON_PORT;
+ else if (port > 65535)
goto bad;
} else {
port = CEPH_MON_PORT;