]> git.proxmox.com Git - mirror_qemu.git/blobdiff - qapi/migration.json
migration: new postcopy-pause state
[mirror_qemu.git] / qapi / migration.json
index f3974c6807fcf2f75773cba643f2677f133e8317..244334e9f4f9d139e2f6348a709a49d12ec08c42 100644 (file)
@@ -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.
 ##
 { 'enum': 'MigrationStatus',
   'data': [ 'none', 'setup', 'cancelling', 'cancelled',
-            'active', 'postcopy-active', 'completed', 'failed', 'colo',
+            'active', 'postcopy-active', 'postcopy-paused',
+            'completed', 'failed', 'colo',
             'pre-switchover', 'device' ] }
 
 ##