From 478dd5f173591914b41d87b8c6d035c32cac8d3e Mon Sep 17 00:00:00 2001 From: Jason Dillaman Date: Tue, 21 Jun 2016 14:56:43 -0400 Subject: [PATCH] librbd: flag image as updated after proxying maintenance op Fixes: http://tracker.ceph.com/issues/16404 Signed-off-by: Jason Dillaman --- src/librbd/Operations.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/librbd/Operations.cc b/src/librbd/Operations.cc index 222a281777bf..7dcf089532e2 100644 --- a/src/librbd/Operations.cc +++ b/src/librbd/Operations.cc @@ -235,6 +235,8 @@ struct C_InvokeAsyncRequest : public Context { ldout(cct, 20) << __func__ << ": r=" << r << dendl; if (r != -ETIMEDOUT && r != -ERESTART) { + image_ctx.state->handle_update_notification(); + complete(r); return; } -- 2.47.3