From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40412) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bKSY5-00042M-QP for qemu-devel@nongnu.org; Tue, 05 Jul 2016 11:46:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bKSY2-0005R6-Jo for qemu-devel@nongnu.org; Tue, 05 Jul 2016 11:46:09 -0400 Received: from mx1.redhat.com ([209.132.183.28]:43369) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bKSY2-0005R2-BU for qemu-devel@nongnu.org; Tue, 05 Jul 2016 11:46:06 -0400 Date: Tue, 5 Jul 2016 18:46:03 +0300 From: "Michael S. Tsirkin" Message-ID: <20160705184603-mutt-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PULL v2 00/30] pc, pci, virtio: new features, cleanups, fixes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell 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 ---------------------------------------------------------------- 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