From: "Michael S. Tsirkin" <mst@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>
Subject: [Qemu-devel] [PULL 00/28] pc, virtio enhancements
Date: Mon, 11 May 2015 14:46:54 +0200 [thread overview]
Message-ID: <1431329108-2605-1-git-send-email-mst@redhat.com> (raw)
The following changes since commit 0d81cdddaa40a1988b24657aeac19959cfad0fde:
Merge remote-tracking branch 'remotes/qmp-unstable/tags/for-upstream' into staging (2015-04-27 17:28:41 +0100)
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 bc1f7c4c915a7c727741c4d27a2795e1039eacd3:
acpi: update expected files for memory unplug (2015-05-11 09:21:37 +0200)
----------------------------------------------------------------
pc, virtio enhancements
Memory hot-unplug support for pc, MSI-X
mapping update speedup for virtio-pci,
misc refactorings and bugfixes.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
----------------------------------------------------------------
Gal Hammer (1):
acpi: add a missing backslash to the \_SB scope.
Jason Wang (10):
virtio-net: fix the upper bound when trying to delete queues
pc: add 2.4 machine types
spapr: add machine type specific instance init function
ppc: spapr: add 2.4 machine type
monitor: replace the magic number 255 with MAX_QUEUE_NUM
monitor: check return value of qemu_find_net_clients_except()
virtio-ccw: using VIRTIO_NO_VECTOR instead of 0 for invalid virtqueue
virtio: introduce vector to virtqueues mapping
virtio-pci: speedup MSI-X masking and unmasking
pci: remove hard-coded bar size in msix_init_exclusive_bar()
Luke Gorrie (1):
vhost-user: Send VHOST_RESET_OWNER on vhost stop
Michael S. Tsirkin (3):
acpi-build: close } in comment
virtio: coding style tweak
acpi: update expected files for memory unplug
Shannon Zhao (4):
hw/i386: Move ACPI header definitions in an arch-independent location
hw/i386/acpi-build: move generic acpi building helpers into dedictated file
virtio-net: Move DEFINE_VIRTIO_NET_FEATURES to virtio-net
virtio-scsi: Move DEFINE_VIRTIO_SCSI_FEATURES to virtio-scsi
Tang Chen (3):
acpi, mem-hotplug: add acpi_memory_slot_status() to get MemStatus
acpi, mem-hotplug: add unplug request cb for memory device
acpi, mem-hotplug: add unplug cb for memory device
Thomas Huth (1):
pci: Merge pci_nic_init() into pci_nic_init_nofail()
Zhu Guihua (5):
docs: update documentation for memory hot unplug
acpi: extend aml_field() to support UpdateRule
acpi: fix "Memory device control fields" register
acpi: add hardware implementation for memory hot unplug
qmp-event: add event notification for memory hot unplug error
qapi/event.json | 14 ++++
{hw/i386 => include/hw/acpi}/acpi-defs.h | 0
include/hw/acpi/aml-build.h | 41 +++++++++++-
include/hw/acpi/memory_hotplug.h | 12 ++++
include/hw/acpi/pc-hotplug.h | 3 +
include/hw/qdev-core.h | 1 +
include/hw/virtio/virtio-bus.h | 1 +
include/hw/virtio/virtio-net.h | 2 +-
include/hw/virtio/virtio-scsi.h | 1 +
include/hw/virtio/virtio.h | 3 +
hw/acpi/aml-build.c | 62 +++++++++++++++++-
hw/acpi/ich9.c | 19 ++++--
hw/acpi/memory_hotplug.c | 96 +++++++++++++++++++++++++--
hw/acpi/piix4.c | 17 ++++-
hw/core/qdev.c | 2 +-
hw/i386/acpi-build.c | 108 +++++++------------------------
hw/i386/pc.c | 62 ++++++++++++++++--
hw/i386/pc_piix.c | 29 +++++++--
hw/i386/pc_q35.c | 26 +++++++-
hw/net/vhost_net.c | 7 ++
hw/net/virtio-net.c | 9 ++-
hw/pci/msix.c | 30 +++++----
hw/pci/pci.c | 43 ++++--------
hw/ppc/spapr.c | 54 +++++++++++++++-
hw/s390x/s390-virtio-bus.c | 3 -
hw/s390x/virtio-ccw.c | 5 +-
hw/scsi/virtio-scsi.c | 5 ++
hw/virtio/virtio-pci.c | 51 ++++++++-------
hw/virtio/virtio.c | 36 ++++++++++-
monitor.c | 25 +++----
tests/bios-tables-test.c | 2 +-
docs/memory-hotplug.txt | 23 ++++++-
docs/qmp/qmp-events.txt | 17 +++++
docs/specs/acpi_mem_hotplug.txt | 58 +++++++++++++++--
hw/i386/acpi-dsdt-mem-hotplug.dsl | 13 +++-
tests/acpi-test-data/pc/DSDT | Bin 2970 -> 3028 bytes
tests/acpi-test-data/pc/SSDT | Bin 2475 -> 2486 bytes
tests/acpi-test-data/pc/SSDT.bridge | Bin 4334 -> 4345 bytes
tests/acpi-test-data/q35/DSDT | Bin 7608 -> 7666 bytes
tests/acpi-test-data/q35/SSDT | Bin 680 -> 691 bytes
tests/acpi-test-data/q35/SSDT.bridge | Bin 697 -> 708 bytes
trace-events | 4 ++
42 files changed, 673 insertions(+), 211 deletions(-)
rename {hw/i386 => include/hw/acpi}/acpi-defs.h (100%)
next reply other threads:[~2015-05-11 12:47 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-11 12:46 Michael S. Tsirkin [this message]
2015-05-11 12:46 ` [Qemu-devel] [PULL 01/28] acpi-build: close } in comment Michael S. Tsirkin
2015-05-11 12:47 ` [Qemu-devel] [PULL 02/28] hw/i386: Move ACPI header definitions in an arch-independent location Michael S. Tsirkin
2015-05-11 12:47 ` [Qemu-devel] [PULL 03/28] hw/i386/acpi-build: move generic acpi building helpers into dedictated file Michael S. Tsirkin
2015-05-11 12:47 ` [Qemu-devel] [PULL 04/28] vhost-user: Send VHOST_RESET_OWNER on vhost stop Michael S. Tsirkin
2015-05-11 12:47 ` [Qemu-devel] [PULL 05/28] virtio-net: fix the upper bound when trying to delete queues Michael S. Tsirkin
2015-05-11 12:47 ` [Qemu-devel] [PULL 06/28] pc: add 2.4 machine types Michael S. Tsirkin
2015-05-11 12:47 ` [Qemu-devel] [PULL 07/28] spapr: add machine type specific instance init function Michael S. Tsirkin
2015-05-11 12:47 ` [Qemu-devel] [PULL 08/28] ppc: spapr: add 2.4 machine type Michael S. Tsirkin
2015-05-11 12:47 ` [Qemu-devel] [PULL 09/28] monitor: replace the magic number 255 with MAX_QUEUE_NUM Michael S. Tsirkin
2015-05-11 12:47 ` [Qemu-devel] [PULL 10/28] monitor: check return value of qemu_find_net_clients_except() Michael S. Tsirkin
2015-05-11 12:47 ` [Qemu-devel] [PULL 11/28] virtio-ccw: using VIRTIO_NO_VECTOR instead of 0 for invalid virtqueue Michael S. Tsirkin
2015-05-11 12:47 ` [Qemu-devel] [PULL 12/28] virtio: introduce vector to virtqueues mapping Michael S. Tsirkin
2015-05-11 12:47 ` [Qemu-devel] [PULL 13/28] virtio-pci: speedup MSI-X masking and unmasking Michael S. Tsirkin
2015-05-11 12:47 ` [Qemu-devel] [PULL 14/28] pci: remove hard-coded bar size in msix_init_exclusive_bar() Michael S. Tsirkin
2015-05-11 12:47 ` [Qemu-devel] [PULL 15/28] virtio: coding style tweak Michael S. Tsirkin
2015-05-11 12:48 ` [Qemu-devel] [PULL 16/28] docs: update documentation for memory hot unplug Michael S. Tsirkin
2015-05-11 12:48 ` [Qemu-devel] [PULL 17/28] acpi, mem-hotplug: add acpi_memory_slot_status() to get MemStatus Michael S. Tsirkin
2015-05-11 12:48 ` [Qemu-devel] [PULL 18/28] acpi, mem-hotplug: add unplug request cb for memory device Michael S. Tsirkin
2015-05-11 12:48 ` [Qemu-devel] [PULL 19/28] acpi, mem-hotplug: add unplug " Michael S. Tsirkin
2015-05-11 12:48 ` [Qemu-devel] [PULL 20/28] acpi: extend aml_field() to support UpdateRule Michael S. Tsirkin
2015-05-11 12:48 ` [Qemu-devel] [PULL 21/28] acpi: fix "Memory device control fields" register Michael S. Tsirkin
2015-05-11 12:48 ` [Qemu-devel] [PULL 22/28] acpi: add hardware implementation for memory hot unplug Michael S. Tsirkin
2015-05-11 12:48 ` [Qemu-devel] [PULL 23/28] qmp-event: add event notification for memory hot unplug error Michael S. Tsirkin
2015-05-11 15:03 ` Eric Blake
2015-05-11 15:17 ` Michael S. Tsirkin
2015-05-11 12:48 ` [Qemu-devel] [PULL 24/28] acpi: add a missing backslash to the \_SB scope Michael S. Tsirkin
2015-05-11 12:48 ` [Qemu-devel] [PULL 25/28] pci: Merge pci_nic_init() into pci_nic_init_nofail() Michael S. Tsirkin
2015-05-11 12:48 ` [Qemu-devel] [PULL 26/28] virtio-net: Move DEFINE_VIRTIO_NET_FEATURES to virtio-net Michael S. Tsirkin
2015-05-11 12:48 ` [Qemu-devel] [PULL 27/28] virtio-scsi: Move DEFINE_VIRTIO_SCSI_FEATURES to virtio-scsi Michael S. Tsirkin
2015-05-11 12:48 ` [Qemu-devel] [PULL 28/28] acpi: update expected files for memory unplug Michael S. Tsirkin
2015-05-12 7:49 ` [Qemu-devel] [PULL 00/28] pc, virtio enhancements 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=1431329108-2605-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).