From: Samuel Just Date: Mon, 2 May 2016 21:56:38 +0000 (-0700) Subject: PGLog: remove missing_got and missing_rm X-Git-Tag: ses5-milestone5~325^2~11 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=89af25635ec08fbe9f88a0403e5c5950fdd28ed2;p=ceph.git PGLog: remove missing_got and missing_rm Apparently not used. Signed-off-by: Samuel Just --- diff --git a/src/osd/PGLog.h b/src/osd/PGLog.h index 5491e5ae3370..167934fe3425 100644 --- a/src/osd/PGLog.h +++ b/src/osd/PGLog.h @@ -520,11 +520,6 @@ public: missing.resort(sort_bitwise); } - void missing_got(map::const_iterator m) { - map::iterator p = missing.missing.find(m->first); - missing.got(p); - } - void revise_have(hobject_t oid, eversion_t have) { missing.revise_have(oid, have); } @@ -537,11 +532,6 @@ public: missing.add(oid, need, have); } - void missing_rm(map::const_iterator m) { - map::iterator p = missing.missing.find(m->first); - missing.rm(p); - } - void missing_add_event(const pg_log_entry_t &e) { missing.add_next_event(e); }