From: "Michael S. Tsirkin" <mst@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>
Subject: [Qemu-devel] [PULL 00/23] vhost, virtio, pci, pc
Date: Wed, 24 Feb 2016 22:35:04 +0200 [thread overview]
Message-ID: <1456343639-3471-1-git-send-email-mst@redhat.com> (raw)
The following changes since commit 8eb779e4223a18db9838a49ece1bc72cfdfb7761:
Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2016-02-22 16:55:41 +0000)
are available in the git repository at:
git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstream
for you to fetch changes up to fe4814133cefdb9b5b9777dd11aa8577e7376052:
q35: No need to check gigabyte_align (2016-02-24 21:51:14 +0200)
----------------------------------------------------------------
vhost, virtio, pci, pc
Fixes all over the place.
virtio dataplane migration support.
Old q35 machine types removed.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
----------------------------------------------------------------
Cao jin (2):
pci core: function pci_host_bus_register() cleanup
pci core: function pci_bus_init() cleanup
Eduardo Habkost (5):
q35: Remove old machine versions
machine: Remove no_tco field
ich9: Remove enable_tco arguments from init functions
q35: Remove unused q35-acpi-dsdt.aml file
q35: No need to check gigabyte_align
Michael S. Tsirkin (3):
bios-linker-loader: document+validate input
vhost-user: don't merge regions with different fds
tests/vhost-user-bridge: fix build on 32 bit systems
Paolo Bonzini (8):
block-migration: acquire AioContext as necessary
vring: make vring_enable_notification return void
virtio: add AioContext-specific function for host notifiers
virtio: export vring_notify as virtio_should_notify
virtio-blk: fix "disabled data plane" mode
virtio-blk: do not use vring in dataplane
virtio-scsi: do not use vring in dataplane
vring: remove
Vladimir Sementsov-Ogievskiy (5):
move get_current_ram_size to virtio-balloon.c
pc-dimm: rename pc_dimm_built_list()
pc-dimm: add pc_dimm_build_list()
virtio-balloon: rewrite get_current_ram_size()
balloon: Use only 'pc-dimm' type dimm for ballooning
Makefile | 2 +-
hw/block/dataplane/virtio-blk.h | 1 +
include/exec/cpu-common.h | 1 -
include/hw/acpi/bios-linker-loader.h | 2 +-
include/hw/acpi/ich9.h | 1 -
include/hw/boards.h | 1 -
include/hw/i386/ich9.h | 2 +-
include/hw/mem/pc-dimm.h | 3 +
include/hw/virtio/dataplane/vring-accessors.h | 75 ----
include/hw/virtio/dataplane/vring.h | 51 ---
include/hw/virtio/vhost-backend.h | 4 +
include/hw/virtio/virtio-blk.h | 4 +-
include/hw/virtio/virtio-scsi.h | 21 +-
include/hw/virtio/virtio.h | 3 +
hw/acpi/aml-build.c | 2 +-
hw/acpi/bios-linker-loader.c | 91 ++++-
hw/acpi/ich9.c | 8 +-
hw/arm/virt-acpi-build.c | 3 +-
hw/block/dataplane/virtio-blk.c | 130 +-----
hw/block/virtio-blk.c | 51 +--
hw/i386/acpi-build.c | 3 +-
hw/i386/pc_q35.c | 176 +--------
hw/isa/lpc_ich9.c | 4 +-
hw/mem/pc-dimm.c | 47 +--
hw/pci/pci.c | 13 +-
hw/scsi/virtio-scsi-dataplane.c | 196 ++-------
hw/scsi/virtio-scsi.c | 52 +--
hw/virtio/dataplane/vring.c | 549 --------------------------
hw/virtio/vhost-user.c | 20 +
hw/virtio/vhost.c | 7 +
hw/virtio/virtio-balloon.c | 18 +
hw/virtio/virtio.c | 20 +-
migration/block.c | 65 ++-
stubs/qmp_pc_dimm_device_list.c | 13 -
tests/vhost-user-bridge.c | 14 +-
hw/virtio/Makefile.objs | 1 -
hw/virtio/dataplane/Makefile.objs | 1 -
pc-bios/q35-acpi-dsdt.aml | Bin 7344 -> 0 bytes
stubs/Makefile.objs | 2 +-
trace-events | 3 -
40 files changed, 321 insertions(+), 1339 deletions(-)
delete mode 100644 include/hw/virtio/dataplane/vring-accessors.h
delete mode 100644 include/hw/virtio/dataplane/vring.h
delete mode 100644 hw/virtio/dataplane/vring.c
delete mode 100644 stubs/qmp_pc_dimm_device_list.c
delete mode 100644 hw/virtio/dataplane/Makefile.objs
delete mode 100644 pc-bios/q35-acpi-dsdt.aml
next reply other threads:[~2016-02-24 20:35 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-24 20:35 Michael S. Tsirkin [this message]
2016-02-24 20:35 ` [Qemu-devel] [PULL 01/23] bios-linker-loader: document+validate input Michael S. Tsirkin
2016-02-24 20:35 ` [Qemu-devel] [PULL 02/23] vhost-user: don't merge regions with different fds Michael S. Tsirkin
2016-02-24 20:35 ` [Qemu-devel] [PULL 03/23] move get_current_ram_size to virtio-balloon.c Michael S. Tsirkin
2016-02-24 20:35 ` [Qemu-devel] [PULL 04/23] pc-dimm: rename pc_dimm_built_list() Michael S. Tsirkin
2016-02-24 20:35 ` [Qemu-devel] [PULL 05/23] pc-dimm: add pc_dimm_build_list() Michael S. Tsirkin
2016-02-25 7:01 ` Vladimir Sementsov-Ogievskiy
2016-02-25 8:39 ` Michael S. Tsirkin
2016-02-25 8:55 ` Vladimir Sementsov-Ogievskiy
2016-02-25 9:11 ` Michael S. Tsirkin
2016-02-25 9:54 ` Vladimir Sementsov-Ogievskiy
2016-02-25 10:09 ` Paolo Bonzini
2016-02-25 10:12 ` Michael S. Tsirkin
2016-02-25 10:22 ` Michael S. Tsirkin
2016-02-26 9:08 ` Vladimir Sementsov-Ogievskiy
2016-02-26 9:08 ` Vladimir Sementsov-Ogievskiy
2016-02-24 20:35 ` [Qemu-devel] [PULL 06/23] virtio-balloon: rewrite get_current_ram_size() Michael S. Tsirkin
2016-02-24 20:35 ` [Qemu-devel] [PULL 07/23] balloon: Use only 'pc-dimm' type dimm for ballooning Michael S. Tsirkin
2016-02-24 20:35 ` [Qemu-devel] [PULL 08/23] pci core: function pci_host_bus_register() cleanup Michael S. Tsirkin
2016-02-24 20:35 ` [Qemu-devel] [PULL 09/23] pci core: function pci_bus_init() cleanup Michael S. Tsirkin
2016-02-24 20:35 ` [Qemu-devel] [PULL 10/23] block-migration: acquire AioContext as necessary Michael S. Tsirkin
2016-02-24 20:35 ` [Qemu-devel] [PULL 11/23] vring: make vring_enable_notification return void Michael S. Tsirkin
2016-02-24 20:35 ` [Qemu-devel] [PULL 12/23] virtio: add AioContext-specific function for host notifiers Michael S. Tsirkin
2016-02-24 20:35 ` [Qemu-devel] [PULL 13/23] virtio: export vring_notify as virtio_should_notify Michael S. Tsirkin
2016-02-24 20:35 ` [Qemu-devel] [PULL 14/23] virtio-blk: fix "disabled data plane" mode Michael S. Tsirkin
2016-02-24 20:35 ` [Qemu-devel] [PULL 15/23] virtio-blk: do not use vring in dataplane Michael S. Tsirkin
2016-02-24 20:36 ` [Qemu-devel] [PULL 16/23] virtio-scsi: " Michael S. Tsirkin
2016-02-24 20:36 ` [Qemu-devel] [PULL 17/23] vring: remove Michael S. Tsirkin
2016-02-24 20:36 ` [Qemu-devel] [PULL 18/23] tests/vhost-user-bridge: fix build on 32 bit systems Michael S. Tsirkin
2016-02-24 20:36 ` [Qemu-devel] [PULL 19/23] q35: Remove old machine versions Michael S. Tsirkin
2016-02-24 20:36 ` [Qemu-devel] [PULL 20/23] machine: Remove no_tco field Michael S. Tsirkin
2016-02-24 20:36 ` [Qemu-devel] [PULL 21/23] ich9: Remove enable_tco arguments from init functions Michael S. Tsirkin
2016-02-24 20:36 ` [Qemu-devel] [PULL 22/23] q35: Remove unused q35-acpi-dsdt.aml file Michael S. Tsirkin
2016-02-24 20:36 ` [Qemu-devel] [PULL 23/23] q35: No need to check gigabyte_align Michael S. Tsirkin
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=1456343639-3471-1-git-send-email-mst@redhat.com \
--to=mst@redhat.com \
--cc=peter.maydell@linaro.org \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).