From: "Michael S. Tsirkin" <mst@redhat.com>
To: qemu-devel@nongnu.org, Anthony Liguori <anthony@codemonkey.ws>
Cc: peter.maydell@linaro.org, agraf@suse.de, kraxel@redhat.com,
stefanha@redhat.com, pbonzini@redhat.com, imammedo@redhat.com,
lersek@redhat.com, rth@twiddle.net
Subject: [Qemu-devel] [PULL 00/19] acpi, pci, pc, fedora, virtio fixes and enhancements
Date: Mon, 23 Dec 2013 18:11:28 +0200 [thread overview]
Message-ID: <1387815007-1272-1-git-send-email-mst@redhat.com> (raw)
The following changes since commit f976b09ea249cccc3fd41c98aaf6512908db0bae:
PPC: Fix compilation with TCG debug (2013-12-22 19:15:55 +0100)
are available in the git repository at:
git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_anthony
for you to fetch changes up to 5bf58abf1cb7220d9f7d8e18f113a353cd6f260d:
target-arm: fix build with gcc 4.8.2 (2013-12-23 18:02:23 +0200)
----------------------------------------------------------------
acpi,pci,pc,fedora,virtio fixes and enhancements
This includes some Preparatory patches for cpu hotplug for q25 and memory
hotplug by Igor, tests and memory mapping change
by Laszlo and pci reset cleanup by Paolo.
There are also some fixes for fedora and virtio:
included here since they are test blockers for me.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
----------------------------------------------------------------
Gerd Hoffmann (2):
piix: gigabyte alignment for ram
piix: fix 32bit pci hole
Igor Mammedov (5):
acpi: piix4: remove not needed GPE0 mask
acpi: factor out common pm_update_sci() into acpi core
acpi: ich9: allow guest to clear SCI rised by GPE
ACPI: Q35 DSDT: fix CPU hotplug GPE0.2 handler
ACPI/DSDT-CPU: cleanup bogus comment
Laszlo Ersek (5):
hw/i386/pc_sysfw: support two flash drives
i440fx-test: qtest_start() should be paired with qtest_end()
i440fx-test: give each GTest case its own qtest
i440fx-test: generate temporary firmware blob
i440fx-test: verify firmware under 4G and 1M, both -bios and -pflash
Michael S. Tsirkin (2):
pc_piix: document gigabyte_align
target-arm: fix build with gcc 4.8.2
Paolo Bonzini (5):
pci: do not export pci_bus_reset
pci: clean up resetting of IRQs
qdev: allow both pre- and post-order vists in qdev walking functions
qdev: switch reset to post-order
virtio: add back call to virtio_bus_device_unplugged
include/hw/acpi/acpi.h | 8 ++
include/hw/i386/pc.h | 1 +
include/hw/pci/pci.h | 1 -
include/hw/qdev-core.h | 15 ++--
hw/acpi/core.c | 18 ++++
hw/acpi/ich9.c | 24 +-----
hw/acpi/piix4.c | 27 +-----
hw/core/qdev.c | 47 ++++++++---
hw/i386/pc_piix.c | 19 ++++-
hw/i386/pc_sysfw.c | 105 +++++++++++++++++++-----
hw/pci-host/piix.c | 11 +--
hw/pci/pci.c | 42 +++++-----
hw/pci/pci_bridge.c | 2 +-
hw/s390x/virtio-ccw.c | 5 +-
hw/virtio/virtio.c | 2 +
target-arm/cpu64.c | 6 ++
tests/i440fx-test.c | 167 ++++++++++++++++++++++++++++++++++----
hw/i386/acpi-dsdt-cpu-hotplug.dsl | 1 -
hw/i386/q35-acpi-dsdt.dsl | 4 +-
19 files changed, 365 insertions(+), 140 deletions(-)
--
MST
next reply other threads:[~2013-12-23 16:07 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-23 16:11 Michael S. Tsirkin [this message]
2013-12-23 16:11 ` [Qemu-devel] [PULL 01/19] piix: gigabyte alignment for ram Michael S. Tsirkin
2013-12-23 16:11 ` [Qemu-devel] [PULL 02/19] pc_piix: document gigabyte_align Michael S. Tsirkin
2013-12-23 16:11 ` [Qemu-devel] [PULL 03/19] hw/i386/pc_sysfw: support two flash drives Michael S. Tsirkin
2013-12-23 16:11 ` [Qemu-devel] [PULL 04/19] i440fx-test: qtest_start() should be paired with qtest_end() Michael S. Tsirkin
2013-12-23 16:11 ` [Qemu-devel] [PULL 05/19] i440fx-test: give each GTest case its own qtest Michael S. Tsirkin
2013-12-23 16:11 ` [Qemu-devel] [PULL 06/19] i440fx-test: generate temporary firmware blob Michael S. Tsirkin
2013-12-23 16:11 ` [Qemu-devel] [PULL 07/19] i440fx-test: verify firmware under 4G and 1M, both -bios and -pflash Michael S. Tsirkin
2013-12-23 16:11 ` [Qemu-devel] [PULL 08/19] acpi: piix4: remove not needed GPE0 mask Michael S. Tsirkin
2013-12-23 16:11 ` [Qemu-devel] [PULL 09/19] acpi: factor out common pm_update_sci() into acpi core Michael S. Tsirkin
2013-12-23 16:12 ` [Qemu-devel] [PULL 10/19] acpi: ich9: allow guest to clear SCI rised by GPE Michael S. Tsirkin
2013-12-23 16:12 ` [Qemu-devel] [PULL 11/19] ACPI: Q35 DSDT: fix CPU hotplug GPE0.2 handler Michael S. Tsirkin
2013-12-23 16:12 ` [Qemu-devel] [PULL 12/19] ACPI/DSDT-CPU: cleanup bogus comment Michael S. Tsirkin
2013-12-23 16:12 ` [Qemu-devel] [PULL 13/19] pci: do not export pci_bus_reset Michael S. Tsirkin
2013-12-23 16:12 ` [Qemu-devel] [PULL 14/19] pci: clean up resetting of IRQs Michael S. Tsirkin
2013-12-23 16:12 ` [Qemu-devel] [PULL 15/19] qdev: allow both pre- and post-order vists in qdev walking functions Michael S. Tsirkin
2013-12-23 16:12 ` [Qemu-devel] [PULL 16/19] qdev: switch reset to post-order Michael S. Tsirkin
2013-12-23 16:12 ` [Qemu-devel] [PULL 17/19] piix: fix 32bit pci hole Michael S. Tsirkin
2013-12-23 16:12 ` [Qemu-devel] [PULL 18/19] virtio: add back call to virtio_bus_device_unplugged Michael S. Tsirkin
2013-12-23 16:12 ` [Qemu-devel] [PULL 19/19] target-arm: fix build with gcc 4.8.2 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=1387815007-1272-1-git-send-email-mst@redhat.com \
--to=mst@redhat.com \
--cc=agraf@suse.de \
--cc=anthony@codemonkey.ws \
--cc=imammedo@redhat.com \
--cc=kraxel@redhat.com \
--cc=lersek@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
--cc=stefanha@redhat.com \
/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).