From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48676) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YqOwJ-0004jl-Mc for qemu-devel@nongnu.org; Thu, 07 May 2015 12:46:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YqOwG-00059O-EF for qemu-devel@nongnu.org; Thu, 07 May 2015 12:46:23 -0400 Received: from mx1.redhat.com ([209.132.183.28]:46877) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YqOwG-00058t-6o for qemu-devel@nongnu.org; Thu, 07 May 2015 12:46:20 -0400 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t47GkIbc027363 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Thu, 7 May 2015 12:46:19 -0400 From: Juan Quintela Date: Thu, 7 May 2015 18:46:00 +0200 Message-Id: <1431017176-3301-1-git-send-email-quintela@redhat.com> Subject: [Qemu-devel] [PULL 00/16] Migration pull requset (take 3) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Hi again (2) And now on v3 - I fix not using of atomic with 64 bit values. Notice that the code was wrong in any architecture, someplaces used atomics, someothers used something different. Praying $deity_in_32bits of the day Please, apply, and thanks for your patience. For v2 - fix 32bit compilation (as said, compiling for 64bit linux, 64bit windows and 32bit windows was not enough) - Now, we have versions 2.4 everywhere (thanks Eric) - Liang Li sent a new patch to the list to fix the update of a migration parameter, included. Please apply, and sorry for the inconvenience. Later, Juan. [v1] This patch series got: - migration compression patches by Liang Li I have to modify ""type" to "struct" in qapi - division by zero fixed by Michael Champan. Thanks, please apply. The following changes since commit 38003aee196a96edccd4d64471beb1b67e9b2b17: Merge remote-tracking branch 'remotes/rth/tags/tcg-next-20150505' into staging (2015-05-06 11:16:35 +0100) are available in the git repository at: git://github.com/juanquintela/qemu.git tags/migration/20150507-1 for you to fetch changes up to 362ba4e3ee801e8f5e28d72d0009547384222927: migration: Fix migration state update issue (2015-05-07 18:31:54 +0200) ---------------------------------------------------------------- migration/next for 20150507 ---------------------------------------------------------------- Liang Li (15): docs: Add a doc about multiple thread compression migration: Add the framework of multi-thread compression migration: Add the framework of multi-thread decompression qemu-file: Add compression functions to QEMUFile arch_init: Alloc and free data struct for compression arch_init: Add and free data struct for decompression migration: Split save_zero_page from ram_save_page migration: Add the core code of multi-thread compression migration: Make compression co-work with xbzrle migration: Add the core code for decompression migration: Add interface to control compression migration: Use an array instead of 3 parameters migration: Add qmp commands to set and query parameters migration: Add hmp interface to set and query parameters migration: Fix migration state update issue Michael Chapman (1): migration: avoid divide by zero in xbzrle cache miss rate arch_init.c | 517 ++++++++++++++++++++++++++++++++++++-- docs/multi-thread-compression.txt | 149 +++++++++++ hmp-commands.hx | 17 ++ hmp.c | 65 +++++ hmp.h | 4 + include/migration/migration.h | 10 + include/migration/qemu-file.h | 3 + migration/migration.c | 122 +++++++++ migration/qemu-file.c | 39 +++ monitor.c | 25 ++ qapi-schema.json | 79 +++++- qmp-commands.hx | 57 +++++ 12 files changed, 1060 insertions(+), 27 deletions(-) create mode 100644 docs/multi-thread-compression.txt