From: Sage Weil Date: Fri, 30 Mar 2012 15:45:52 +0000 (-0700) Subject: osd: more heartbeat debug X-Git-Tag: v0.45~28^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3cdd8d58b2da607daeadacc73ba05974c91fc2ed;p=ceph.git osd: more heartbeat debug Signed-off-by: Sage Weil --- diff --git a/src/osd/OSD.cc b/src/osd/OSD.cc index efb05573d4e3..5a2c8cd6a332 100644 --- a/src/osd/OSD.cc +++ b/src/osd/OSD.cc @@ -1555,6 +1555,11 @@ void OSD::handle_osd_ping(MOSDPing *m) { map::iterator i = heartbeat_peers.find(from); if (i != heartbeat_peers.end()) { + dout(25) << "handle_osd_ping got reply from osd." << from + << " first_rx " << i->second.first_tx + << " last_tx " << i->second.last_tx + << " last_rx " << i->second.last_rx << " -> " << m->stamp + << dendl; i->second.last_rx = m->stamp; }