]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
crimson/os/seastore/transaction: cleanup, drop unused getters
authorYingxin Cheng <yingxin.cheng@intel.com>
Mon, 22 Jul 2024 03:50:21 +0000 (11:50 +0800)
committerYingxin Cheng <yingxin.cheng@intel.com>
Tue, 6 Aug 2024 03:06:05 +0000 (11:06 +0800)
Signed-off-by: Yingxin Cheng <yingxin.cheng@intel.com>
src/crimson/os/seastore/transaction.h

index ed9e93e02fb09966be5456cd355bb3430bd28bbe..30f4290c772d41c56bd35856029685a0bbcc9556 100644 (file)
@@ -304,18 +304,6 @@ public:
     return inline_block_list;
   }
 
-  const auto &get_mutated_block_list() {
-    return mutated_block_list;
-  }
-
-  const auto &get_existing_block_list() {
-    return existing_block_list;
-  }
-
-  const auto &get_retired_set() {
-    return retired_set;
-  }
-
   bool is_retired(paddr_t paddr, extent_len_t len) {
     auto iter = retired_set.lower_bound(paddr);
     if (iter == retired_set.end()) {