From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hongyang Yang Subject: Re: [PATCH Remus v1 0/8] Remus support for Migration-v2 Date: Thu, 7 May 2015 15:04:53 +0800 Message-ID: <554B0E95.6060504@cn.fujitsu.com> References: <1430980646-316-1-git-send-email-yanghy@cn.fujitsu.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1430980646-316-1-git-send-email-yanghy@cn.fujitsu.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xen.org Cc: wei.liu2@citrix.com, ian.campbell@citrix.com, wency@cn.fujitsu.com, eddie.dong@intel.com, yunhong.jiang@intel.com, ian.jackson@eu.citrix.com, andrew.cooper3@citrix.com, rshriram@cs.ubc.ca List-Id: xen-devel@lists.xenproject.org Cc Andrew cooper Sorry I missed your address... On 05/07/2015 02:37 PM, Yang Hongyang wrote: > This patchset implement the Remus support for Migration v2 but without > memory compressing. > > PATCH 1-5: Some refactor and prepare work. > PATCH 6-7: The main Remus loop implement. > PATCH 8: Fix for Remus. > > Yang Hongyang (8): > tools/libxc: adjust the memory allocation for migration > tools/libxc: reuse send_some_pages() in send_all_pages() > tools/libxc: introduce process_record() > tools/libxc: split read/handle qemu info > tools/libxc: defer the setting of HVM_PARAM_IDENT_PT > tools/libxc: implement Remus checkpointed save > tools/libxc: implement Remus checkpointed restore > tools/libxc: X86_PV_INFO can be sent multiple times under Remus > > tools/libxc/include/xenguest.h | 1 + > tools/libxc/xc_bitops.h | 5 + > tools/libxc/xc_sr_common.h | 17 ++++ > tools/libxc/xc_sr_restore.c | 179 +++++++++++++++++++++++++++++------- > tools/libxc/xc_sr_restore_x86_hvm.c | 44 ++++++++- > tools/libxc/xc_sr_restore_x86_pv.c | 2 +- > tools/libxc/xc_sr_save.c | 166 +++++++++++++++++---------------- > tools/libxl/libxl_dom.c | 1 + > 8 files changed, 295 insertions(+), 120 deletions(-) > -- Thanks, Yang.