From: Thomas Huth <thuth@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>,
Richard Henderson <richard.henderson@linaro.org>
Subject: [PULL 00/23] First batch of testing and misc patches for 8.1
Date: Thu, 20 Apr 2023 12:11:53 +0200 [thread overview]
Message-ID: <20230420101216.786304-1-thuth@redhat.com> (raw)
Hi!
The following changes since commit c1eb2ddf0f8075faddc5f7c3d39feae3e8e9d6b4:
Update version for v8.0.0 release (2023-04-19 17:27:13 +0100)
are available in the Git repository at:
https://gitlab.com/thuth/qemu.git tags/pull-request-2023-04-20
for you to fetch changes up to ec6fb1c8cd8d55c3d2a34cacfea6df0fe6c76057:
tests/vm/freebsd: Update to FreeBSD 13.2 (2023-04-20 11:28:16 +0200)
----------------------------------------------------------------
* Compat machines for version 8.1
* Allow setting a chardev input file on the command line
* Fix .travis.yml to work with non-public Travis instances, too
* Move a lot of code from specifc_ss into softmmu_ss
* Add a test case for TPM TIS I2C connected to Aspeed I2C controller
* Update tests/vm/freebsd to version 13
* Some more misc minor fixes here and there
----------------------------------------------------------------
Cornelia Huck (1):
hw: Add compat machines for 8.1
Juan Quintela (3):
test: Fix test-crypto-secret when compiling without keyring support
tests/migration: Only run auto_converge in slow mode
MAINTAINERS: Add Juan Quintela to developer guides review
Peter Maydell (2):
qtest: Don't assert on "-qtest chardev:myid"
chardev: Allow setting file chardev input file on the command line
Stefan Berger (3):
qtest: Add functions for accessing devices on Aspeed I2C controller
qtest: Move tpm_util_tis_transmit() into tpm-tis-utils.c and rename it
qtest: Add a test case for TPM TIS I2C connected to Aspeed I2C controller
Stefan Weil (2):
docs: Fix typo (wphx => whpx)
docs/cxl: Fix sentence
Thomas Huth (10):
target/i386: Set family/model/stepping of the "max" CPU according to LM bit
hw/char: Move two more files from specific_ss to softmmu_ss
softmmu/qtest: Move the target-specific pseries RTAS code out of qtest.c
include/exec: Provide the tswap() functions for target independent code, too
softmmu: Make qtest.c target independent
hw/display: Compile vga.c as target-independent code
softmmu: Move dirtylimit.c into the target independent source set
hw/core: Move numa.c into the target independent source set
cpu: Remove parameter of list_cpus()
tests/vm/freebsd: Update to FreeBSD 13.2
Vaibhav Jain (2):
travis.yml: Add missing clang-10 package to the 'Clang (disable-tcg)' job
travis.yml: Add missing 'flex', 'bison' packages to 'GCC (user)' job
MAINTAINERS | 1 +
docs/system/devices/cxl.rst | 2 +-
docs/system/introduction.rst | 2 +-
include/exec/cpu-all.h | 64 +--
include/exec/cpu-common.h | 2 +-
include/exec/tswap.h | 72 ++++
include/hw/boards.h | 3 +
include/hw/i2c/aspeed_i2c.h | 7 +
include/hw/i386/pc.h | 3 +
include/sysemu/qtest.h | 4 +
tests/qtest/qtest_aspeed.h | 41 ++
tests/qtest/tpm-tis-util.h | 4 +
tests/qtest/tpm-util.h | 3 -
chardev/char-file.c | 8 +
chardev/char.c | 3 +
cpu.c | 2 +-
hw/arm/virt.c | 9 +-
hw/core/machine.c | 3 +
hw/display/vga.c | 31 +-
hw/i386/pc.c | 3 +
hw/i386/pc_piix.c | 16 +-
hw/i386/pc_q35.c | 14 +-
hw/m68k/virt.c | 9 +-
hw/ppc/spapr.c | 15 +-
hw/ppc/spapr_rtas.c | 29 ++
hw/s390x/s390-virtio-ccw.c | 14 +-
softmmu/dirtylimit.c | 3 +-
softmmu/qtest.c | 53 +--
softmmu/vl.c | 2 +-
target/i386/cpu.c | 31 +-
tests/qtest/migration-test.c | 23 +-
tests/qtest/qtest_aspeed.c | 117 ++++++
tests/qtest/tpm-crb-swtpm-test.c | 3 -
tests/qtest/tpm-crb-test.c | 3 -
tests/qtest/tpm-tis-device-swtpm-test.c | 5 +-
tests/qtest/tpm-tis-i2c-test.c | 663 ++++++++++++++++++++++++++++++++
tests/qtest/tpm-tis-swtpm-test.c | 5 +-
tests/qtest/tpm-tis-util.c | 47 ++-
tests/qtest/tpm-util.c | 45 ---
tests/unit/test-crypto-secret.c | 10 +-
.travis.yml | 5 +-
hw/char/meson.build | 5 +-
hw/core/meson.build | 2 +-
hw/display/meson.build | 2 +-
qemu-options.hx | 10 +-
softmmu/meson.build | 4 +-
tests/qtest/meson.build | 3 +
tests/vm/freebsd | 101 ++---
48 files changed, 1224 insertions(+), 282 deletions(-)
create mode 100644 include/exec/tswap.h
create mode 100644 tests/qtest/qtest_aspeed.h
create mode 100644 tests/qtest/qtest_aspeed.c
create mode 100644 tests/qtest/tpm-tis-i2c-test.c
next reply other threads:[~2023-04-20 10:12 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-20 10:11 Thomas Huth [this message]
2023-04-20 10:11 ` [PULL 01/23] hw: Add compat machines for 8.1 Thomas Huth
2023-04-20 10:11 ` [PULL 02/23] docs: Fix typo (wphx => whpx) Thomas Huth
2023-04-20 10:11 ` [PULL 03/23] docs/cxl: Fix sentence Thomas Huth
2023-04-20 10:11 ` [PULL 04/23] test: Fix test-crypto-secret when compiling without keyring support Thomas Huth
2023-04-20 10:11 ` [PULL 05/23] qtest: Don't assert on "-qtest chardev:myid" Thomas Huth
2023-04-20 10:11 ` [PULL 06/23] chardev: Allow setting file chardev input file on the command line Thomas Huth
2023-04-20 10:12 ` [PULL 07/23] travis.yml: Add missing clang-10 package to the 'Clang (disable-tcg)' job Thomas Huth
2023-04-20 10:12 ` [PULL 08/23] travis.yml: Add missing 'flex', 'bison' packages to 'GCC (user)' job Thomas Huth
2023-04-20 10:12 ` [PULL 09/23] tests/migration: Only run auto_converge in slow mode Thomas Huth
2023-04-20 10:12 ` [PULL 10/23] target/i386: Set family/model/stepping of the "max" CPU according to LM bit Thomas Huth
2023-04-20 10:12 ` [PULL 11/23] hw/char: Move two more files from specific_ss to softmmu_ss Thomas Huth
2023-04-20 10:12 ` [PULL 12/23] softmmu/qtest: Move the target-specific pseries RTAS code out of qtest.c Thomas Huth
2023-04-20 10:12 ` [PULL 13/23] include/exec: Provide the tswap() functions for target independent code, too Thomas Huth
2023-04-20 10:12 ` [PULL 14/23] softmmu: Make qtest.c target independent Thomas Huth
2023-04-20 10:12 ` [PULL 15/23] hw/display: Compile vga.c as target-independent code Thomas Huth
2023-04-20 10:12 ` [PULL 16/23] softmmu: Move dirtylimit.c into the target independent source set Thomas Huth
2023-04-20 10:12 ` [PULL 17/23] hw/core: Move numa.c " Thomas Huth
2023-04-20 10:12 ` [PULL 18/23] cpu: Remove parameter of list_cpus() Thomas Huth
2023-04-20 10:12 ` [PULL 19/23] MAINTAINERS: Add Juan Quintela to developer guides review Thomas Huth
2023-04-20 10:12 ` [PULL 20/23] qtest: Add functions for accessing devices on Aspeed I2C controller Thomas Huth
2023-04-20 10:12 ` [PULL 21/23] qtest: Move tpm_util_tis_transmit() into tpm-tis-utils.c and rename it Thomas Huth
2023-04-20 10:12 ` [PULL 22/23] qtest: Add a test case for TPM TIS I2C connected to Aspeed I2C controller Thomas Huth
2023-04-20 10:12 ` [PULL 23/23] tests/vm/freebsd: Update to FreeBSD 13.2 Thomas Huth
2023-04-21 17:28 ` [PULL 00/23] First batch of testing and misc patches for 8.1 Richard Henderson
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=20230420101216.786304-1-thuth@redhat.com \
--to=thuth@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=richard.henderson@linaro.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).