From: Samuel Just Date: Mon, 28 Jun 2021 23:49:56 +0000 (-0700) Subject: crimson/os/seastore/ordering_handle: fix phase descriptions X-Git-Tag: v17.1.0~1509^2~2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=e7ac30f36ab7e3ee734d3abd7caf0c153aa7b4e1;p=ceph-ci.git crimson/os/seastore/ordering_handle: fix phase descriptions Signed-off-by: Samuel Just --- 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" }; };