[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v2 06/31] qapi/qom: Add ObjectOptions for dbus-vmstate
From: |
Eric Blake |
Subject: |
Re: [PATCH v2 06/31] qapi/qom: Add ObjectOptions for dbus-vmstate |
Date: |
Fri, 26 Feb 2021 09:58:26 -0600 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.7.0 |
On 2/24/21 7:52 AM, Kevin Wolf wrote:
> This adds a QAPI schema for the properties of the dbus-vmstate object.
>
> A list represented as a comma separated string is clearly not very
> QAPI-like, but for now just describe the existing interface.
Does your alias proposal give us a path forward for improving that down
the road? Or maybe it's not an alias we need, but a new field with
better QAPI-like semantics, deprecate the old one, and wait out the 2
release cycles?
>
> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
> ---
> qapi/qom.json | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
>
> diff --git a/qapi/qom.json b/qapi/qom.json
> index 1dbc95fb53..a6a5049707 100644
> --- a/qapi/qom.json
> +++ b/qapi/qom.json
> @@ -232,6 +232,22 @@
> 'base': 'CryptodevBackendProperties',
> 'data': { 'chardev': 'str' } }
>
> +##
> +# @DBusVMStateProperties:
> +#
> +# Properties for dbus-vmstate objects.
> +#
> +# @addr: the name of the DBus bus to connect to
> +#
> +# @id-list: a comma separated list of DBus IDs of helpers whose data should
> be
> +# included in the VM state on migration
> +#
> +# Since: 5.0
> +##
> +{ 'struct': 'DBusVMStateProperties',
> + 'data': { 'addr': 'str' ,
> + '*id-list': 'str' } }
Matches backends/dbus-vmstate.c:dbus_vmstate_class_init(), including
splitting id-list into a GHashTable with get_id_list_set().
Since there is benefit to documenting/converting our existing API in
this series without dragging it out by also trying to fix the warts,
Reviewed-by: Eric Blake <eblake@redhat.com>
--
Eric Blake, Principal Software Engineer
Red Hat, Inc. +1-919-301-3226
Virtualization: qemu.org | libvirt.org
- [PATCH v2 00/31] qapi/qom: QAPIfy --object and object-add, Kevin Wolf, 2021/02/24
- [PATCH v2 06/31] qapi/qom: Add ObjectOptions for dbus-vmstate, Kevin Wolf, 2021/02/24
- Re: [PATCH v2 06/31] qapi/qom: Add ObjectOptions for dbus-vmstate,
Eric Blake <=
- [PATCH v2 12/31] qapi/qom: Add ObjectOptions for can-*, Kevin Wolf, 2021/02/24
- [PATCH v2 07/31] qapi/qom: Add ObjectOptions for memory-backend-*, Kevin Wolf, 2021/02/24
- [PATCH v2 19/31] qapi/qom: QAPIfy object-add, Kevin Wolf, 2021/02/24
- [PATCH v2 14/31] qapi/qom: Add ObjectOptions for filter-*, Kevin Wolf, 2021/02/24
- [PATCH v2 01/31] tests: Drop 'props' from object-add calls, Kevin Wolf, 2021/02/24