From 02affd41b1157c511ea7fd0cc0bc61a07d9696b1 Mon Sep 17 00:00:00 2001 From: Peter Xu Date: Wed, 2 May 2018 18:47:36 +0800 Subject: qmp/migration: new command migrate-recover The first allow-oob=true command. It's used on destination side when the postcopy migration is paused and ready for a recovery. After execution, a new migration channel will be established for postcopy to continue. Reviewed-by: Dr. David Alan Gilbert Signed-off-by: Peter Xu Message-Id: <20180502104740.12123-21-peterx@redhat.com> Signed-off-by: Juan Quintela --- s/2.12/2.13/ --- qapi/migration.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'qapi') diff --git a/qapi/migration.json b/qapi/migration.json index 4e8e61ceef..da351d7421 100644 --- a/qapi/migration.json +++ b/qapi/migration.json @@ -1191,3 +1191,23 @@ # Since: 2.9 ## { 'command': 'xen-colo-do-checkpoint' } + +## +# @migrate-recover: +# +# Provide a recovery migration stream URI. +# +# @uri: the URI to be used for the recovery of migration stream. +# +# Returns: nothing. +# +# Example: +# +# -> { "execute": "migrate-recover", +# "arguments": { "uri": "tcp:192.168.1.200:12345" } } +# <- { "return": {} } +# +# Since: 2.13 +## +{ 'command': 'migrate-recover', 'data': { 'uri': 'str' }, + 'allow-oob': true } -- cgit v1.2.3