From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42219) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YC1e8-0000Sl-I3 for qemu-devel@nongnu.org; Fri, 16 Jan 2015 02:48:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YC1e3-000814-Ic for qemu-devel@nongnu.org; Fri, 16 Jan 2015 02:48:44 -0500 Received: from mx1.redhat.com ([209.132.183.28]:49203) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YC1e3-00080o-AD for qemu-devel@nongnu.org; Fri, 16 Jan 2015 02:48:39 -0500 Date: Fri, 16 Jan 2015 13:17:57 +0530 From: Amit Shah Message-ID: <20150116074757.GC23691@grmbl.mre> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PULL] migration patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu list Cc: chenliang88@huawei.com, Peter Maydell , cristian.klein@cs.umu.se, "Dr. David Alan Gilbert" , arei.gonglei@huawei.com, Paolo Bonzini , yanghy@cn.fujitsu.com The following changes since commit df58887b20fab8fe8a6dcca4db30cd4e4077d53a: Merge remote-tracking branch 'remotes/mjt/tags/pull-trivial-patches-2015-01-15' into staging (2015-01-15 10:08:46 +0000) are available in the git repository at: git://git.kernel.org/pub/scm/virt/qemu/amit/migration.git tags/mig-2.3-1 for you to fetch changes up to ea987c2c21d4326bb58ee28f6888fdcf8fbda067: vmstate: type-check sub-arrays (2015-01-16 13:06:17 +0530) ---------------------------------------------------------------- A set of patches collected over the holidays. Mix of optimizations and fixes. ---------------------------------------------------------------- ChenLiang (2): xbzrle: optimize XBZRLE to decrease the cache misses xbzrle: rebuild the cache_is_cached function Cristian Klein (1): Handle bi-directional communication for fd migration Dr. David Alan Gilbert (2): socket shutdown migration_cancel: shutdown migration socket Paolo Bonzini (1): vmstate: type-check sub-arrays Yang Hongyang (2): QEMUSizedBuffer: only free qsb that qemu_bufopen allocated Tests: QEMUSizedBuffer/QEMUBuffer arch_init.c | 8 +++++--- docs/xbzrle.txt | 8 ++++++++ include/migration/page_cache.h | 10 +++++++--- include/migration/qemu-file.h | 10 ++++++++++ include/migration/vmstate.h | 2 +- include/qemu/sockets.h | 7 +++++++ migration/fd.c | 24 +++++++++++++++++++++-- migration/migration.c | 12 ++++++++++++ migration/qemu-file-buf.c | 10 ++++++---- migration/qemu-file-unix.c | 23 ++++++++++++++++++---- migration/qemu-file.c | 12 ++++++++++++ page_cache.c | 43 +++++++++++++++++++++++++----------------- tests/test-vmstate.c | 20 ++++++++------------ 13 files changed, 143 insertions(+), 46 deletions(-) Amit