diff options
author | Max Reitz <mreitz@redhat.com> | 2018-06-14 21:14:28 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2018-06-15 14:49:44 +0200 |
commit | 609f45ea9507fc1603eaeda7f5066b99beac6721 (patch) | |
tree | 9fb9d179f3a9259f0696ffbc668c7ad20a774155 /qobject/qdict.c | |
parent | deadbb8ebb5c253da9b8ed02ab51a0fadf60edc7 (diff) | |
download | qemu-609f45ea9507fc1603eaeda7f5066b99beac6721.zip qemu-609f45ea9507fc1603eaeda7f5066b99beac6721.tar.gz qemu-609f45ea9507fc1603eaeda7f5066b99beac6721.tar.bz2 |
block: Add block-specific QDict header
There are numerous QDict functions that have been introduced for and are
used only by the block layer. Move their declarations into an own
header file to reflect that.
While qdict_extract_subqdict() is in fact used outside of the block
layer (in util/qemu-config.c), it is still a function related very
closely to how the block layer works with nested QDicts, namely by
sometimes flattening them. Therefore, its declaration is put into this
header as well and util/qemu-config.c includes it with a comment stating
exactly which function it needs.
Suggested-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
Message-Id: <20180509165530.29561-7-mreitz@redhat.com>
[Copyright note tweaked, superfluous includes dropped]
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'qobject/qdict.c')
-rw-r--r-- | qobject/qdict.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qobject/qdict.c b/qobject/qdict.c index 22800ee..0554c64 100644 --- a/qobject/qdict.c +++ b/qobject/qdict.c @@ -11,6 +11,7 @@ */ #include "qemu/osdep.h" +#include "block/qdict.h" #include "qapi/qmp/qnum.h" #include "qapi/qmp/qdict.h" #include "qapi/qmp/qbool.h" |