qapi/qom: Add ObjectOptions for dbus-vmstate
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. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Acked-by: Paolo Bonzini <pbonzini@redhat.com> Acked-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
parent
a68d909ef9
commit
d7ef29c4ed
@ -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' } }
|
||||
|
||||
##
|
||||
# @IothreadProperties:
|
||||
#
|
||||
@ -271,6 +287,7 @@
|
||||
'cryptodev-backend-builtin',
|
||||
{ 'name': 'cryptodev-vhost-user',
|
||||
'if': 'defined(CONFIG_VIRTIO_CRYPTO) && defined(CONFIG_VHOST_CRYPTO)' },
|
||||
'dbus-vmstate',
|
||||
'iothread'
|
||||
] }
|
||||
|
||||
@ -298,6 +315,7 @@
|
||||
'cryptodev-backend-builtin': 'CryptodevBackendProperties',
|
||||
'cryptodev-vhost-user': { 'type': 'CryptodevVhostUserProperties',
|
||||
'if': 'defined(CONFIG_VIRTIO_CRYPTO) && defined(CONFIG_VHOST_CRYPTO)' },
|
||||
'dbus-vmstate': 'DBusVMStateProperties',
|
||||
'iothread': 'IothreadProperties'
|
||||
} }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user