]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
osd/OpRequest: drop useless helpers
authorSage Weil <sage@redhat.com>
Fri, 16 Dec 2016 17:13:40 +0000 (12:13 -0500)
committerSage Weil <sage@redhat.com>
Fri, 27 Jan 2017 15:30:44 +0000 (10:30 -0500)
No callers!

Signed-off-by: Sage Weil <sage@redhat.com>
src/osd/OpRequest.h

index f4b27ad45f4fe77c4c64c2e73ed6434e93cab5ab..65b8576052cf2d29f5e6792e3de3f42cc669b062 100644 (file)
@@ -137,18 +137,6 @@ public:
   epoch_t sent_epoch;
   bool hitset_inserted;
   Message *get_req() const { return request; }
-  bool been_queued_for_pg() { return hit_flag_points & flag_queued_for_pg; }
-  bool been_reached_pg() { return hit_flag_points & flag_reached_pg; }
-  bool been_delayed() { return hit_flag_points & flag_delayed; }
-  bool been_started() { return hit_flag_points & flag_started; }
-  bool been_sub_op_sent() { return hit_flag_points & flag_sub_op_sent; }
-  bool been_commit_sent() { return hit_flag_points & flag_commit_sent; }
-  bool currently_queued_for_pg() { return latest_flag_point & flag_queued_for_pg; }
-  bool currently_reached_pg() { return latest_flag_point & flag_reached_pg; }
-  bool currently_delayed() { return latest_flag_point & flag_delayed; }
-  bool currently_started() { return latest_flag_point & flag_started; }
-  bool currently_sub_op_sent() { return latest_flag_point & flag_sub_op_sent; }
-  bool currently_commit_sent() { return latest_flag_point & flag_commit_sent; }
 
   const char *state_string() const {
     switch(latest_flag_point) {