From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:37011) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T14kZ-0004en-EF for qemu-devel@nongnu.org; Mon, 13 Aug 2012 20:12:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T14kY-0003y0-DI for qemu-devel@nongnu.org; Mon, 13 Aug 2012 20:12:47 -0400 Received: from e3.ny.us.ibm.com ([32.97.182.143]:47921) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T14kY-0003xs-6T for qemu-devel@nongnu.org; Mon, 13 Aug 2012 20:12:46 -0400 Received: from /spool/local by e3.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 13 Aug 2012 20:12:44 -0400 Received: from d01relay04.pok.ibm.com (d01relay04.pok.ibm.com [9.56.227.236]) by d01dlp01.pok.ibm.com (Postfix) with ESMTP id 3805938C8039 for ; Mon, 13 Aug 2012 20:12:30 -0400 (EDT) Received: from d03av04.boulder.ibm.com (d03av04.boulder.ibm.com [9.17.195.170]) by d01relay04.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q7E0CTuY184028 for ; Mon, 13 Aug 2012 20:12:29 -0400 Received: from d03av04.boulder.ibm.com (loopback [127.0.0.1]) by d03av04.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q7E0CTqW032013 for ; Mon, 13 Aug 2012 18:12:29 -0600 From: Anthony Liguori In-Reply-To: <1344875699-11525-1-git-send-email-quintela@redhat.com> References: <1344875699-11525-1-git-send-email-quintela@redhat.com> Date: Mon, 13 Aug 2012 19:12:25 -0500 Message-ID: <87vcgme3h2.fsf@codemonkey.ws> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: [Qemu-devel] [PULL] Migration next 20120808 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Juan Quintela , qemu-devel@nongnu.org Juan Quintela writes: > [Resent with PULL request instead of PATCH, sorry for the inconvenience] > > Hi > > This includes xbzrle series (v12) That were reviewed by Erik and Luiz. > > Anthony, please apply. Pulled. Thanks. Regards, Anthony Liguori > > Later, Juan. > > The following changes since commit c03b0aa0ca93480e92dc356e58538df0835fe621: > > Merge remote-tracking branch 'kraxel/usb.58' into staging (2012-08-07 09:46:40 -0500) > > are available in the git repository at: > > > http://repo.or.cz/r/qemu/quintela.git migration-next-20120808 > > for you to fetch changes up to dd051c7217eae04191169ac62f6ffb7531c8da32: > > Restart optimization on stage3 update version (2012-08-08 13:51:12 +0200) > > > Juan Quintela (1): > Restart optimization on stage3 update version > > Orit Wasserman (11): > Add migration capabilities > Add migrate-set-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_cache_size command > Change total_time to total-time in MigrationStats > Add migration accounting for normal and duplicate pages > Add XBZRLE statistics > > Makefile.objs | 1 + > arch_init.c | 246 +++++++++++++++++++++++++++++++++++++++++++++- > cutils.c | 42 ++++++++ > docs/xbzrle.txt | 128 ++++++++++++++++++++++++ > hmp-commands.hx | 38 +++++++ > hmp.c | 103 +++++++++++++++++++ > hmp.h | 4 + > include/qemu/page_cache.h | 79 +++++++++++++++ > migration.c | 112 +++++++++++++++++++++ > migration.h | 21 ++++ > monitor.c | 14 +++ > page_cache.c | 218 ++++++++++++++++++++++++++++++++++++++++ > qapi-schema.json | 119 +++++++++++++++++++++- > qemu-common.h | 21 ++++ > qmp-commands.hx | 159 +++++++++++++++++++++++++++++- > savevm.c | 159 ++++++++++++++++++++++++++++++ > 16 files changed, 1451 insertions(+), 13 deletions(-) > create mode 100644 docs/xbzrle.txt > create mode 100644 include/qemu/page_cache.h > create mode 100644 page_cache.c > > -- > 1.7.11.2