From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59677) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c7Jnx-0000GF-7W for qemu-devel@nongnu.org; Thu, 17 Nov 2016 05:20:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c7Jnu-0007KR-1Y for qemu-devel@nongnu.org; Thu, 17 Nov 2016 05:20:29 -0500 Received: from mout.kundenserver.de ([212.227.17.10]:52484) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1c7Jnt-0007KA-O9 for qemu-devel@nongnu.org; Thu, 17 Nov 2016 05:20:25 -0500 From: Laurent Vivier Date: Thu, 17 Nov 2016 11:20:16 +0100 Message-Id: <1479378016-19022-2-git-send-email-laurent@vivier.eu> In-Reply-To: <1479378016-19022-1-git-send-email-laurent@vivier.eu> References: <1479378016-19022-1-git-send-email-laurent@vivier.eu> Subject: [Qemu-devel] [PULL 1/1] qapi-schema: clarify 'colo' state for MigrationStatus List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: zhanghailiang , Laurent Vivier From: zhanghailiang VM can not get into colo state unless users enable 'x-colo' capability for migration, Here it is necessary to clarify this. Suggested-by: Eric Blake Signed-off-by: zhanghailiang Message-Id: <1478072652-9884-1-git-send-email-zhang.zhanghailiang@huawei.com> Reviewed-by: Eric Blake Signed-off-by: Laurent Vivier --- qapi-schema.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/qapi-schema.json b/qapi-schema.json index b0b4bf6..f3e9bfc 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -176,8 +176,9 @@ # # @guest-panicked: guest has been panicked as a result of guest OS panic # -# @colo: guest is paused to save/restore VM state under colo checkpoint (since -# 2.8) +# @colo: guest is paused to save/restore VM state under colo checkpoint, +# VM can not get into this state unless colo capability is enabled +# for migration. (since 2.8) ## { 'enum': 'RunState', 'data': [ 'debug', 'inmigrate', 'internal-error', 'io-error', 'paused', @@ -462,7 +463,8 @@ # # @failed: some error occurred during migration process. # -# @colo: VM is in the process of fault tolerance. (since 2.8) +# @colo: VM is in the process of fault tolerance, VM can not get into this +# state unless colo capability is enabled for migration. (since 2.8) # # Since: 2.3 # -- 2.7.4