From 47ddc266b5bd6bf29429f54774a58a1bb714e71f Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Sun, 24 Apr 2016 16:03:05 -0400 Subject: [PATCH] osd/osd_types: render notify OSDOp properly Signed-off-by: Sage Weil --- src/osd/osd_types.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/osd/osd_types.cc b/src/osd/osd_types.cc index c5f790653fd5..ef27b646a07f 100644 --- a/src/osd/osd_types.cc +++ b/src/osd/osd_types.cc @@ -5455,6 +5455,9 @@ ostream& operator<<(ostream& out, const OSDOp& op) if (op.op.watch.gen) out << " gen " << op.op.watch.gen; break; + case CEPH_OSD_OP_NOTIFY: + out << " cookie " << op.op.notify.cookie; + break; case CEPH_OSD_OP_COPY_GET: case CEPH_OSD_OP_COPY_GET_CLASSIC: out << " max " << op.op.copy_get.max; -- 2.47.3