The following changes since commit 8c1ecb590497b0349c550607db923972b37f6963:
Merge remote-tracking branch 'remotes/stsquad/tags/pull-testing-next-280519-2' into staging (2019-05-28 17:38:32 +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 df7cafdeb68b6572fa81d2be9a1910547c4dfafc: bios-tables-test: list all tables that differ (2019-06-03 08:05:43 -0400) ---------------------------------------------------------------- virtio, pci, pc: cleanups, features stricter rules for acpi tables: we now fail on any difference that isn't whitelisted. vhost-scsi migration. some cleanups all over the place Signed-off-by: Michael S. Tsirkin <m...@redhat.com> ---------------------------------------------------------------- David Gibson (3): pcie: Simplify pci_adjust_config_limit() pci: Make is_bridge a bool pci: Fold pci_get_bus_devfn() into its sole caller Igor Mammedov (1): docs: smbios: remove family=x from type2 entry description Jie Wang (3): vhost: remove the dead code vhost: fix incorrect print type vhost: fix memory leak in vhost_user_scsi_realize Liran Alon (1): vhost-scsi: Allow user to enable migration Michael S. Tsirkin (2): bios-tables-test: add diff allowed list bios-tables-test: list all tables that differ Nir Weiner (2): vhost-scsi: The vhost backend should be stopped when the VM is not running vhost-scsi: Add VMState descriptor Wei Yang (2): hw/acpi: Consolidate build_mcfg to pci.c acpi: pci: use build_append_foo() API to construct MCFG default-configs/i386-softmmu.mak | 1 + include/hw/acpi/acpi-defs.h | 18 ------ include/hw/acpi/pci.h | 1 + include/hw/pci/pci.h | 3 +- include/hw/pci/pci_bus.h | 8 ++- include/hw/virtio/vhost-scsi-common.h | 1 + tests/bios-tables-test-allowed-diff.h | 1 + hw/acpi/pci.c | 61 ++++++++++++++++++++ hw/arm/virt-acpi-build.c | 17 ------ hw/i386/acpi-build.c | 18 +----- hw/pci-bridge/dec.c | 4 +- hw/pci-bridge/i82801b11.c | 2 +- hw/pci-bridge/pci_bridge_dev.c | 2 +- hw/pci-bridge/pcie_pci_bridge.c | 2 +- hw/pci-bridge/pcie_root_port.c | 2 +- hw/pci-bridge/simba.c | 2 +- hw/pci-bridge/xio3130_downstream.c | 2 +- hw/pci-bridge/xio3130_upstream.c | 2 +- hw/pci/pci.c | 101 +++++++++++++++++----------------- hw/pci/pci_host.c | 13 +---- hw/ppc/spapr_pci.c | 34 ++++-------- hw/scsi/vhost-scsi.c | 57 +++++++++++++++---- hw/scsi/vhost-user-scsi.c | 3 + hw/virtio/vhost.c | 3 +- tests/bios-tables-test.c | 23 +++++++- hw/acpi/Kconfig | 4 ++ hw/acpi/Makefile.objs | 1 + hw/arm/Kconfig | 1 + qemu-options.hx | 2 +- 29 files changed, 226 insertions(+), 163 deletions(-) create mode 100644 tests/bios-tables-test-allowed-diff.h create mode 100644 hw/acpi/pci.c