diff options
author | Sage Weil <sage@inktank.com> | 2013-01-02 22:04:08 -0800 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-01-02 22:04:08 -0800 |
commit | 67f7ee679958b84c27a8ca0796a691de7ebfc307 (patch) | |
tree | 17eed90bdd3bc2c41f36c4581e8277816d02a33f | |
parent | a14a36ed78d9febb7fbf1f6bf209d9bd58daace6 (diff) | |
download | ceph-67f7ee679958b84c27a8ca0796a691de7ebfc307.tar.gz |
osd: drop unused variables from activate_map
Signed-off-by: Sage Weil <sage@inktank.com>
-rw-r--r-- | src/osd/OSD.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/osd/OSD.cc b/src/osd/OSD.cc index 5c96c6df80e..80c20f96711 100644 --- a/src/osd/OSD.cc +++ b/src/osd/OSD.cc @@ -4141,10 +4141,6 @@ void OSD::activate_map() dout(7) << "activate_map version " << osdmap->get_epoch() << dendl; - map< int, vector<pair<pg_notify_t,pg_interval_map_t> > > notify_list; // primary -> list - map< int, map<pg_t,pg_query_t> > query_map; // peer -> PG -> get_summary_since - map<int,MOSDPGInfo*> info_map; // peer -> message - int num_pg_primary = 0, num_pg_replica = 0, num_pg_stray = 0; epoch_t oldest_last_clean = osdmap->get_epoch(); |