aboutsummaryrefslogtreecommitdiff
path: root/qapi
diff options
context:
space:
mode:
authorZhang Chen <zhangckid@gmail.com>2018-10-23 00:41:18 +0800
committerDr. David Alan Gilbert <dgilbert@redhat.com>2018-10-31 09:38:59 +0000
commitea3b23e5ffc4b937958ba54b006a2a5e2e664f12 (patch)
treec8cff28b5f72d06b6925cb49e419e0508cf756df /qapi
parent6f5629c6b2e67fe998688b349f6b8d8b1582a00a (diff)
qapi: Fix COLOStatus and query-colo-status since version
This structure and command have missed qemu version 3.0, so fix it to since version 3.1. Signed-off-by: Zhang Chen <zhangckid@gmail.com> Message-Id: <20181022164118.5502-1-zhangckid@gmail.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'qapi')
-rw-r--r--qapi/migration.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/qapi/migration.json b/qapi/migration.json
index 0928f4b727..38d4c41d88 100644
--- a/qapi/migration.json
+++ b/qapi/migration.json
@@ -1317,7 +1317,7 @@
#
# @reason: describes the reason for the COLO exit.
#
-# Since: 3.0
+# Since: 3.1
##
{ 'struct': 'COLOStatus',
'data': { 'mode': 'COLOMode', 'reason': 'COLOExitReason' } }
@@ -1334,7 +1334,7 @@
# -> { "execute": "query-colo-status" }
# <- { "return": { "mode": "primary", "active": true, "reason": "request" } }
#
-# Since: 3.0
+# Since: 3.1
##
{ 'command': 'query-colo-status',
'returns': 'COLOStatus' }