From 7b10c6c3a1e61e9eb2e139cdef5e4fa38a1a717a Mon Sep 17 00:00:00 2001 From: Marov Aleksey Date: Thu, 3 Nov 2016 09:41:51 -0400 Subject: [PATCH] xio: compile fix removing undeclared 'features' This fix was proposed on ceph-devel and acked by Sage Weil. The corresponding change in in the later print is obvious from context. Signed-off-by: Matt Benjamin --- src/msg/xio/XioMessenger.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/msg/xio/XioMessenger.cc b/src/msg/xio/XioMessenger.cc index 52d22fb83a299..5743cc1e42ef5 100644 --- a/src/msg/xio/XioMessenger.cc +++ b/src/msg/xio/XioMessenger.cc @@ -378,13 +378,13 @@ XioMessenger::XioMessenger(CephContext *cct, entity_name_t name, /* update class instance count */ nInstances.inc(); - loop_con->set_features(features); + loop_con->set_features(CEPH_FEATURES_ALL); ldout(cct,2) << "Create msgr: " << this << " instance: " << nInstances.read() << " type: " << name.type_str() << " subtype: " << mname << " nportals: " << get_nportals(cflags) - << " nconns_per_portal: " << get_nconns_per_portal(cflags) << " features: " - << features << dendl; + << " nconns_per_portal: " << get_nconns_per_portal(cflags) + << dendl; } /* ctor */ -- 2.39.5