From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:59240) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SoHqo-0007m1-Bx for qemu-devel@nongnu.org; Mon, 09 Jul 2012 13:34:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SoHqj-00014s-9R for qemu-devel@nongnu.org; Mon, 09 Jul 2012 13:34:21 -0400 Received: from e34.co.us.ibm.com ([32.97.110.152]:56039) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SoHqj-00014e-2o for qemu-devel@nongnu.org; Mon, 09 Jul 2012 13:34:17 -0400 Received: from /spool/local by e34.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 9 Jul 2012 11:34:11 -0600 Received: from d01relay07.pok.ibm.com (d01relay07.pok.ibm.com [9.56.227.147]) by d01dlp03.pok.ibm.com (Postfix) with ESMTP id 234CFC90083 for ; Mon, 9 Jul 2012 13:33:25 -0400 (EDT) Received: from d03av03.boulder.ibm.com (d03av03.boulder.ibm.com [9.17.195.169]) by d01relay07.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q69HXN4D59834610 for ; Mon, 9 Jul 2012 13:33:24 -0400 Received: from d03av03.boulder.ibm.com (loopback [127.0.0.1]) by d03av03.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q69HXB3v001011 for ; Mon, 9 Jul 2012 11:33:12 -0600 Message-ID: <4FFB15D4.3020103@us.ibm.com> Date: Mon, 09 Jul 2012 12:33:08 -0500 From: Anthony Liguori MIME-Version: 1.0 References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL v2 00/13] Migration tree List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Juan Quintela Cc: qemu-devel@nongnu.org On 06/29/2012 07:06 AM, Juan Quintela wrote: > Hi > > v2: > - Change Migration params from int to bool (Orit) > - Change %ld to %PRIu64 (Blue found it) > - cc Anthony O:-) > > Atacched the interdiff, it is trivial, instead of repost all patches > (changes are really trivial). > > Anthony, please pull. Pulled. Thanks. Regards, Anthony Liguori > > v1: > > Here are the patches that were reviewed and had no comments: Not > changes for the ones posted, just rebased to be sure that there were > no problem with merging (there weren't). > > - Huge memory series (Juan Quintela) > - All that was not XBRLE (Orit) form orit series > - missing check for host_from_stream_offset (Orit) > > Anthony, Please pull. > > > The following changes since commit 71ea2e016131a9fcde6f1ffd3e0e34a64c21f593: > > bsd-user: fix build (2012-06-28 20:28:36 +0000) > > are available in the git repository at: > > http://repo.or.cz/r/qemu/quintela.git migration-anthony-v2 > > for you to fetch changes up to 45f33f01f359d6028ec4b4018a2bf2ff53806e11: > > Maintain the number of dirty pages (2012-06-29 13:31:07 +0200) > > ---------------------------------------------------------------- > Isaku Yamahata (1): > Add MigrationParams structure > > Juan Quintela (8): > Add spent time for migration > Add tracepoints for savevm section start/end > No need to iterate if we already are over the limit > Only TCG needs TLB handling > Only calculate expected_time for stage 2 > Exit loop if we have been there too long > dirty bitmap: abstract its use > Maintain the number of dirty pages > > Orit Wasserman (4): > Add missing check for host_from_stream_offset return value for RAM_SAVE_FLAG_PAGE > Add save_block_hdr function > Add debugging infrastructure > Add migration_end function > > arch_init.c | 111 ++++++++++++++++++++++++++++++++++++----------------- > block-migration.c | 8 ++-- > cpu-all.h | 1 + > exec-obsolete.h | 50 ++++++++++++++---------- > exec.c | 34 ++++++++++------ > hmp.c | 2 + > migration.c | 24 +++++++++--- > migration.h | 9 ++++- > qapi-schema.json | 12 ++++-- > qemu-common.h | 1 + > savevm.c | 24 ++++++++++-- > sysemu.h | 3 +- > trace-events | 5 +++ > vmstate.h | 2 +- > 14 files changed, 198 insertions(+), 88 deletions(-) > > > > Isaku Yamahata (1): > Add MigrationParams structure > > Juan Quintela (8): > Add spent time for migration > Add tracepoints for savevm section start/end > No need to iterate if we already are over the limit > Only TCG needs TLB handling > Only calculate expected_time for stage 2 > Exit loop if we have been there too long > dirty bitmap: abstract its use > Maintain the number of dirty pages > > Orit Wasserman (4): > Add missing check for host_from_stream_offset return value for > RAM_SAVE_FLAG_PAGE > Add save_block_hdr function > Add debugging infrastructure > Add migration_end function > > arch_init.c | 111 ++++++++++++++++++++++++++++++++++++----------------- > block-migration.c | 8 ++-- > cpu-all.h | 1 + > exec-obsolete.h | 50 ++++++++++++++---------- > exec.c | 34 ++++++++++------ > hmp.c | 2 + > migration.c | 24 +++++++++--- > migration.h | 9 ++++- > qapi-schema.json | 12 ++++-- > qemu-common.h | 1 + > savevm.c | 24 ++++++++++-- > sysemu.h | 3 +- > trace-events | 5 +++ > vmstate.h | 2 +- > 14 files changed, 198 insertions(+), 88 deletions(-) >