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 <mbenjamin@redhat.com>
This commit is contained in:
Marov Aleksey 2016-11-03 09:41:51 -04:00 committed by Matt Benjamin
parent ccfc644f80
commit 7b10c6c3a1

View File

@ -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 */