From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39106) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z3H8I-0004fY-09 for qemu-devel@nongnu.org; Fri, 12 Jun 2015 01:03:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z3H8E-0001FZ-OX for qemu-devel@nongnu.org; Fri, 12 Jun 2015 01:03:57 -0400 Received: from mx1.redhat.com ([209.132.183.28]:47557) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z3H8E-0001FE-H2 for qemu-devel@nongnu.org; Fri, 12 Jun 2015 01:03:54 -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 (Postfix) with ESMTPS id 8A36B8E3EE for ; Fri, 12 Jun 2015 05:03:53 +0000 (UTC) From: Juan Quintela Date: Fri, 12 Jun 2015 07:03:29 +0200 Message-Id: <1434085430-29219-1-git-send-email-quintela@redhat.com> Subject: [Qemu-devel] [PULL v2 00/21] migration pull request List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: amit.shah@redhat.com Hi [v2] Just rebased. [v1] Here are the pull request, it includes: - generic patches form postcopy that are reviewed (dave) - generic patches form RDMA fixes that are reviewed (dave) - patches form optional section reviewed (me) - patches for migration events reviewed (me) - fix RDMA and ipv6 (Padmanabh) - Remove extra variable (zhanghailiang) Please, apply. Later, Juan. The following changes since commit d8e3b729cf452d2689c8669f1ec18158db29fd5a: Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging (2015-06-11 15:33:38 +0100) are available in the git repository at: git://github.com/juanquintela/qemu.git tags/migration/20150612 for you to fetch changes up to 4fa3dd17dc29c316726f0d4a354a4d895e130c73: Remove unneeded memset (2015-06-12 06:54:02 +0200) ---------------------------------------------------------------- migration/next for 20150612 ---------------------------------------------------------------- Dr. David Alan Gilbert (12): Add qemu_get_counted_string to read a string prefixed by a count byte Split header writing out of qemu_savevm_state_begin qemu_ram_foreach_block: pass up error value, and down the ramblock name Create MigrationIncomingState Move copy out of qemu_peek_buffer Move loadvm_handlers into MigrationIncomingState Merge section header writing Disable section footers on older machine types Add a protective section footer Teach analyze-migration.py about section footers Rename RDMA structures to make destination clear Remove unneeded memset Juan Quintela (7): migration: move ram stuff to migration/ram migration: move savevm.c inside migration/ migration: Add myself to the copyright list of both files migration: reduce include files migration: Remove duplicated assignment of SETUP status migration: create savevm_state migration: Use normal VMStateDescriptions for Subsections Padmanabh Ratnakar (1): rdma: Fix qemu crash when IPv6 address is used for migration zhanghailiang (1): arch_init: Clean up the duplicate variable 'len' defining in ram_load() MAINTAINERS | 2 - Makefile.target | 3 +- arch_init.c | 1611 --------------------------------------- cpus.c | 11 +- docs/migration.txt | 11 +- exec.c | 21 +- hw/acpi/ich9.c | 10 +- hw/acpi/piix4.c | 10 +- hw/block/fdc.c | 42 +- hw/char/serial.c | 41 +- hw/display/qxl.c | 11 +- hw/display/vga.c | 11 +- hw/i386/pc_piix.c | 2 + hw/i386/pc_q35.c | 2 + hw/ide/core.c | 32 +- hw/ide/pci.c | 16 +- hw/input/pckbd.c | 22 +- hw/input/ps2.c | 11 +- hw/intc/apic_common.c | 10 +- hw/isa/lpc_ich9.c | 10 +- hw/net/e1000.c | 11 +- hw/net/rtl8139.c | 11 +- hw/net/vmxnet3.c | 12 +- hw/pci-host/piix.c | 10 +- hw/scsi/scsi-bus.c | 11 +- hw/timer/hpet.c | 11 +- hw/timer/mc146818rtc.c | 23 +- hw/usb/hcd-ohci.c | 11 +- hw/usb/redirect.c | 34 +- hw/virtio/virtio.c | 16 +- include/exec/cpu-common.h | 4 +- include/migration/migration.h | 17 + include/migration/qemu-file.h | 5 +- include/migration/vmstate.h | 10 +- include/qemu/typedefs.h | 2 + include/sysemu/arch_init.h | 1 - include/sysemu/sysemu.h | 1 + migration/migration.c | 34 +- migration/qemu-file.c | 29 +- migration/ram.c | 1628 ++++++++++++++++++++++++++++++++++++++++ migration/rdma.c | 78 +- savevm.c => migration/savevm.c | 257 ++++--- migration/vmstate.c | 21 +- scripts/analyze-migration.py | 5 + target-arm/machine.c | 26 +- target-i386/machine.c | 81 +- target-ppc/machine.c | 62 +- target-s390x/machine.c | 30 +- trace-events | 5 +- 49 files changed, 2191 insertions(+), 2144 deletions(-) create mode 100644 migration/ram.c rename savevm.c => migration/savevm.c (88%)