qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Max Reitz <mreitz@redhat.com>
To: Alberto Garcia <berto@igalia.com>, qemu-devel@nongnu.org
Cc: qemu-block@nongnu.org, Kevin Wolf <kwolf@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 3/9] block: Remove child references from bs->{options, explicit_options}
Date: Wed, 29 Aug 2018 12:43:06 +0200	[thread overview]
Message-ID: <af713c19-bc70-c581-aa9c-58aa08ab5e55@redhat.com> (raw)
In-Reply-To: <054195c8f83f524ee1f4d117407ac507dd18b0d8.1535291602.git.berto@igalia.com>

[-- Attachment #1: Type: text/plain, Size: 3027 bytes --]

On 2018-08-26 16:09, Alberto Garcia wrote:
> Block drivers allow opening their children using a reference to an
> existing BlockDriverState. These references remain stored in the
> 'options' and 'explicit_options' QDicts, but we don't need to keep
> them once everything is open.
> 
> What is more important, these values can become wrong if the children
> change:
> 
>     $ qemu-img create -f qcow2 hd0.qcow2 10M
>     $ qemu-img create -f qcow2 hd1.qcow2 10M
>     $ qemu-img create -f qcow2 hd2.qcow2 10M
>     $ $QEMU -drive if=none,file=hd0.qcow2,node-name=hd0 \
>             -drive if=none,file=hd1.qcow2,node-name=hd1,backing=hd0 \
>             -drive file=hd2.qcow2,node-name=hd2,backing=hd1
> 
> After this hd2 has hd1 as its backing file. Now let's remove it using
> block_stream:
> 
>     (qemu) block_stream hd2 0 hd0.qcow2
> 
> Now hd0 is the backing file of hd2, but hd2's options QDicts still
> contain backing=hd1.
> 
> Signed-off-by: Alberto Garcia <berto@igalia.com>
> ---
>  block.c | 12 +++++++++++-
>  1 file changed, 11 insertions(+), 1 deletion(-)

Also, the question is, why would we discard the child options, but keep
the references (which we do not add, so we only have the ones specified
by the user).

> diff --git a/block.c b/block.c
> index 0dbb1fcc7b..2f2484965d 100644
> --- a/block.c
> +++ b/block.c
> @@ -2763,12 +2763,15 @@ static BlockDriverState *bdrv_open_inherit(const char *filename,
>          }
>      }
>  
> -    /* Remove all children options from bs->options and bs->explicit_options */
> +    /* Remove all children options and references
> +     * from bs->options and bs->explicit_options */
>      QLIST_FOREACH(child, &bs->children, next) {
>          char *child_key_dot;
>          child_key_dot = g_strdup_printf("%s.", child->name);
>          qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
>          qdict_extract_subqdict(bs->options, NULL, child_key_dot);
> +        qdict_del(bs->explicit_options, child->name);
> +        qdict_del(bs->options, child->name);
>          g_free(child_key_dot);
>      }
>  
> @@ -3289,6 +3292,7 @@ void bdrv_reopen_commit(BDRVReopenState *reopen_state)
>  {
>      BlockDriver *drv;
>      BlockDriverState *bs;
> +    BdrvChild *child;
>      bool old_can_write, new_can_write;
>  
>      assert(reopen_state != NULL);
> @@ -3313,6 +3317,12 @@ void bdrv_reopen_commit(BDRVReopenState *reopen_state)
>      bs->open_flags         = reopen_state->flags;
>      bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
>  
> +    /* Remove child references from bs->options and bs->explicit_options */
> +    QLIST_FOREACH(child, &bs->children, next) {
> +        qdict_del(bs->explicit_options, child->name);
> +        qdict_del(bs->options, child->name);
> +    }
> +

Why don't you remove the child options as well?

Max

>      bdrv_refresh_limits(bs, NULL);
>  
>      bdrv_set_perm(reopen_state->bs, reopen_state->perm,
> 



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

  reply	other threads:[~2018-08-29 10:43 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-26 14:09 [Qemu-devel] [PATCH 0/9] Misc reopen-related patches Alberto Garcia
2018-08-26 14:09 ` [Qemu-devel] [PATCH 1/9] qemu-io: Fix writethrough check in reopen Alberto Garcia
2018-08-29 10:20   ` Max Reitz
2018-08-26 14:09 ` [Qemu-devel] [PATCH 2/9] file-posix: x-check-cache-dropped should default to false on reopen Alberto Garcia
2018-08-29 10:27   ` Max Reitz
2018-08-26 14:09 ` [Qemu-devel] [PATCH 3/9] block: Remove child references from bs->{options, explicit_options} Alberto Garcia
2018-08-29 10:43   ` Max Reitz [this message]
2018-08-29 11:53     ` Alberto Garcia
2018-08-29 12:18       ` Max Reitz
2018-08-29 14:52         ` Alberto Garcia
2018-08-26 14:09 ` [Qemu-devel] [PATCH 4/9] block: Don't look for child references in append_open_options() Alberto Garcia
2018-08-29 10:47   ` Max Reitz
2018-08-26 14:09 ` [Qemu-devel] [PATCH 5/9] block: Allow child references on reopen Alberto Garcia
2018-08-29 11:26   ` Max Reitz
2018-08-29 12:29     ` Alberto Garcia
2018-08-29 12:59       ` Max Reitz
2018-08-29 13:00         ` Max Reitz
2018-08-29 14:56         ` Alberto Garcia
2018-08-29 15:03           ` Max Reitz
2018-08-26 14:09 ` [Qemu-devel] [PATCH 6/9] file-posix: Forbid trying to change unsupported options during reopen Alberto Garcia
2018-08-29 11:33   ` Max Reitz
2018-08-29 12:33     ` Alberto Garcia
2018-08-29 12:59       ` Max Reitz
2018-08-26 14:09 ` [Qemu-devel] [PATCH 7/9] block: Allow changing 'discard' on reopen Alberto Garcia
2018-08-29 11:39   ` Max Reitz
2018-08-30 10:04     ` Alberto Garcia
2018-08-30 10:10     ` Alberto Garcia
2018-08-29 11:44   ` Max Reitz
2018-08-26 14:09 ` [Qemu-devel] [PATCH 8/9] block: Allow changing 'detect-zeroes' " Alberto Garcia
2018-08-29 11:52   ` Max Reitz
2018-08-26 14:09 ` [Qemu-devel] [PATCH 9/9] block: Allow changing 'force-share' " Alberto Garcia
2018-08-29 12:01   ` Max Reitz

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=af713c19-bc70-c581-aa9c-58aa08ab5e55@redhat.com \
    --to=mreitz@redhat.com \
    --cc=berto@igalia.com \
    --cc=kwolf@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).