aboutsummaryrefslogtreecommitdiffstats
path: root/net/ceph/ceph_common.c
diff options
context:
space:
mode:
authorSage Weil <sage@inktank.com>2013-02-23 13:41:09 -0500
committerSage Weil <sage@inktank.com>2013-02-26 18:02:25 -0500
commit4f6a7e5ee1393ec4b243b39dac9f36992d161540 (patch)
tree547684ad1dc0e1e3e376e958ab74e164d6972623 /net/ceph/ceph_common.c
parentec73a754989c27628c9037887df919561280519c (diff)
ceph: update support for PGID64, PGPOOL3, OSDENC protocol features
Support (and require) the PGID64, PGPOOL3, and OSDENC protocol features. These have been present in ceph.git since v0.42, Feb 2012. Require these features to simplify support; nobody is running older userspace. Note that the new request and reply encoding is still not in place, so the new code is not yet functional. Signed-off-by: Sage Weil <sage@inktank.com> Reviewed-by: Alex Elder <elder@inktank.com>
Diffstat (limited to 'net/ceph/ceph_common.c')
-rw-r--r--net/ceph/ceph_common.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/net/ceph/ceph_common.c b/net/ceph/ceph_common.c
index c236c235c4a2..c5605ae96714 100644
--- a/net/ceph/ceph_common.c
+++ b/net/ceph/ceph_common.c
@@ -601,10 +601,8 @@ static int __init init_ceph_lib(void)
601 if (ret < 0) 601 if (ret < 0)
602 goto out_crypto; 602 goto out_crypto;
603 603
604 pr_info("loaded (mon/osd proto %d/%d, osdmap %d/%d %d/%d)\n", 604 pr_info("loaded (mon/osd proto %d/%d)\n",
605 CEPH_MONC_PROTOCOL, CEPH_OSDC_PROTOCOL, 605 CEPH_MONC_PROTOCOL, CEPH_OSDC_PROTOCOL);
606 CEPH_OSDMAP_VERSION, CEPH_OSDMAP_VERSION_EXT,
607 CEPH_OSDMAP_INC_VERSION, CEPH_OSDMAP_INC_VERSION_EXT);
608 606
609 return 0; 607 return 0;
610 608