|
|
383d26 |
From b6ffe1491ccf08594837991b5a9ead762b65ca97 Mon Sep 17 00:00:00 2001
|
|
|
383d26 |
From: Kevin Wolf <kwolf@redhat.com>
|
|
|
383d26 |
Date: Fri, 23 Nov 2018 10:41:52 +0100
|
|
|
383d26 |
Subject: [PATCH 11/34] block: Make auto-read-only=on default for -drive
|
|
|
383d26 |
|
|
|
383d26 |
RH-Author: Kevin Wolf <kwolf@redhat.com>
|
|
|
383d26 |
Message-id: <20181123104154.13541-11-kwolf@redhat.com>
|
|
|
383d26 |
Patchwork-id: 83115
|
|
|
383d26 |
O-Subject: [RHEL-7.7/7.6.z qemu-kvm-rhev PATCH v2 10/12] block: Make auto-read-only=on default for -drive
|
|
|
383d26 |
Bugzilla: 1623986
|
|
|
383d26 |
RH-Acked-by: Max Reitz <mreitz@redhat.com>
|
|
|
383d26 |
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
383d26 |
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
383d26 |
RH-Acked-by: John Snow <jsnow@redhat.com>
|
|
|
383d26 |
|
|
|
383d26 |
While we want machine interfaces like -blockdev and QMP blockdev-add to
|
|
|
383d26 |
add as little auto-detection as possible so that management tools are
|
|
|
383d26 |
explicit about their needs, -drive is a convenience option for human
|
|
|
383d26 |
users. Enabling auto-read-only=on by default there enables users to use
|
|
|
383d26 |
read-only images for read-only guest devices without having to specify
|
|
|
383d26 |
read-only=on explicitly. If they try to attach the image to a read-write
|
|
|
383d26 |
device, they will still get an error message.
|
|
|
383d26 |
|
|
|
383d26 |
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
383d26 |
Reviewed-by: Eric Blake <eblake@redhat.com>
|
|
|
383d26 |
(cherry picked from commit 9384a444f6ebcd66bba0ae3c8434120d03c8dfea)
|
|
|
383d26 |
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
383d26 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
383d26 |
---
|
|
|
383d26 |
blockdev.c | 1 +
|
|
|
383d26 |
1 file changed, 1 insertion(+)
|
|
|
383d26 |
|
|
|
383d26 |
diff --git a/blockdev.c b/blockdev.c
|
|
|
383d26 |
index 3d73f05..3eb1880 100644
|
|
|
383d26 |
--- a/blockdev.c
|
|
|
383d26 |
+++ b/blockdev.c
|
|
|
383d26 |
@@ -631,6 +631,7 @@ static BlockBackend *blockdev_init(const char *file, QDict *bs_opts,
|
|
|
383d26 |
qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_NO_FLUSH, "off");
|
|
|
383d26 |
qdict_set_default_str(bs_opts, BDRV_OPT_READ_ONLY,
|
|
|
383d26 |
read_only ? "on" : "off");
|
|
|
383d26 |
+ qdict_set_default_str(bs_opts, BDRV_OPT_AUTO_READ_ONLY, "on");
|
|
|
383d26 |
assert((bdrv_flags & BDRV_O_CACHE_MASK) == 0);
|
|
|
383d26 |
|
|
|
383d26 |
if (runstate_check(RUN_STATE_INMIGRATE)) {
|
|
|
383d26 |
--
|
|
|
383d26 |
1.8.3.1
|
|
|
383d26 |
|