mirror of https://github.com/xemu-project/xemu.git
qmp-commands: move 'migrate-incoming' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
parent
b3ac5a0de9
commit
dbdbddb96e
|
@ -219,26 +219,6 @@ Example:
|
||||||
"arguments": { "enable": true } }
|
"arguments": { "enable": true } }
|
||||||
<- { "return": {} }
|
<- { "return": {} }
|
||||||
|
|
||||||
migrate-incoming
|
|
||||||
----------------
|
|
||||||
|
|
||||||
Continue an incoming migration
|
|
||||||
|
|
||||||
Arguments:
|
|
||||||
|
|
||||||
- "uri": Source/listening URI (json-string)
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
-> { "execute": "migrate-incoming", "arguments": { "uri": "tcp::4446" } }
|
|
||||||
<- { "return": {} }
|
|
||||||
|
|
||||||
Notes:
|
|
||||||
|
|
||||||
(1) QEMU must be started with -incoming defer to allow migrate-incoming to
|
|
||||||
be used
|
|
||||||
(2) The uri format is the same as for -incoming
|
|
||||||
|
|
||||||
migrate-set-cache-size
|
migrate-set-cache-size
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
|
@ -3005,9 +3005,24 @@
|
||||||
# Returns: nothing on success
|
# Returns: nothing on success
|
||||||
#
|
#
|
||||||
# Since: 2.3
|
# Since: 2.3
|
||||||
# Note: It's a bad idea to use a string for the uri, but it needs to stay
|
#
|
||||||
# compatible with -incoming and the format of the uri is already exposed
|
# Notes:
|
||||||
# above libvirt
|
#
|
||||||
|
# 1. It's a bad idea to use a string for the uri, but it needs to stay
|
||||||
|
# compatible with -incoming and the format of the uri is already exposed
|
||||||
|
# above libvirt.
|
||||||
|
#
|
||||||
|
# 2. QEMU must be started with -incoming defer to allow migrate-incoming to
|
||||||
|
# be used.
|
||||||
|
#
|
||||||
|
# 3. The uri format is the same as for -incoming
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
#
|
||||||
|
# -> { "execute": "migrate-incoming",
|
||||||
|
# "arguments": { "uri": "tcp::4446" } }
|
||||||
|
# <- { "return": {} }
|
||||||
|
#
|
||||||
##
|
##
|
||||||
{ 'command': 'migrate-incoming', 'data': {'uri': 'str' } }
|
{ 'command': 'migrate-incoming', 'data': {'uri': 'str' } }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue