]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
crimson/os/seastore/transaction: cleanup comments
authorYingxin Cheng <yingxin.cheng@intel.com>
Tue, 28 Sep 2021 07:02:54 +0000 (15:02 +0800)
committerYingxin Cheng <yingxin.cheng@intel.com>
Tue, 28 Sep 2021 08:31:08 +0000 (16:31 +0800)
Signed-off-by: Yingxin Cheng <yingxin.cheng@intel.com>
src/crimson/os/seastore/transaction.h

index 9b280ef4aa11e41eac2ccb08d558620cbf0c1385..fe4adb9d6ad79a763fad9920a79b26e0954ce1be 100644 (file)
@@ -319,13 +319,14 @@ private:
    */
   ExtentIndex write_set;
 
-  /// list of fresh blocks, holds refcounts, subset of write_set
+  /**
+   * lists of fresh blocks, holds refcounts, subset of write_set
+   */
+  /// blocks that will be committed with journal record inline
   std::list<CachedExtentRef> inline_block_list;
-
-  /// list of fresh blocks, holds refcounts, subset of write_set
+  /// blocks that will be committed with out-of-line record
   std::list<CachedExtentRef> ool_block_list;
-
-  /// extents with delayed allocation, may become inline or ool
+  /// blocks with delayed allocation, may become inline or ool above
   std::list<LogicalCachedExtentRef> delayed_alloc_list;
 
   /// list of mutated blocks, holds refcounts, subset of write_set
@@ -338,6 +339,7 @@ private:
    */
   pextent_set_t retired_set;
 
+  /// stats to collect when commit or invalidate
   tree_stats_t onode_tree_stats;
   tree_stats_t lba_tree_stats;