mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
migration: new postcopy-pause state
Introducing a new state "postcopy-paused", which can be used when the postcopy migration is paused. It is targeted for postcopy network failure recovery. Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Peter Xu <peterx@redhat.com> Message-Id: <20180502104740.12123-3-peterx@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com>
This commit is contained in:
parent
e89f5ff2c3
commit
a688d2c1ab
2 changed files with 6 additions and 1 deletions
|
@ -89,6 +89,8 @@
|
|||
#
|
||||
# @postcopy-active: like active, but now in postcopy mode. (since 2.5)
|
||||
#
|
||||
# @postcopy-paused: during postcopy but paused. (since 2.13)
|
||||
#
|
||||
# @completed: migration is finished.
|
||||
#
|
||||
# @failed: some error occurred during migration process.
|
||||
|
@ -106,7 +108,8 @@
|
|||
##
|
||||
{ 'enum': 'MigrationStatus',
|
||||
'data': [ 'none', 'setup', 'cancelling', 'cancelled',
|
||||
'active', 'postcopy-active', 'completed', 'failed', 'colo',
|
||||
'active', 'postcopy-active', 'postcopy-paused',
|
||||
'completed', 'failed', 'colo',
|
||||
'pre-switchover', 'device' ] }
|
||||
|
||||
##
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue