]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
crimson: fix typo OpsExecutor->OpsExecuter
authorSamuel Just <sjust@redhat.com>
Tue, 27 Aug 2024 19:08:10 +0000 (19:08 +0000)
committerSamuel Just <sjust@redhat.com>
Tue, 15 Oct 2024 03:37:26 +0000 (20:37 -0700)
Signed-off-by: Samuel Just <sjust@redhat.com>
src/crimson/osd/ops_executer.cc
src/crimson/osd/ops_executer.h
src/crimson/osd/pg_backend.cc

index 4464466eff0d76781158ef65864043700da78d02..0a07fa7ee293ee8d545d4b5685fbdd918b44fe26 100644 (file)
@@ -504,7 +504,7 @@ OpsExecuter::list_snaps_iertr::future<> OpsExecuter::do_list_snaps(
       auto p = ss.clone_snaps.find(clone);
       if (p == ss.clone_snaps.end()) {
        logger().error(
-         "OpsExecutor::do_list_snaps: {} has inconsistent "
+         "OpsExecuter::do_list_snaps: {} has inconsistent "
          "clone_snaps, missing clone {}",
          os.oi.soid,
          clone);
@@ -518,7 +518,7 @@ OpsExecuter::list_snaps_iertr::future<> OpsExecuter::do_list_snaps(
       auto p = ss.clone_overlap.find(clone);
       if (p == ss.clone_overlap.end()) {
        logger().error(
-         "OpsExecutor::do_list_snaps: {} has inconsistent "
+         "OpsExecuter::do_list_snaps: {} has inconsistent "
          "clone_overlap, missing clone {}",
          os.oi.soid,
          clone);
@@ -532,7 +532,7 @@ OpsExecuter::list_snaps_iertr::future<> OpsExecuter::do_list_snaps(
       auto p = ss.clone_size.find(clone);
       if (p == ss.clone_size.end()) {
        logger().error(
-         "OpsExecutor::do_list_snaps: {} has inconsistent "
+         "OpsExecuter::do_list_snaps: {} has inconsistent "
          "clone_size, missing clone {}",
          os.oi.soid,
          clone);
@@ -551,7 +551,7 @@ OpsExecuter::list_snaps_iertr::future<> OpsExecuter::do_list_snaps(
   }
   resp.seq = ss.seq;
   logger().error(
-    "OpsExecutor::do_list_snaps: {}, resp.clones.size(): {}",
+    "OpsExecuter::do_list_snaps: {}, resp.clones.size(): {}",
     os.oi.soid,
     resp.clones.size());
   resp.encode(osd_op.outdata);
index 0dea7d0515e933fd5e0a83082d2acb1b4fd3da00..e25a035616eddead814036f5a474d476e24154d4 100644 (file)
@@ -213,10 +213,10 @@ private:
    * execute_clone
    *
    * If snapc contains a snap which occurred logically after the last write
-   * seen by this object (see OpsExecutor::should_clone()), we first need
+   * seen by this object (see OpsExecuter::should_clone()), we first need
    * make a clone of the object at its current state.  execute_clone primes
    * txn with that clone operation and returns an
-   * OpsExecutor::CloningContext which will allow us to fill in the corresponding
+   * OpsExecuter::CloningContext which will allow us to fill in the corresponding
    * metadata and log_entries once the operations have been processed.
    *
    * Note that this strategy differs from classic, which instead performs this
index fa8201b61c28d3c36e5130144e621d09a7b77171..24a381b4cf7e24026a1f2040fc85654735e6dbd1 100644 (file)
@@ -1289,7 +1289,7 @@ void PGBackend::clone(
   const ObjectState& d_os,
   ceph::os::Transaction& txn)
 {
-  // See OpsExecutor::execute_clone documentation
+  // See OpsExecuter::execute_clone documentation
   txn.clone(coll->get_cid(), ghobject_t{os.oi.soid}, ghobject_t{d_os.oi.soid});
   {
     ceph::bufferlist bv;