From: "Dr. David Alan Gilbert (git)" <dgilbert@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 00/15] migration queue
Date: Tue, 24 Jan 2017 18:47:27 +0000 [thread overview]
Message-ID: <20170124184742.1639-1-dgilbert@redhat.com> (raw)
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
The following changes since commit a678502e4f7580a6f143f680404aaee57ac3f4b5:
Merge remote-tracking branch 'remotes/ehabkost/tags/x86-and-machine-pull-request' into staging (2017-01-24 15:39:09 +0000)
are available in the git repository at:
git://github.com/dagrh/qemu.git tags/pull-migration-20170124b
for you to fetch changes up to 46a02a745176e1ef30de41706b5da4f1bc7fc495:
migration/tracing: Add tracing on save (2017-01-24 18:00:32 +0000)
----------------------------------------------------------------
Migration
1 My maintainer change
2 Jianjun's qtailq
3 Ashijeet's only-migratable
4 Zhanghailiang's re-active images
5 Pankaj's change name of migration thread
6 My PCI migration merge
7 Juan's debug to tracing
8 My tracing on save
----------------------------------------------------------------
Ashijeet Acharya (5):
block/vvfat: Remove the undesirable comment
migration: Add a new option to enable only-migratable
migration: Allow "device add" options to only add migratable devices
migration: disallow migrate_add_blocker during migration
migration: Fail migration blocker for --only-migratable
Dr. David Alan Gilbert (3):
MAINTAINERS: Add myself as a migration submaintainer
PCI/migration merge vmstate_pci_device and vmstate_pcie_device
migration/tracing: Add tracing on save
Jianjun Duan (4):
migration: extend VMStateInfo
migration: migrate QTAILQ
tests/migration: Add test for QTAILQ migration
migration: add error_report
Juan Quintela (1):
migration: transform remaining DPRINTF into trace_
Pankaj Gupta (1):
migration: Change name of live migration thread
zhanghailiang (1):
migration: re-active images while migration been canceled after inactive them
MAINTAINERS | 1 +
block/qcow.c | 8 +-
block/vdi.c | 8 +-
block/vhdx.c | 17 ++--
block/vmdk.c | 9 +-
block/vpc.c | 11 +-
block/vvfat.c | 20 ++--
hw/9pfs/9p.c | 33 ++++--
hw/display/virtio-gpu.c | 40 +++++---
hw/intc/arm_gic_kvm.c | 17 ++--
hw/intc/arm_gicv3_its_kvm.c | 20 ++--
hw/intc/arm_gicv3_kvm.c | 19 ++--
hw/intc/s390_flic_kvm.c | 8 +-
hw/misc/ivshmem.c | 14 ++-
hw/net/e1000e.c | 2 +-
hw/net/vmxnet3.c | 26 +++--
hw/nvram/eeprom93xx.c | 8 +-
hw/nvram/fw_cfg.c | 8 +-
hw/pci-bridge/ioh3420.c | 2 +-
hw/pci-bridge/xio3130_downstream.c | 2 +-
hw/pci-bridge/xio3130_upstream.c | 2 +-
hw/pci/msix.c | 8 +-
hw/pci/pci.c | 57 ++++++-----
hw/pci/shpc.c | 7 +-
hw/scsi/megasas.c | 2 +-
hw/scsi/scsi-bus.c | 8 +-
hw/scsi/vhost-scsi.c | 25 +++--
hw/scsi/vmw_pvscsi.c | 2 +-
hw/timer/twl92230.c | 8 +-
hw/usb/bus.c | 19 ++++
hw/usb/hcd-xhci.c | 2 +-
hw/usb/redirect.c | 26 +++--
hw/virtio/vhost.c | 8 +-
hw/virtio/virtio-pci.c | 8 +-
hw/virtio/virtio.c | 15 ++-
include/hw/pci/pcie.h | 10 --
include/migration/migration.h | 13 ++-
include/migration/vmstate.h | 39 ++++++-
include/qemu/queue.h | 60 +++++++++++
migration/migration.c | 61 ++++++++++-
migration/ram.c | 18 +---
migration/savevm.c | 7 +-
migration/trace-events | 12 +++
migration/vmstate.c | 203 +++++++++++++++++++++++++++++--------
qdev-monitor.c | 9 ++
qemu-options.hx | 9 ++
stubs/migr-blocker.c | 3 +-
target/alpha/machine.c | 6 +-
target/arm/machine.c | 14 ++-
target/i386/kvm.c | 16 ++-
target/i386/machine.c | 26 +++--
target/mips/machine.c | 14 ++-
target/ppc/machine.c | 12 ++-
target/sparc/machine.c | 6 +-
tests/test-vmstate.c | 147 +++++++++++++++++++++++++++
vl.c | 4 +
56 files changed, 910 insertions(+), 249 deletions(-)
next reply other threads:[~2017-01-24 18:47 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-24 18:47 Dr. David Alan Gilbert (git) [this message]
2017-01-24 18:47 ` [Qemu-devel] [PULL 01/15] MAINTAINERS: Add myself as a migration submaintainer Dr. David Alan Gilbert (git)
2017-01-24 18:47 ` [Qemu-devel] [PULL 02/15] migration: extend VMStateInfo Dr. David Alan Gilbert (git)
2017-01-25 11:46 ` Fam Zheng
2017-01-25 12:00 ` Dr. David Alan Gilbert
2017-01-25 12:07 ` Cornelia Huck
2017-01-25 12:12 ` Fam Zheng
2017-01-25 12:19 ` Cornelia Huck
2017-01-25 13:22 ` Dr. David Alan Gilbert
2017-01-25 14:20 ` Cornelia Huck
2017-01-25 14:44 ` Dr. David Alan Gilbert
2017-01-26 12:14 ` Cornelia Huck
2017-01-27 18:20 ` Dr. David Alan Gilbert
2017-02-01 10:18 ` Cornelia Huck
2017-01-24 18:47 ` [Qemu-devel] [PULL 03/15] migration: migrate QTAILQ Dr. David Alan Gilbert (git)
2017-01-24 18:47 ` [Qemu-devel] [PULL 04/15] tests/migration: Add test for QTAILQ migration Dr. David Alan Gilbert (git)
2017-01-24 18:47 ` [Qemu-devel] [PULL 05/15] migration: add error_report Dr. David Alan Gilbert (git)
2017-01-24 18:47 ` [Qemu-devel] [PULL 06/15] block/vvfat: Remove the undesirable comment Dr. David Alan Gilbert (git)
2017-01-24 18:47 ` [Qemu-devel] [PULL 07/15] migration: Add a new option to enable only-migratable Dr. David Alan Gilbert (git)
2017-01-24 18:47 ` [Qemu-devel] [PULL 08/15] migration: Allow "device add" options to only add migratable devices Dr. David Alan Gilbert (git)
2017-01-24 18:47 ` [Qemu-devel] [PULL 09/15] migration: disallow migrate_add_blocker during migration Dr. David Alan Gilbert (git)
2017-01-24 18:47 ` [Qemu-devel] [PULL 10/15] migration: Fail migration blocker for --only-migratable Dr. David Alan Gilbert (git)
2017-01-24 18:47 ` [Qemu-devel] [PULL 11/15] migration: re-active images while migration been canceled after inactive them Dr. David Alan Gilbert (git)
2017-01-24 18:47 ` [Qemu-devel] [PULL 12/15] migration: Change name of live migration thread Dr. David Alan Gilbert (git)
2017-01-24 18:47 ` [Qemu-devel] [PULL 13/15] PCI/migration merge vmstate_pci_device and vmstate_pcie_device Dr. David Alan Gilbert (git)
2017-01-24 18:47 ` [Qemu-devel] [PULL 14/15] migration: transform remaining DPRINTF into trace_ Dr. David Alan Gilbert (git)
2017-01-24 18:47 ` [Qemu-devel] [PULL 15/15] migration/tracing: Add tracing on save Dr. David Alan Gilbert (git)
2017-01-25 10:41 ` [Qemu-devel] [PULL 00/15] migration queue Peter Maydell
-- strict thread matches above, loose matches on Subject: below --
2018-07-10 15:30 Dr. David Alan Gilbert (git)
2018-07-10 16:28 ` Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170124184742.1639-1-dgilbert@redhat.com \
--to=dgilbert@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.