From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:33166) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Stjhh-0007Ps-F0 for qemu-devel@nongnu.org; Tue, 24 Jul 2012 14:19:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Stjhg-0008N9-9t for qemu-devel@nongnu.org; Tue, 24 Jul 2012 14:19:29 -0400 Received: from mx1.redhat.com ([209.132.183.28]:14156) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Stjhg-0008My-1u for qemu-devel@nongnu.org; Tue, 24 Jul 2012 14:19:28 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q6OIJRI8029950 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 24 Jul 2012 14:19:27 -0400 From: Juan Quintela Date: Tue, 24 Jul 2012 20:19:13 +0200 Message-Id: <1343153964-25254-1-git-send-email-quintela@redhat.com> Subject: [Qemu-devel] [PATCH 00/11] Migration next v5 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Hi This series include back xbrle. In addressed all the review comments addressed by luiz. Please, review. Thanks, Juan. Juan Quintela (1): Restart optimization on stage3 update version Orit Wasserman (10): Add migration capabilities Add migrate_set_parameter command 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 | 263 +++++++++++++++++++++++++++++++++++++++++++-- cutils.c | 42 ++++++++ docs/xbzrle.txt | 136 +++++++++++++++++++++++ hmp-commands.hx | 36 +++++++ hmp.c | 98 +++++++++++++++++ hmp.h | 3 + include/qemu/page_cache.h | 79 ++++++++++++++ migration.c | 127 +++++++++++++++++++++- migration.h | 21 ++++ monitor.c | 7 ++ page_cache.c | 216 +++++++++++++++++++++++++++++++++++++ qapi-schema.json | 104 +++++++++++++++++- qemu-common.h | 21 ++++ qmp-commands.hx | 127 +++++++++++++++++++++- savevm.c | 159 +++++++++++++++++++++++++++ 16 files changed, 1425 insertions(+), 15 deletions(-) create mode 100644 docs/xbzrle.txt create mode 100644 include/qemu/page_cache.h create mode 100644 page_cache.c -- 1.7.10.4