From e7ac30f36ab7e3ee734d3abd7caf0c153aa7b4e1 Mon Sep 17 00:00:00 2001 From: Samuel Just Date: Mon, 28 Jun 2021 16:49:56 -0700 Subject: [PATCH] crimson/os/seastore/ordering_handle: fix phase descriptions Signed-off-by: Samuel Just --- src/crimson/os/seastore/ordering_handle.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/crimson/os/seastore/ordering_handle.h b/src/crimson/os/seastore/ordering_handle.h index b7d526b6a4b..7afb22bb7d5 100644 --- a/src/crimson/os/seastore/ordering_handle.h +++ b/src/crimson/os/seastore/ordering_handle.h @@ -56,16 +56,16 @@ inline OrderingHandle get_dummy_ordering_handle() { struct WritePipeline { OrderedExclusivePhase wait_throttle{ - "TransactionManager::wait_throttle" + "WritePipeline::wait_throttle_phase" }; OrderedExclusivePhase prepare{ - "TransactionManager::prepare_phase" + "WritePipeline::prepare_phase" }; OrderedConcurrentPhase device_submission{ - "TransactionManager::journal_phase" + "WritePipeline::device_submission_phase" }; OrderedExclusivePhase finalize{ - "TransactionManager::finalize_phase" + "WritePipeline::finalize_phase" }; }; -- 2.39.5