[Qemu-devel] [PATCH for-2.12 0/3] block: Handle null backing link

Max Reitz posted 3 patches 6 years, 5 months ago
Failed in applying to current master (apply log)
Test checkpatch passed
Test docker passed
Test ppc passed
Test s390x passed
There is a newer version of this series
qapi/block-core.json       |  4 ++--
include/qapi/qmp/qdict.h   |  1 +
block.c                    |  6 +++++-
blockdev.c                 | 14 --------------
qobject/qdict.c            | 10 ++++++++++
qemu-doc.texi              |  7 +++++++
qemu-options.hx            |  4 ++--
tests/qemu-iotests/089     | 20 ++++++++++++++++++++
tests/qemu-iotests/089.out |  8 ++++++++
9 files changed, 55 insertions(+), 19 deletions(-)
[Qemu-devel] [PATCH for-2.12 0/3] block: Handle null backing link
Posted by Max Reitz 6 years, 5 months ago
Currently, we try to rewrite every occurrence of "backing": null into
"backing": "" in qmp_blockdev_add().  However, that breaks using the
same "backing": null construction in json:{} file names (which do not go
through qmp_blockdev_add()).  Currently, these then just behave as if
the option has not been specified.

Since there is actually only one place where we evaluate the @backing
option to find out whether not to use a backing file, we can instead
just check for null there.  It doesn't matter that this changes the
runtime state of the option from "" to null, because nobody really does
anything with that runtime state anyway (except put it into qemu again,
but qemu doesn't care whether it's "" or null).

And in the future, it's much better if we get it to be null in that
runtime state sooner than later -- see patch 3. :-)


Max Reitz (3):
  qapi: Add qdict_is_null()
  block: Handle null backing link
  block: Deprecate "backing": ""

 qapi/block-core.json       |  4 ++--
 include/qapi/qmp/qdict.h   |  1 +
 block.c                    |  6 +++++-
 blockdev.c                 | 14 --------------
 qobject/qdict.c            | 10 ++++++++++
 qemu-doc.texi              |  7 +++++++
 qemu-options.hx            |  4 ++--
 tests/qemu-iotests/089     | 20 ++++++++++++++++++++
 tests/qemu-iotests/089.out |  8 ++++++++
 9 files changed, 55 insertions(+), 19 deletions(-)

-- 
2.13.6