|
|
76daa3 |
From bda8e9c91bc93d9185e9094b2a188fff44173a3e Mon Sep 17 00:00:00 2001
|
|
|
76daa3 |
From: Jeffrey Cody <jcody@redhat.com>
|
|
|
76daa3 |
Date: Wed, 26 Apr 2017 20:08:53 +0200
|
|
|
76daa3 |
Subject: [PATCH 07/11] block: use bdrv_can_set_read_only() during reopen
|
|
|
76daa3 |
|
|
|
76daa3 |
RH-Author: Jeffrey Cody <jcody@redhat.com>
|
|
|
76daa3 |
Message-id: <b016b832c4dc5af3c1c4f6e628219535a1b573bc.1493236824.git.jcody@redhat.com>
|
|
|
76daa3 |
Patchwork-id: 74901
|
|
|
76daa3 |
O-Subject: [RHEV-7.4 qemu-kvm-rhev 6/8] block: use bdrv_can_set_read_only() during 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 |
Signed-off-by: Jeff Cody <jcody@redhat.com>
|
|
|
76daa3 |
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
76daa3 |
Reviewed-by: John Snow <jsnow@redhat.com>
|
|
|
76daa3 |
Message-id: 00aed7ffdd7be4b9ed9ce1007d50028a72b34ebe.1491597120.git.jcody@redhat.com
|
|
|
76daa3 |
(cherry picked from commit 3d8ce171cb4a62b55727bc949e2e9427f77de6fb)
|
|
|
76daa3 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
76daa3 |
---
|
|
|
76daa3 |
block.c | 14 ++++++++------
|
|
|
76daa3 |
1 file changed, 8 insertions(+), 6 deletions(-)
|
|
|
76daa3 |
|
|
|
76daa3 |
diff --git a/block.c b/block.c
|
|
|
76daa3 |
index 84f12f7..9fca814 100644
|
|
|
76daa3 |
--- a/block.c
|
|
|
76daa3 |
+++ b/block.c
|
|
|
76daa3 |
@@ -2789,6 +2789,7 @@ int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
|
|
|
76daa3 |
BlockDriver *drv;
|
|
|
76daa3 |
QemuOpts *opts;
|
|
|
76daa3 |
const char *value;
|
|
|
76daa3 |
+ bool read_only;
|
|
|
76daa3 |
|
|
|
76daa3 |
assert(reopen_state != NULL);
|
|
|
76daa3 |
assert(reopen_state->bs->drv != NULL);
|
|
|
76daa3 |
@@ -2817,12 +2818,13 @@ int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
|
|
|
76daa3 |
qdict_put(reopen_state->options, "driver", qstring_from_str(value));
|
|
|
76daa3 |
}
|
|
|
76daa3 |
|
|
|
76daa3 |
- /* if we are to stay read-only, do not allow permission change
|
|
|
76daa3 |
- * to r/w */
|
|
|
76daa3 |
- if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) &&
|
|
|
76daa3 |
- reopen_state->flags & BDRV_O_RDWR) {
|
|
|
76daa3 |
- error_setg(errp, "Node '%s' is read only",
|
|
|
76daa3 |
- bdrv_get_device_or_node_name(reopen_state->bs));
|
|
|
76daa3 |
+ /* If we are to stay read-only, do not allow permission change
|
|
|
76daa3 |
+ * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
|
|
|
76daa3 |
+ * not set, or if the BDS still has copy_on_read enabled */
|
|
|
76daa3 |
+ read_only = !(reopen_state->flags & BDRV_O_RDWR);
|
|
|
76daa3 |
+ ret = bdrv_can_set_read_only(reopen_state->bs, read_only, &local_err);
|
|
|
76daa3 |
+ if (local_err) {
|
|
|
76daa3 |
+ error_propagate(errp, local_err);
|
|
|
76daa3 |
goto error;
|
|
|
76daa3 |
}
|
|
|
76daa3 |
|
|
|
76daa3 |
--
|
|
|
76daa3 |
1.8.3.1
|
|
|
76daa3 |
|