From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59639) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zp9qD-0004nC-Hx for qemu-devel@nongnu.org; Thu, 22 Oct 2015 02:59:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zp9q9-0007nt-B9 for qemu-devel@nongnu.org; Thu, 22 Oct 2015 02:59:13 -0400 Received: from szxga02-in.huawei.com ([119.145.14.65]:11940) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zp9q8-0007nb-N9 for qemu-devel@nongnu.org; Thu, 22 Oct 2015 02:59:09 -0400 References: <1441182199-8328-1-git-send-email-zhang.zhanghailiang@huawei.com> <1441182199-8328-11-git-send-email-zhang.zhanghailiang@huawei.com> <5627828B.4070704@redhat.com> From: zhanghailiang Message-ID: <562888F8.8070706@huawei.com> Date: Thu, 22 Oct 2015 14:58:00 +0800 MIME-Version: 1.0 In-Reply-To: <5627828B.4070704@redhat.com> Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH COLO-Frame v9 10/32] COLO: Add a new RunState RUN_STATE_COLO List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eric Blake , qemu-devel@nongnu.org Cc: lizhijian@cn.fujitsu.com, quintela@redhat.com, Markus Armbruster , yunhong.jiang@intel.com, eddie.dong@intel.com, peter.huangpeng@huawei.com, dgilbert@redhat.com, arei.gonglei@huawei.com, stefanha@redhat.com, amit.shah@redhat.com, yanghy@cn.fujitsu.com On 2015/10/21 20:18, Eric Blake wrote: > On 09/02/2015 02:22 AM, zhanghailiang wrote: >> Guest will enter this state when paused to save/restore VM state >> under colo checkpoint. >> >> Cc: Eric Blake >> Cc: Markus Armbruster >> Signed-off-by: zhanghailiang >> Signed-off-by: Li Zhijian >> Signed-off-by: Gonglei >> Reviewed-by: Dr. David Alan Gilbert >> --- >> qapi-schema.json | 7 ++++++- >> vl.c | 8 ++++++++ >> 2 files changed, 14 insertions(+), 1 deletion(-) >> >> diff --git a/qapi-schema.json b/qapi-schema.json >> index 0d3d6e2..6a3796e 100644 >> --- a/qapi-schema.json >> +++ b/qapi-schema.json >> @@ -148,12 +148,15 @@ >> # @watchdog: the watchdog action is configured to pause and has been triggered >> # >> # @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.5) >> ## >> { 'enum': 'RunState', >> 'data': [ 'debug', 'inmigrate', 'internal-error', 'io-error', 'paused', >> 'postmigrate', 'prelaunch', 'finish-migrate', 'restore-vm', >> 'running', 'save-vm', 'shutdown', 'suspended', 'watchdog', >> - 'guest-panicked' ] } >> + 'guest-panicked', 'colo' ] } >> > > Looks okay. > >> ## >> # @StatusInfo: >> @@ -428,6 +431,8 @@ >> # >> # @failed: some error occurred during migration process. >> # >> +# @colo: VM is in the process of fault tolerance. >> +# > > Missing '(since 2.5)' > > With that fixed, > Reviewed-by: Eric Blake > Fixed, Thanks.