Re: [Qemu-devel] [PATCH 06/13] block: Handle child references in bdrv_reopen_queue()

2019-02-19 Thread Alberto Garcia
On Tue 12 Feb 2019 05:28:06 PM CET, Kevin Wolf wrote: >>1) Set of child options: the options are removed from the parent's >> options QDict and are passed to the child with a recursive >> bdrv_reopen_queue() call. This case was already working fine. > > Small addition: This is only

Re: [Qemu-devel] [PATCH 06/13] block: Handle child references in bdrv_reopen_queue()

2019-02-12 Thread Kevin Wolf
Am 17.01.2019 um 16:33 hat Alberto Garcia geschrieben: > Children in QMP are specified with BlockdevRef / BlockdevRefOrNull, > which can contain a set of child options, a child reference, or > NULL. In optional attributes like "backing" it can also be missing. > > Only the first case (set of

[Qemu-devel] [PATCH 06/13] block: Handle child references in bdrv_reopen_queue()

2019-01-17 Thread Alberto Garcia
Children in QMP are specified with BlockdevRef / BlockdevRefOrNull, which can contain a set of child options, a child reference, or NULL. In optional attributes like "backing" it can also be missing. Only the first case (set of child options) is being handled properly by bdrv_reopen_queue(). This