[Qemu-devel] [PULL v3 00/17] virtio, pci, pc: cleanups, features

Michael S. Tsirkin posted 17 patches 4 years, 10 months ago
Only 3 patches received!
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                |  53 ++++++++++++++++-
hw/acpi/Kconfig                         |   4 ++
hw/acpi/Makefile.objs                   |   1 +
hw/arm/Kconfig                          |   1 +
qemu-options.hx                         |   2 +-
tests/Makefile.include                  |   4 ++
tests/data/acpi/rebuild-expected-aml.sh |   2 +-
tests/data/acpi/virt/APIC               | Bin 0 -> 168 bytes
tests/data/acpi/virt/DSDT               | Bin 0 -> 18476 bytes
tests/data/acpi/virt/FACP               | Bin 0 -> 268 bytes
tests/data/acpi/virt/GTDT               | Bin 0 -> 96 bytes
tests/data/acpi/virt/MCFG               | Bin 0 -> 60 bytes
tests/data/acpi/virt/SPCR               | Bin 0 -> 80 bytes
37 files changed, 261 insertions(+), 164 deletions(-)
create mode 100644 tests/bios-tables-test-allowed-diff.h
create mode 100644 hw/acpi/pci.c
create mode 100644 tests/data/acpi/virt/APIC
create mode 100644 tests/data/acpi/virt/DSDT
create mode 100644 tests/data/acpi/virt/FACP
create mode 100644 tests/data/acpi/virt/GTDT
create mode 100644 tests/data/acpi/virt/MCFG
create mode 100644 tests/data/acpi/virt/SPCR
[Qemu-devel] [PULL v3 00/17] virtio, pci, pc: cleanups, features
Posted by Michael S. Tsirkin 4 years, 10 months ago
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 7f36f0930ffec11a551844c0452dbce33f80a525:

  bios-tables-test: ignore identical binaries (2019-06-05 15:54:15 -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 <mst@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 (3):
      docs: smbios: remove family=x from type2 entry description
      tests: add expected ACPI tables for arm/virt board
      tests: acpi: add simple arm/virt testcase

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 (3):
      bios-tables-test: add diff allowed list
      bios-tables-test: list all tables that differ
      bios-tables-test: ignore identical binaries

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                |  53 ++++++++++++++++-
 hw/acpi/Kconfig                         |   4 ++
 hw/acpi/Makefile.objs                   |   1 +
 hw/arm/Kconfig                          |   1 +
 qemu-options.hx                         |   2 +-
 tests/Makefile.include                  |   4 ++
 tests/data/acpi/rebuild-expected-aml.sh |   2 +-
 tests/data/acpi/virt/APIC               | Bin 0 -> 168 bytes
 tests/data/acpi/virt/DSDT               | Bin 0 -> 18476 bytes
 tests/data/acpi/virt/FACP               | Bin 0 -> 268 bytes
 tests/data/acpi/virt/GTDT               | Bin 0 -> 96 bytes
 tests/data/acpi/virt/MCFG               | Bin 0 -> 60 bytes
 tests/data/acpi/virt/SPCR               | Bin 0 -> 80 bytes
 37 files changed, 261 insertions(+), 164 deletions(-)
 create mode 100644 tests/bios-tables-test-allowed-diff.h
 create mode 100644 hw/acpi/pci.c
 create mode 100644 tests/data/acpi/virt/APIC
 create mode 100644 tests/data/acpi/virt/DSDT
 create mode 100644 tests/data/acpi/virt/FACP
 create mode 100644 tests/data/acpi/virt/GTDT
 create mode 100644 tests/data/acpi/virt/MCFG
 create mode 100644 tests/data/acpi/virt/SPCR


Re: [Qemu-devel] [PULL v3 00/17] virtio, pci, pc: cleanups, features
Posted by Peter Maydell 4 years, 10 months ago
On Wed, 5 Jun 2019 at 21:00, Michael S. Tsirkin <mst@redhat.com> wrote:
>
> 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 7f36f0930ffec11a551844c0452dbce33f80a525:
>
>   bios-tables-test: ignore identical binaries (2019-06-05 15:54:15 -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 <mst@redhat.com>
>


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/4.1
for any user-visible changes.

-- PMM