From: Sage Weil Date: Tue, 31 Jan 2017 17:31:42 +0000 (-0500) Subject: mon/PGMonitor: fix force_create_pg X-Git-Tag: v12.0.1~465^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F12539%2Fhead;p=ceph.git mon/PGMonitor: fix force_create_pg We weren't carefully registering the creating PG. In particular, the current osd mappings (acting, up, etc.) weren't getting filled in, which meant the PG wasn't (necessarily) mapped to an OSD until the OSDMap updated and we recalculated mappings. Fix by sending us through the common code path so that all fields get updated properly. Fixes: http://tracker.ceph.com/issues/18298 Signed-off-by: Sage Weil --- diff --git a/src/mon/PGMap.h b/src/mon/PGMap.h index 7787d6cbb02..1c86ab3afff 100644 --- a/src/mon/PGMap.h +++ b/src/mon/PGMap.h @@ -412,7 +412,6 @@ public: PGMap *pg_map, PGMap::Incremental *pending_inc); -protected: static void register_pg( const OSDMap &osd_map, pg_t pgid, epoch_t epoch, diff --git a/src/mon/PGMonitor.cc b/src/mon/PGMonitor.cc index 13e342b2bf5..d1c241e3700 100644 --- a/src/mon/PGMonitor.cc +++ b/src/mon/PGMonitor.cc @@ -1381,10 +1381,13 @@ bool PGMonitor::prepare_command(MonOpRequestRef op) goto reply; } { - pg_stat_t& s = pending_inc.pg_stat_updates[pgid]; - s.state = PG_STATE_CREATING; - s.created = epoch; - s.last_change = ceph_clock_now(); + PGMapUpdater::register_pg( + mon->osdmon()->osdmap, + pgid, + epoch, + true, + &pg_map, + &pending_inc); } ss << "pg " << pgidstr << " now creating, ok"; goto update;