From: xie xingguo Date: Mon, 6 Mar 2017 07:34:49 +0000 (+0800) Subject: OSD: fix func name in log produced by handle_pg_peering_evt() X-Git-Tag: v12.0.1~104^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=5a4441c38c211c4b10318d9e7a96d46eeda1ee0e;p=ceph.git OSD: fix func name in log produced by handle_pg_peering_evt() Signed-off-by: xie xingguo --- diff --git a/src/osd/OSD.cc b/src/osd/OSD.cc index 69930c1e9174..ca8ea3bcaa91 100644 --- a/src/osd/OSD.cc +++ b/src/osd/OSD.cc @@ -3680,7 +3680,7 @@ void OSD::handle_pg_peering_evt( pgid, history, epoch, up, up_primary, acting, acting_primary); if (!valid_history || epoch < history.same_interval_since) { - dout(10) << "get_or_create_pg " << pgid << " acting changed in " + dout(10) << __func__ << pgid << " acting changed in " << history.same_interval_since << " (msg from " << epoch << ")" << dendl; return; @@ -3809,7 +3809,7 @@ void OSD::handle_pg_peering_evt( } else { // already had it. did the mapping change? if (epoch < pg->info.history.same_interval_since) { - dout(10) << *pg << " get_or_create_pg acting changed in " + dout(10) << *pg << __func__ << " acting changed in " << pg->info.history.same_interval_since << " (msg from " << epoch << ")" << dendl; pg->unlock();