From: Marov Aleksey Date: Thu, 3 Nov 2016 13:41:51 +0000 (-0400) Subject: xio: compile fix removing undeclared 'features' X-Git-Tag: v11.1.0~431^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=7b10c6c3a1e61e9eb2e139cdef5e4fa38a1a717a;p=ceph.git 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 --- diff --git a/src/msg/xio/XioMessenger.cc b/src/msg/xio/XioMessenger.cc index 52d22fb83a29..5743cc1e42ef 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 */