|
|
76daa3 |
From 6683e30ae45021bbff0c89e7867c6419451d294f Mon Sep 17 00:00:00 2001
|
|
|
76daa3 |
From: Jeffrey Cody <jcody@redhat.com>
|
|
|
76daa3 |
Date: Wed, 26 Apr 2017 20:08:55 +0200
|
|
|
76daa3 |
Subject: [PATCH 09/11] block/rbd: Add support for reopen()
|
|
|
76daa3 |
|
|
|
76daa3 |
RH-Author: Jeffrey Cody <jcody@redhat.com>
|
|
|
76daa3 |
Message-id: <c2c21ad49a3337330e9750640bf90d2f6ca3341b.1493236824.git.jcody@redhat.com>
|
|
|
76daa3 |
Patchwork-id: 74902
|
|
|
76daa3 |
O-Subject: [RHEV-7.4 qemu-kvm-rhev 8/8] block/rbd: Add support for reopen()
|
|
|
76daa3 |
Bugzilla: 1189998
|
|
|
76daa3 |
RH-Acked-by: John Snow <jsnow@redhat.com>
|
|
|
76daa3 |
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
76daa3 |
RH-Acked-by: Max Reitz <mreitz@redhat.com>
|
|
|
76daa3 |
|
|
|
76daa3 |
This adds support for reopen in rbd, for changing between r/w and r/o.
|
|
|
76daa3 |
|
|
|
76daa3 |
Note, that this is only a flag change, but we will block a change from
|
|
|
76daa3 |
r/o to r/w if we are using an RBD internal snapshot.
|
|
|
76daa3 |
|
|
|
76daa3 |
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
76daa3 |
Signed-off-by: Jeff Cody <jcody@redhat.com>
|
|
|
76daa3 |
Reviewed-by: John Snow <jsnow@redhat.com>
|
|
|
76daa3 |
Message-id: d4e87539167ec6527d44c97b164eabcccf96e4f3.1491597120.git.jcody@redhat.com
|
|
|
76daa3 |
(cherry picked from commit 56e7cf8df03ae142c7797435dc0ece80a42f4fd0)
|
|
|
76daa3 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
76daa3 |
---
|
|
|
76daa3 |
block/rbd.c | 21 +++++++++++++++++++++
|
|
|
76daa3 |
1 file changed, 21 insertions(+)
|
|
|
76daa3 |
|
|
|
76daa3 |
diff --git a/block/rbd.c b/block/rbd.c
|
|
|
76daa3 |
index 35853c9..6471f4f 100644
|
|
|
76daa3 |
--- a/block/rbd.c
|
|
|
76daa3 |
+++ b/block/rbd.c
|
|
|
76daa3 |
@@ -668,6 +668,26 @@ failed_opts:
|
|
|
76daa3 |
return r;
|
|
|
76daa3 |
}
|
|
|
76daa3 |
|
|
|
76daa3 |
+
|
|
|
76daa3 |
+/* Since RBD is currently always opened R/W via the API,
|
|
|
76daa3 |
+ * we just need to check if we are using a snapshot or not, in
|
|
|
76daa3 |
+ * order to determine if we will allow it to be R/W */
|
|
|
76daa3 |
+static int qemu_rbd_reopen_prepare(BDRVReopenState *state,
|
|
|
76daa3 |
+ BlockReopenQueue *queue, Error **errp)
|
|
|
76daa3 |
+{
|
|
|
76daa3 |
+ BDRVRBDState *s = state->bs->opaque;
|
|
|
76daa3 |
+ int ret = 0;
|
|
|
76daa3 |
+
|
|
|
76daa3 |
+ if (s->snap && state->flags & BDRV_O_RDWR) {
|
|
|
76daa3 |
+ error_setg(errp,
|
|
|
76daa3 |
+ "Cannot change node '%s' to r/w when using RBD snapshot",
|
|
|
76daa3 |
+ bdrv_get_device_or_node_name(state->bs));
|
|
|
76daa3 |
+ ret = -EINVAL;
|
|
|
76daa3 |
+ }
|
|
|
76daa3 |
+
|
|
|
76daa3 |
+ return ret;
|
|
|
76daa3 |
+}
|
|
|
76daa3 |
+
|
|
|
76daa3 |
static void qemu_rbd_close(BlockDriverState *bs)
|
|
|
76daa3 |
{
|
|
|
76daa3 |
BDRVRBDState *s = bs->opaque;
|
|
|
76daa3 |
@@ -1074,6 +1094,7 @@ static BlockDriver bdrv_rbd = {
|
|
|
76daa3 |
.bdrv_parse_filename = qemu_rbd_parse_filename,
|
|
|
76daa3 |
.bdrv_file_open = qemu_rbd_open,
|
|
|
76daa3 |
.bdrv_close = qemu_rbd_close,
|
|
|
76daa3 |
+ .bdrv_reopen_prepare = qemu_rbd_reopen_prepare,
|
|
|
76daa3 |
.bdrv_create = qemu_rbd_create,
|
|
|
76daa3 |
.bdrv_has_zero_init = bdrv_has_zero_init_1,
|
|
|
76daa3 |
.bdrv_get_info = qemu_rbd_getinfo,
|
|
|
76daa3 |
--
|
|
|
76daa3 |
1.8.3.1
|
|
|
76daa3 |
|