From: Fam Zheng <famz@redhat.com>
To: qemu-devel@nongnu.org
Cc: Kevin Wolf <kwolf@redhat.com>, Max Reitz <mreitz@redhat.com>,
qemu-block@nongnu.org
Subject: [Qemu-devel] [PATCH 3/4] block: Use the actual current_flags during reopen
Date: Fri, 9 Mar 2018 16:09:09 +0800 [thread overview]
Message-ID: <20180309080910.7274-4-famz@redhat.com> (raw)
In-Reply-To: <20180309080910.7274-1-famz@redhat.com>
This complies to the function contract and allows bdrv_backing_options
to make the right decision.
Signed-off-by: Fam Zheng <famz@redhat.com>
---
block.c | 21 +++++++++++----------
1 file changed, 11 insertions(+), 10 deletions(-)
diff --git a/block.c b/block.c
index 937f9fe159..1e2b0d822d 100644
--- a/block.c
+++ b/block.c
@@ -2785,14 +2785,14 @@ static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
BlockDriverState *bs,
QDict *options,
int flags,
- const BdrvChildRole *role,
+ BdrvChild *child,
QDict *parent_options,
int parent_flags)
{
assert(bs != NULL);
BlockReopenQueueEntry *bs_entry;
- BdrvChild *child;
+ BdrvChild *c;
QDict *old_options, *explicit_options;
/* Make sure that the caller remembered to use a drained section. This is
@@ -2847,10 +2847,11 @@ static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
explicit_options = qdict_clone_shallow(options);
/* Inherit from parent node */
+ assert(!!child == !!parent_options);
if (parent_options) {
- assert(!flags);
- role->inherit_options(&flags, options, parent_flags, parent_options,
- 0);
+ child->role->inherit_options(&flags, options,
+ parent_flags, parent_options,
+ child->bs->open_flags);
}
/* Old values are used for options that aren't set yet */
@@ -2881,23 +2882,23 @@ static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
bs_entry->state.perm = UINT64_MAX;
bs_entry->state.shared_perm = 0;
- QLIST_FOREACH(child, &bs->children, next) {
+ QLIST_FOREACH(c, &bs->children, next) {
QDict *new_child_options;
char *child_key_dot;
/* reopen can only change the options of block devices that were
* implicitly created and inherited options. For other (referenced)
* block devices, a syntax like "backing.foo" results in an error. */
- if (child->bs->inherits_from != bs) {
+ if (c->bs->inherits_from != bs) {
continue;
}
- child_key_dot = g_strdup_printf("%s.", child->name);
+ child_key_dot = g_strdup_printf("%s.", c->name);
qdict_extract_subqdict(options, &new_child_options, child_key_dot);
g_free(child_key_dot);
- bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0,
- child->role, options, flags);
+ bdrv_reopen_queue_child(bs_queue, c->bs, new_child_options, 0,
+ c, options, flags);
}
return bs_queue;
--
2.14.3
next prev parent reply other threads:[~2018-03-09 8:09 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-09 8:09 [Qemu-devel] [PATCH 0/4] block: Fix permission during reopen Fam Zheng
2018-03-09 8:09 ` [Qemu-devel] [PATCH 1/4] block: Pass "current_flags" in BdrvChildRole.inherit_options Fam Zheng
2018-03-09 8:09 ` [Qemu-devel] [PATCH 2/4] block: Fix write flags in bdrv_backing_options Fam Zheng
2018-03-09 8:09 ` Fam Zheng [this message]
2018-03-09 8:09 ` [Qemu-devel] [PATCH 4/4] iotests: Add regression test for commit base locking Fam Zheng
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180309080910.7274-4-famz@redhat.com \
--to=famz@redhat.com \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).