From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:56075) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SwwJr-0004k2-5U for qemu-devel@nongnu.org; Thu, 02 Aug 2012 10:24:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SwwJm-0003MJ-QT for qemu-devel@nongnu.org; Thu, 02 Aug 2012 10:24:07 -0400 Received: from e39.co.us.ibm.com ([32.97.110.160]:38104) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SwwJm-0003ME-Jg for qemu-devel@nongnu.org; Thu, 02 Aug 2012 10:24:02 -0400 Received: from /spool/local by e39.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 2 Aug 2012 08:24:00 -0600 Received: from d03relay03.boulder.ibm.com (d03relay03.boulder.ibm.com [9.17.195.228]) by d03dlp02.boulder.ibm.com (Postfix) with ESMTP id BCC4D3E40046 for ; Thu, 2 Aug 2012 14:23:56 +0000 (WET) Received: from d03av06.boulder.ibm.com (d03av06.boulder.ibm.com [9.17.195.245]) by d03relay03.boulder.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q72ENZgh114190 for ; Thu, 2 Aug 2012 08:23:54 -0600 Received: from d03av06.boulder.ibm.com (loopback [127.0.0.1]) by d03av06.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q72EOmoO010917 for ; Thu, 2 Aug 2012 08:24:48 -0600 Message-ID: <501A8D64.3060906@us.ibm.com> Date: Thu, 02 Aug 2012 09:23:32 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <1343844079-2949-1-git-send-email-quintela@redhat.com> In-Reply-To: <1343844079-2949-1-git-send-email-quintela@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL 00/11] Migration next List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Juan Quintela Cc: qemu-devel@nongnu.org On 08/01/2012 01:01 PM, Juan Quintela wrote: > Hi > > Here is the xbzrle pull request. All comments about QMP names addressed. > > Please, pull > > The following changes since commit 02d2bd5d57812154cfb978bc2098cf49d551583d: > > Replace 'struct siginfo' with 'siginfo_t'. (2012-08-01 08:54:07 -0500) > > are available in the git repository at: > > http://repo.or.cz/r/qemu/quintela.git migration-next-20120801 > > for you to fetch changes up to 7bff472b8fba64b7417c243d2132422afc0c2137: > > Restart optimization on stage3 update version (2012-08-01 19:56:57 +0200) This pull request is premature as there's a v9 that went out after your pull request (and got review feedback). Please wait until the patches actually collect some Reviewed-by's on the list before submitting a pull request. Regards, Anthony Liguori > > > > Juan Quintela (1): > Restart optimization on stage3 update version > > Orit Wasserman (10): > Add migration capabilities > Add migrate-set-capabilities and query-migrate-capabilities > Add XBZRLE documentation > Add cache handling functions > Add uleb encoding/decoding functions > Add xbzrle_encode_buffer and xbzrle_decode_buffer functions > Add XBZRLE to ram_save_block and ram_save_live > Add migrate_set_cachesize command > Add migration accounting for normal and duplicate pages > Add XBZRLE statistics > > Makefile.objs | 1 + > arch_init.c | 246 +++++++++++++++++++++++++++++++++++++++++++++- > cutils.c | 42 ++++++++ > docs/xbzrle.txt | 136 +++++++++++++++++++++++++ > hmp-commands.hx | 40 ++++++++ > hmp.c | 124 +++++++++++++++++++++++ > hmp.h | 5 + > include/qemu/page_cache.h | 79 +++++++++++++++ > migration.c | 124 +++++++++++++++++++++++ > migration.h | 21 ++++ > monitor.c | 21 ++++ > page_cache.c | 218 ++++++++++++++++++++++++++++++++++++++++ > qapi-schema.json | 137 +++++++++++++++++++++++++- > qemu-common.h | 21 ++++ > qmp-commands.hx | 180 ++++++++++++++++++++++++++++++++- > savevm.c | 159 ++++++++++++++++++++++++++++++ > 16 files changed, 1542 insertions(+), 12 deletions(-) > create mode 100644 docs/xbzrle.txt > create mode 100644 include/qemu/page_cache.h > create mode 100644 page_cache.c >