From: "Michael S. Tsirkin" <mst@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>
Subject: [Qemu-devel] [PULL v2 00/30] pc, pci, virtio: new features, cleanups, fixes
Date: Tue, 5 Jul 2016 18:46:03 +0300 [thread overview]
Message-ID: <20160705184603-mutt-send-email-mst@redhat.com> (raw)
The following changes since commit e2c8f9e44e07d8210049abaa6042ec3c956f1dd4:
Merge remote-tracking branch 'remotes/thibault/tags/samuel-thibault' into staging (2016-07-04 10:49:17 +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 269fe4c3ab0cf29329317eb868f8ec90ac761b41:
vmw_pvscsi: remove unnecessary internal msi state flag (2016-07-05 13:14:41 +0300)
----------------------------------------------------------------
pc, pci, virtio: new features, cleanups, fixes
iommus can not be added with -device.
cleanups and fixes all over the place
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
----------------------------------------------------------------
Cao jin (13):
pci_register_bar: cleanup
change pvscsi_init_msi() type to void
usb xhci: change msi/msix property type
intel-hda: change msi property type
mptsas: change msi property type
megasas: change msi/msix property type
pci bridge dev: change msi property type
pci: Convert msi_init() to Error and fix callers to check it
megasas: remove unnecessary megasas_use_msi()
mptsas: remove unnecessary internal msi state flag
vmxnet3: remove unnecessary internal msi state flag
e1000e: remove unnecessary internal msi state flag
vmw_pvscsi: remove unnecessary internal msi state flag
Cornelia Huck (1):
virtio: revert host notifiers to old semantics
Gerd Hoffmann (1):
xen: fix ram init regression
Igor Mammedov (2):
tests: acpi: add CPU hotplug testcase
tests: add APIC.cphp and DSDT.cphp blobs
Marcel Apfelbaum (5):
hw/ppc: realize the PCI root bus as part of mac99 init
hw/pci: delay bus_master_enable_region initialization
q35: allow dynamic sysbus
hw/iommu: enable iommu with -device
machine: remove iommu property
Markus Armbruster (6):
piix: Set I440FXState member pci_info.w32 in one place
pc: Eliminate PcPciInfo
log: Clean up misuse of Range for -dfilter
range: Eliminate direct Range member access
range: Replace internal representation of Range
log: Permit -dfilter 0..0xffffffffffffffff
Michael S. Tsirkin (2):
virtio: set low features early on load
Revert "virtio-net: unbreak self announcement and guest offloads after migration"
hw/scsi/mptsas.h | 5 +-
include/hw/i386/pc.h | 5 --
include/hw/pci-host/q35.h | 3 +-
include/hw/pci/msi.h | 3 +-
include/hw/pci/pci_bus.h | 2 +
include/qemu/range.h | 103 +++++++++++++++++++++++++++++++-----
include/sysemu/sysemu.h | 1 +
hw/audio/intel-hda.c | 29 +++++++---
hw/core/machine.c | 20 -------
hw/i386/acpi-build.c | 44 ++++++++-------
hw/i386/intel_iommu.c | 16 ++++++
hw/i386/pc.c | 2 +-
hw/i386/pc_piix.c | 50 +++++++++--------
hw/i386/pc_q35.c | 5 +-
hw/ide/ich.c | 7 ++-
hw/net/e1000e.c | 37 +++----------
hw/net/virtio-net.c | 40 ++++++--------
hw/net/vmxnet3.c | 52 ++++++------------
hw/pci-bridge/ioh3420.c | 6 ++-
hw/pci-bridge/pci_bridge_dev.c | 31 +++++++----
hw/pci-bridge/pci_expander_bridge.c | 2 +
hw/pci-bridge/xio3130_downstream.c | 6 ++-
hw/pci-bridge/xio3130_upstream.c | 6 ++-
hw/pci-host/piix.c | 32 +++++++----
hw/pci-host/q35.c | 72 +++++++++++--------------
hw/pci/msi.c | 11 ++--
hw/pci/pci.c | 74 +++++++++++++++++---------
hw/ppc/mac_newworld.c | 1 +
hw/scsi/megasas.c | 59 +++++++++++----------
hw/scsi/mptsas.c | 36 ++++++++-----
hw/scsi/vmw_pvscsi.c | 15 ++----
hw/usb/hcd-xhci.c | 35 ++++++++----
hw/vfio/pci.c | 7 ++-
hw/virtio/virtio-bus.c | 26 ++++-----
hw/virtio/virtio.c | 10 ++++
qapi/string-input-visitor.c | 20 +++----
qapi/string-output-visitor.c | 18 +++----
tests/bios-tables-test.c | 28 ++++++++++
tests/test-logging.c | 11 ++++
util/log.c | 27 +++++-----
util/range.c | 19 +++----
vl.c | 5 ++
xen-hvm.c | 3 ++
qemu-options.hx | 3 --
tests/acpi-test-data/pc/APIC.cphp | Bin 0 -> 160 bytes
tests/acpi-test-data/pc/DSDT.cphp | Bin 0 -> 6435 bytes
tests/acpi-test-data/q35/APIC.cphp | Bin 0 -> 160 bytes
tests/acpi-test-data/q35/DSDT.cphp | Bin 0 -> 9197 bytes
48 files changed, 586 insertions(+), 401 deletions(-)
create mode 100644 tests/acpi-test-data/pc/APIC.cphp
create mode 100644 tests/acpi-test-data/pc/DSDT.cphp
create mode 100644 tests/acpi-test-data/q35/APIC.cphp
create mode 100644 tests/acpi-test-data/q35/DSDT.cphp
next reply other threads:[~2016-07-05 15:46 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-05 15:46 Michael S. Tsirkin [this message]
2016-07-05 16:48 ` [Qemu-devel] [PULL v2 00/30] pc, pci, virtio: new features, cleanups, fixes 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=20160705184603-mutt-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).