From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37152) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zyatj-0007dY-9o for qemu-devel@nongnu.org; Tue, 17 Nov 2015 02:41:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zyatf-00062k-43 for qemu-devel@nongnu.org; Tue, 17 Nov 2015 02:41:51 -0500 Received: from szxga03-in.huawei.com ([119.145.14.66]:61845) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zyate-000615-IC for qemu-devel@nongnu.org; Tue, 17 Nov 2015 02:41:47 -0500 References: <1446551816-15768-1-git-send-email-zhang.zhanghailiang@huawei.com> <1446551816-15768-11-git-send-email-zhang.zhanghailiang@huawei.com> <56461420.1030602@redhat.com> From: zhanghailiang Message-ID: <564AD423.2060403@huawei.com> Date: Tue, 17 Nov 2015 15:15:47 +0800 MIME-Version: 1.0 In-Reply-To: <56461420.1030602@redhat.com> Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH COLO-Frame v10 10/38] 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 On 2015/11/14 0:47, Eric Blake wrote: > On 11/03/2015 04:56 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 >> Reviewed-by: Eric Blake >> --- >> 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 5c4fe6d..49f2a90 100644 >> --- a/qapi-schema.json >> +++ b/qapi-schema.json >> @@ -154,12 +154,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) > > Will need a tweak to 2.6; > OK, i will update it in next version >> ## >> { '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' ] } >> >> ## >> # @StatusInfo: >> @@ -434,6 +437,8 @@ >> # >> # @failed: some error occurred during migration process. >> # >> +# @colo: VM is in the process of fault tolerance. (since 2.5) > > Likewise. But my R-b still stands after that minor tweak. > Thanks.