From b751d4854aa8629f46f0e3dd835aff27b8be709d 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 (cherry picked from commit 478dd5f173591914b41d87b8c6d035c32cac8d3e) --- src/librbd/Operations.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/librbd/Operations.cc b/src/librbd/Operations.cc index 7766a1222f86..0fa190b1dcaa 100644 --- a/src/librbd/Operations.cc +++ b/src/librbd/Operations.cc @@ -233,6 +233,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