[PULL 00/17] pc,virtio,pci: fixes, tests

Michael S. Tsirkin posted 17 patches 4 years, 8 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20210223160144.1507082-1-mst@redhat.com
Maintainers: Eduardo Habkost <ehabkost@redhat.com>, "Philippe Mathieu-Daudé" <f4bug@amsat.org>, Igor Mammedov <imammedo@redhat.com>, Jiaxun Yang <jiaxun.yang@flygoat.com>, Paolo Bonzini <pbonzini@redhat.com>, Richard Henderson <richard.henderson@linaro.org>, Marcel Apfelbaum <marcel.apfelbaum@gmail.com>, Aurelien Jarno <aurelien@aurel32.net>, Huacai Chen <chenhuacai@kernel.org>, Jason Wang <jasowang@redhat.com>, "Michael S. Tsirkin" <mst@redhat.com>
include/hw/acpi/acpi.h            |   4 +-
include/hw/acpi/ich9.h            |   1 +
hw/acpi/core.c                    |  11 ++++-
hw/acpi/ich9.c                    |   2 +-
hw/acpi/piix4.c                   |   5 +-
hw/core/machine.c                 |   5 +-
hw/i386/acpi-build.c              |  72 ++++++++++++++++++++++++---
hw/isa/lpc_ich9.c                 |   1 +
hw/isa/vt82c686.c                 |   2 +-
hw/net/virtio-net.c               |  20 ++++----
hw/pci-host/gpex-acpi.c           |   1 +
hw/pci/pci.c                      |   6 +--
hw/pci/pcie.c                     |  19 ++++----
tests/qtest/bios-tables-test.c    | 100 ++++++++++++++++++++++++++++++++++++++
scripts/checkpatch.pl             |   4 +-
tests/data/acpi/pc/DSDT.nohpet    | Bin 0 -> 4923 bytes
tests/data/acpi/pc/FACP.nosmm     | Bin 0 -> 116 bytes
tests/data/acpi/q35/DSDT          | Bin 7801 -> 7859 bytes
tests/data/acpi/q35/DSDT.acpihmat | Bin 9126 -> 9184 bytes
tests/data/acpi/q35/DSDT.bridge   | Bin 7819 -> 7877 bytes
tests/data/acpi/q35/DSDT.cphp     | Bin 8265 -> 8323 bytes
tests/data/acpi/q35/DSDT.dimmpxm  | Bin 9455 -> 9513 bytes
tests/data/acpi/q35/DSDT.ipmibt   | Bin 7876 -> 7934 bytes
tests/data/acpi/q35/DSDT.memhp    | Bin 9160 -> 9218 bytes
tests/data/acpi/q35/DSDT.mmio64   | Bin 8932 -> 8990 bytes
tests/data/acpi/q35/DSDT.nohpet   | Bin 0 -> 7717 bytes
tests/data/acpi/q35/DSDT.numamem  | Bin 7807 -> 7865 bytes
tests/data/acpi/q35/DSDT.tis      | Bin 8407 -> 8465 bytes
tests/data/acpi/q35/FACP.nosmm    | Bin 0 -> 244 bytes
tests/data/acpi/virt/DSDT.pxb     | Bin 7689 -> 7695 bytes
30 files changed, 216 insertions(+), 37 deletions(-)
create mode 100644 tests/data/acpi/pc/DSDT.nohpet
create mode 100644 tests/data/acpi/pc/FACP.nosmm
create mode 100644 tests/data/acpi/q35/DSDT.nohpet
create mode 100644 tests/data/acpi/q35/FACP.nosmm
[PULL 00/17] pc,virtio,pci: fixes, tests
Posted by Michael S. Tsirkin 4 years, 8 months ago
The following changes since commit 7ef8134565dccf9186d5eabd7dbb4ecae6dead87:

  Merge remote-tracking branch 'remotes/edgar/tags/edgar/cris-next-2021-02-22.for-upstream' into staging (2021-02-22 14:20:32 +0000)

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 7b630d937a6c73fb145746fb31e0fb4b08f0cf0e:

  qtest/acpi/bios-tables-test: update acpi tables (2021-02-23 10:58:42 -0500)

----------------------------------------------------------------
pc,virtio,pci: fixes, tests

Fixes all over the place, a new test.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

----------------------------------------------------------------
Isaku Yamahata (9):
      checkpatch: don't emit warning on newly created acpi data files
      qtest: update tests/qtest/bios-tables-test-allowed-diff.h
      ich9, piix4: add property, smm-compat, to keep compatibility of SMM
      acpi/core: always set SCI_EN when SMM isn't supported
      acpi: set fadt.smi_cmd to zero when SMM is not supported
      acpi: add test case for smm unsupported -machine smm=off
      hw/i386: declare ACPI mother board resource for MMCONFIG region
      acpi: add test case for -no-hpet
      qtest/acpi/bios-tables-test: update acpi tables

Laurent Vivier (4):
      pci: cleanup failover sanity check
      virtio-net: add missing object_unref()
      failover: really display a warning when the primary device is not found
      pcie: don't set link state active if the slot is empty

Sean Christopherson (1):
      i386: acpi: Don't build HPET ACPI entry if HPET is disabled

Xingang Wang (3):
      acpi: Allow pxb DSDT acpi table changes
      acpi/gpex: Fix cca attribute check for pxb device
      tests/data/acpi/virt/DSDT.pxb: update with _CCA

 include/hw/acpi/acpi.h            |   4 +-
 include/hw/acpi/ich9.h            |   1 +
 hw/acpi/core.c                    |  11 ++++-
 hw/acpi/ich9.c                    |   2 +-
 hw/acpi/piix4.c                   |   5 +-
 hw/core/machine.c                 |   5 +-
 hw/i386/acpi-build.c              |  72 ++++++++++++++++++++++++---
 hw/isa/lpc_ich9.c                 |   1 +
 hw/isa/vt82c686.c                 |   2 +-
 hw/net/virtio-net.c               |  20 ++++----
 hw/pci-host/gpex-acpi.c           |   1 +
 hw/pci/pci.c                      |   6 +--
 hw/pci/pcie.c                     |  19 ++++----
 tests/qtest/bios-tables-test.c    | 100 ++++++++++++++++++++++++++++++++++++++
 scripts/checkpatch.pl             |   4 +-
 tests/data/acpi/pc/DSDT.nohpet    | Bin 0 -> 4923 bytes
 tests/data/acpi/pc/FACP.nosmm     | Bin 0 -> 116 bytes
 tests/data/acpi/q35/DSDT          | Bin 7801 -> 7859 bytes
 tests/data/acpi/q35/DSDT.acpihmat | Bin 9126 -> 9184 bytes
 tests/data/acpi/q35/DSDT.bridge   | Bin 7819 -> 7877 bytes
 tests/data/acpi/q35/DSDT.cphp     | Bin 8265 -> 8323 bytes
 tests/data/acpi/q35/DSDT.dimmpxm  | Bin 9455 -> 9513 bytes
 tests/data/acpi/q35/DSDT.ipmibt   | Bin 7876 -> 7934 bytes
 tests/data/acpi/q35/DSDT.memhp    | Bin 9160 -> 9218 bytes
 tests/data/acpi/q35/DSDT.mmio64   | Bin 8932 -> 8990 bytes
 tests/data/acpi/q35/DSDT.nohpet   | Bin 0 -> 7717 bytes
 tests/data/acpi/q35/DSDT.numamem  | Bin 7807 -> 7865 bytes
 tests/data/acpi/q35/DSDT.tis      | Bin 8407 -> 8465 bytes
 tests/data/acpi/q35/FACP.nosmm    | Bin 0 -> 244 bytes
 tests/data/acpi/virt/DSDT.pxb     | Bin 7689 -> 7695 bytes
 30 files changed, 216 insertions(+), 37 deletions(-)
 create mode 100644 tests/data/acpi/pc/DSDT.nohpet
 create mode 100644 tests/data/acpi/pc/FACP.nosmm
 create mode 100644 tests/data/acpi/q35/DSDT.nohpet
 create mode 100644 tests/data/acpi/q35/FACP.nosmm


Re: [PULL 00/17] pc,virtio,pci: fixes, tests
Posted by Peter Maydell 4 years, 8 months ago
On Tue, 23 Feb 2021 at 16:03, Michael S. Tsirkin <mst@redhat.com> wrote:
>
> The following changes since commit 7ef8134565dccf9186d5eabd7dbb4ecae6dead87:
>
>   Merge remote-tracking branch 'remotes/edgar/tags/edgar/cris-next-2021-02-22.for-upstream' into staging (2021-02-22 14:20:32 +0000)
>
> 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 7b630d937a6c73fb145746fb31e0fb4b08f0cf0e:
>
>   qtest/acpi/bios-tables-test: update acpi tables (2021-02-23 10:58:42 -0500)
>
> ----------------------------------------------------------------
> pc,virtio,pci: fixes, tests
>
> Fixes all over the place, a new test.
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
>


Applied, thanks.

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

-- PMM