From 5a4441c38c211c4b10318d9e7a96d46eeda1ee0e Mon Sep 17 00:00:00 2001 From: xie xingguo Date: Mon, 6 Mar 2017 15:34:49 +0800 Subject: [PATCH] OSD: fix func name in log produced by handle_pg_peering_evt() Signed-off-by: xie xingguo --- src/osd/OSD.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); -- 2.47.3