]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mds: implement Mutation::dump method
authorPatrick Donnelly <pdonnell@redhat.com>
Tue, 14 Nov 2023 14:38:03 +0000 (09:38 -0500)
committerPatrick Donnelly <pdonnell@redhat.com>
Wed, 20 Mar 2024 14:56:52 +0000 (10:56 -0400)
So we can dump it from asok commands.

Signed-off-by: Patrick Donnelly <pdonnell@redhat.com>
src/mds/Mutation.h

index 2eb566e07bdff2624b6a68b0a52baf8796916c16..297524a28c025d796fd6a1019a7f537094f6ad28 100644 (file)
@@ -235,7 +235,9 @@ public:
     out << "mutation(" << this << ")";
   }
 
-  virtual void dump(ceph::Formatter *f) const {}
+  virtual void dump(ceph::Formatter *f) const {
+    _dump(f);
+  }
   void _dump_op_descriptor(std::ostream& stream) const override;
 
   metareqid_t reqid;