From 529f1a81c7fb44fb475150fb7208b6d66345023c Mon Sep 17 00:00:00 2001 From: Yingxin Cheng Date: Tue, 28 Sep 2021 15:02:54 +0800 Subject: [PATCH] crimson/os/seastore/transaction: cleanup comments Signed-off-by: Yingxin Cheng --- src/crimson/os/seastore/transaction.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/crimson/os/seastore/transaction.h b/src/crimson/os/seastore/transaction.h index 9b280ef4aa11e..fe4adb9d6ad79 100644 --- a/src/crimson/os/seastore/transaction.h +++ b/src/crimson/os/seastore/transaction.h @@ -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 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 ool_block_list; - - /// extents with delayed allocation, may become inline or ool + /// blocks with delayed allocation, may become inline or ool above std::list 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; -- 2.39.5