1
0
mirror of https://github.com/ceph/ceph synced 2025-04-01 23:02:17 +00:00

crimson/os/seastore/ordering_handle: fix phase descriptions

Signed-off-by: Samuel Just <sjust@redhat.com>
This commit is contained in:
Samuel Just 2021-06-28 16:49:56 -07:00
parent a2b89dc01a
commit e7ac30f36a

View File

@ -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"
};
};