From: Greg Farnum Date: Thu, 3 Apr 2014 21:24:22 +0000 (-0700) Subject: OSD: add handle_osd_map debug output X-Git-Tag: v0.81~57^2~46 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=63cc1ec19382dbc94ade6c6055b97fc59cf8af6f;p=ceph.git OSD: add handle_osd_map debug output Signed-off-by: Greg Farnum --- diff --git a/src/osd/OSD.cc b/src/osd/OSD.cc index 8c1c5975823..2ca8431f04e 100644 --- a/src/osd/OSD.cc +++ b/src/osd/OSD.cc @@ -5369,6 +5369,8 @@ void OSD::handle_osd_map(MOSDMap *m) Session *session = static_cast(m->get_connection()->get_priv()); if (session && !(session->entity_name.is_mon() || session->entity_name.is_osd())) { //not enough perms! + dout(10) << "got osd map from Session " << session + << " which we can't take maps from (not a mon or osd)" << dendl; m->put(); session->put(); return;