diff options
author | Peter Xu <peterx@redhat.com> | 2018-05-02 18:47:36 +0800 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2018-05-15 22:11:45 +0200 |
commit | 02affd41b1157c511ea7fd0cc0bc61a07d9696b1 (patch) | |
tree | b7c9459f513fe2f491dc625393b4df8551932d90 /qapi/migration.json | |
parent | e1b1b1bc367a1997373c10a58db4adb428daf54e (diff) |
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 <dgilbert@redhat.com>
Signed-off-by: Peter Xu <peterx@redhat.com>
Message-Id: <20180502104740.12123-21-peterx@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
---
s/2.12/2.13/
Diffstat (limited to 'qapi/migration.json')
-rw-r--r-- | qapi/migration.json | 20 |
1 files changed, 20 insertions, 0 deletions
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 } |