]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
crimson/osd: s/OperationRepeatSequencer/OpSequencers/ 39598/head
authorKefu Chai <kchai@redhat.com>
Wed, 24 Feb 2021 08:14:28 +0000 (16:14 +0800)
committerKefu Chai <kchai@redhat.com>
Wed, 24 Feb 2021 08:53:07 +0000 (16:53 +0800)
as pointed out by Radoslaw Zarzynski,

> this is actually a registry of sequencers.

Signed-off-by: Kefu Chai <kchai@redhat.com>
src/crimson/osd/osd_connection_priv.h
src/crimson/osd/osd_operation_sequencer.h

index a0482077b57130d0753c9ea8927e8f504f578faa..1577565edd2ef5f5a19f29e458f2eec2b5b67a46 100644 (file)
@@ -12,7 +12,7 @@
 namespace crimson::osd {
 
 struct OSDConnectionPriv : public crimson::net::Connection::user_private_t {
-  OperationRepeatSequencer op_sequencer;
+  OpSequencers op_sequencer;
   ClientRequest::ConnectionPipeline client_request_conn_pipeline;
   RemotePeeringEvent::ConnectionPipeline peering_request_conn_pipeline;
   RepRequest::ConnectionPipeline replicated_request_conn_pipeline;
index 7e3ac7bd9209e758101dc2b5c43a11b71564d4ab..a175b918048445e65d147a89b3ae732eafd2e67c 100644 (file)
@@ -105,7 +105,7 @@ private:
   seastar::condition_variable unblocked;
 };
 
-class OperationRepeatSequencer {
+class OpSequencers {
 public:
   OpSequencer& get(const spg_t& pgid) {
     return pg_ops.at(pgid);