From: "Michael S. Tsirkin" <mst@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>
Subject: [PULL 00/17] pc,virtio,pci: fixes, tests
Date: Tue, 23 Feb 2021 11:03:40 -0500 [thread overview]
Message-ID: <20210223160144.1507082-1-mst@redhat.com> (raw)
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
next reply other threads:[~2021-02-23 16:05 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-23 16:03 Michael S. Tsirkin [this message]
2021-02-23 16:03 ` [PULL 01/17] pci: cleanup failover sanity check Michael S. Tsirkin
2021-02-23 16:03 ` [PULL 02/17] virtio-net: add missing object_unref() Michael S. Tsirkin
2021-02-23 16:03 ` [PULL 03/17] failover: really display a warning when the primary device is not found Michael S. Tsirkin
2021-02-23 16:03 ` [PULL 04/17] pcie: don't set link state active if the slot is empty Michael S. Tsirkin
2021-02-23 16:03 ` [PULL 05/17] acpi: Allow pxb DSDT acpi table changes Michael S. Tsirkin
2021-02-23 16:03 ` [PULL 06/17] acpi/gpex: Fix cca attribute check for pxb device Michael S. Tsirkin
2021-02-23 16:03 ` [PULL 07/17] tests/data/acpi/virt/DSDT.pxb: update with _CCA Michael S. Tsirkin
2021-02-23 16:03 ` [PULL 08/17] checkpatch: don't emit warning on newly created acpi data files Michael S. Tsirkin
2021-02-23 16:04 ` [PULL 09/17] qtest: update tests/qtest/bios-tables-test-allowed-diff.h Michael S. Tsirkin
2021-02-23 16:04 ` [PULL 10/17] ich9, piix4: add property, smm-compat, to keep compatibility of SMM Michael S. Tsirkin
2021-02-23 16:04 ` [PULL 11/17] acpi/core: always set SCI_EN when SMM isn't supported Michael S. Tsirkin
2021-02-23 16:04 ` [PULL 13/17] acpi: add test case for smm unsupported -machine smm=off Michael S. Tsirkin
2021-02-23 16:04 ` [PULL 14/17] hw/i386: declare ACPI mother board resource for MMCONFIG region Michael S. Tsirkin
2021-02-23 16:04 ` [PULL 15/17] i386: acpi: Don't build HPET ACPI entry if HPET is disabled Michael S. Tsirkin
2021-02-23 16:04 ` [PULL 16/17] acpi: add test case for -no-hpet Michael S. Tsirkin
2021-02-23 16:04 ` [PULL 17/17] qtest/acpi/bios-tables-test: update acpi tables Michael S. Tsirkin
2021-02-23 16:05 ` [PULL 12/17] acpi: set fadt.smi_cmd to zero when SMM is not supported Michael S. Tsirkin
2021-02-25 19:07 ` [PULL 00/17] pc,virtio,pci: fixes, tests 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=20210223160144.1507082-1-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).