diff options
author | Marc-André Lureau | 2021-10-05 23:35:29 +0200 |
---|---|---|
committer | Marc-André Lureau | 2021-12-21 07:50:21 +0100 |
commit | d2f25776ca4044ce4f19a4065cc0e4d2566f32ec (patch) | |
tree | cbab72532bff0b8ca98cf20499dfbf88a2205b54 /backends | |
parent | backends: move dbus-vmstate1.xml to backends/ (diff) | |
download | qemu-d2f25776ca4044ce4f19a4065cc0e4d2566f32ec.tar.gz qemu-d2f25776ca4044ce4f19a4065cc0e4d2566f32ec.tar.xz qemu-d2f25776ca4044ce4f19a4065cc0e4d2566f32ec.zip |
docs: move D-Bus VMState documentation to source XML
Use the source XML document as single reference, importing its
documentation via the dbus-doc directive.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Acked-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'backends')
-rw-r--r-- | backends/dbus-vmstate1.xml | 42 |
1 files changed, 41 insertions, 1 deletions
diff --git a/backends/dbus-vmstate1.xml b/backends/dbus-vmstate1.xml index cc8563be4c..601ee8dc7e 100644 --- a/backends/dbus-vmstate1.xml +++ b/backends/dbus-vmstate1.xml @@ -1,10 +1,50 @@ -<?xml version="1.0"?> +<?xml version="1.0" encoding="utf-8"?> <node name="/" xmlns:doc="http://www.freedesktop.org/dbus/1.0/doc.dtd"> + <!-- + org.qemu.VMState1: + + This interface must be implemented at the object path + ``/org/qemu/VMState1`` to support helper migration. + --> <interface name="org.qemu.VMState1"> + + <!-- + Id: + + A string that identifies the helper uniquely. (maximum 256 bytes + including terminating NUL byte) + + .. note:: + + The VMState helper ID namespace is its own namespace. In particular, + it is not related to QEMU "id" used in -object/-device objects. + --> <property name="Id" type="s" access="read"/> + + <!-- + Load: + @data: data to restore the state. + + The method called on destination with the state to restore. + + The helper may be initially started in a waiting state (with an + ``-incoming`` argument for example), and it may resume on success. + + An error may be returned to the caller. + --> <method name="Load"> <arg type="ay" name="data" direction="in"/> </method> + + <!-- + Save: + @data: state data to save for later resume. + + The method called on the source to get the current state to be + migrated. The helper should continue to run normally. + + An error may be returned to the caller. + --> <method name="Save"> <arg type="ay" name="data" direction="out"/> </method> |