From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60246) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Us9aE-0004WL-Hl for qemu-devel@nongnu.org; Thu, 27 Jun 2013 06:37:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Us9aD-0004kN-4x for qemu-devel@nongnu.org; Thu, 27 Jun 2013 06:37:46 -0400 Received: from mx1.redhat.com ([209.132.183.28]:20777) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Us9aC-0004kB-Tv for qemu-devel@nongnu.org; Thu, 27 Jun 2013 06:37:45 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r5RAbgp0011332 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 27 Jun 2013 06:37:43 -0400 From: Juan Quintela Date: Thu, 27 Jun 2013 12:37:35 +0200 Message-Id: <1372329455-5995-1-git-send-email-quintela@redhat.com> Subject: [Qemu-devel] [PULL 00/12] migration queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: anthony@redhat.com Hi Anthony, please pull. - improve error message (Alon) - Make zero pages to work again (Peter Lieven) - First 10 patches of RDMA support Thanks, Juan. The following changes since commit 3e5087329489e0beceecf3426f1216619821937f: Merge remote-tracking branch 'pmaydell/arm-devs.for-upstream' into staging (2013-06-25 14:14:13 -0500) are available in the git repository at: git://github.com/juanquintela/qemu.git migration.next for you to fetch changes up to 60d9222c8f50c3e5dd3df9ee84ddd1d1c4b35389: rdma: introduce capability x-rdma-pin-all (2013-06-27 02:38:36 +0200) ---------------------------------------------------------------- Alon Levy (1): arch_init/ram_load: add error message for block length mismatch Michael R. Hines (9): rdma: add documentation rdma: introduce qemu_update_position() rdma: export yield_until_fd_readable() rdma: export throughput w/ MigrationStats QMP rdma: introduce qemu_file_mode_is_not_valid() rdma: export qemu_fflush() rdma: introduce qemu_ram_foreach_block() rdma: new QEMUFileOps hooks rdma: introduce capability x-rdma-pin-all Peter Lieven (2): Revert "migration: do not sent zero pages in bulk stage" migration: do not overwrite zero pages arch_init.c | 42 +++-- docs/rdma.txt | 415 ++++++++++++++++++++++++++++++++++++++++++ exec.c | 9 + hmp.c | 2 + include/block/coroutine.h | 6 + include/exec/cpu-common.h | 5 + include/migration/migration.h | 25 +++ include/migration/qemu-file.h | 32 ++++ migration.c | 15 ++ qapi-schema.json | 12 +- qemu-coroutine-io.c | 23 +++ savevm.c | 114 ++++++++---- 12 files changed, 647 insertions(+), 53 deletions(-) create mode 100644 docs/rdma.txt