From: Thomas Huth <thuth@redhat.com>
To: Stefan Hajnoczi <stefanha@redhat.com>, qemu-devel@nongnu.org
Subject: [PULL 00/21] s390x and qtest patches
Date: Fri, 28 Oct 2022 15:22:43 +0200 [thread overview]
Message-ID: <20221028132304.829103-1-thuth@redhat.com> (raw)
Hello Stefan!
The following changes since commit 344744e148e6e865f5a57e745b02a87e5ea534ad:
Merge tag 'dump-pull-request' of https://gitlab.com/marcandre.lureau/qemu into staging (2022-10-26 10:53:49 -0400)
are available in the Git repository at:
https://gitlab.com/thuth/qemu.git tags/pull-request-2022-10-28
for you to fetch changes up to db8fca024fa98241ed40470f87b8ecfb82c57d32:
tests/qtest: libqtest: Correct the timeout unit of blocking receive calls for win32 (2022-10-28 14:32:09 +0200)
----------------------------------------------------------------
* Fix and test the VISTR instruction on s390x
* Some more small s390x fixes and maintainer updates
* Make sure to remove all temporary files from qtests
* OpenBSD VM test update to version 7.2
* Add sndio to FreeBSD tests
* More patches to enable the qtests on Windows
----------------------------------------------------------------
Akihiko Odaki (1):
tests/qtest/libqos/e1000e: Use e1000_regs.h
Bin Meng (6):
tests/qtest: Support libqtest to build and run on Windows
tests/qtest: device-plug-test: Reverse the usage of double/single quotes
tests/qtest: Use EXIT_FAILURE instead of magic number
tests/qtest: libqtest: Introduce qtest_wait_qemu()
tests/qtest: libqos: Do not build virtio-9p unconditionally
tests/qtest: libqtest: Correct the timeout unit of blocking receive calls for win32
Brad Smith (2):
tests/vm: update openbsd to release 7.2
tests: Add sndio to the FreeBSD CI containers / VM
Christian Borntraeger (1):
MAINTAINERS: target/s390x/: add Ilya as reviewer
Claudio Imbrenda (1):
s390x/pv: remove semicolon from macro definition
Cornelia Huck (1):
s390x: step down as general arch maintainer
Nico Boehr (1):
s390x/tod-kvm: don't save/restore the TOD in PV guests
Thomas Huth (5):
tests/tcg/s390x: Test compiler flags only once, not every time
target/s390x: Fix emulation of the VISTR instruction
tests/tcg/s390x: Add a test for the vistr instruction
tests/qtest/tpm: Clean up remainders of swtpm
tests/qtest/cxl-test: Remove temporary directories after testing
Xuzhou Cheng (3):
accel/qtest: Support qtest accelerator for Windows
tests/qtest: Use send/recv for socket communication
tests/qtest: migration-test: Make sure QEMU process "to" exited after migration is canceled
hw/net/e1000_regs.h | 1 +
include/hw/core/cpu.h | 1 +
include/qemu/sockets.h | 13 ++
tests/qtest/libqtest.h | 9 +
tests/qtest/tpm-util.h | 1 +
accel/dummy-cpus.c | 14 +-
hw/s390x/pv.c | 2 +-
hw/s390x/tod-kvm.c | 9 +
softmmu/cpus.c | 9 +-
tests/qtest/cxl-test.c | 3 +
tests/qtest/dbus-vmstate-test.c | 2 +-
tests/qtest/device-plug-test.c | 16 +-
tests/qtest/libqmp.c | 5 +-
tests/qtest/libqos/e1000e.c | 119 ++++-------
tests/qtest/libqtest.c | 151 +++++++++++--
tests/qtest/migration-test.c | 8 +-
tests/qtest/tpm-crb-swtpm-test.c | 5 +-
tests/qtest/tpm-tis-device-swtpm-test.c | 5 +-
tests/qtest/tpm-tis-swtpm-test.c | 5 +-
tests/qtest/tpm-util.c | 19 ++
tests/tcg/s390x/vistr.c | 45 ++++
util/osdep.c | 22 ++
target/s390x/tcg/translate_vx.c.inc | 2 +-
.gitlab-ci.d/cirrus/freebsd-12.vars | 2 +-
.gitlab-ci.d/cirrus/freebsd-13.vars | 2 +-
MAINTAINERS | 3 +-
accel/meson.build | 2 +-
accel/qtest/meson.build | 3 +-
tests/docker/dockerfiles/alpine.docker | 3 +-
tests/docker/dockerfiles/centos8.docker | 2 +-
tests/docker/dockerfiles/debian-amd64-cross.docker | 235 ++++++++++----------
tests/docker/dockerfiles/debian-amd64.docker | 237 +++++++++++----------
tests/docker/dockerfiles/debian-arm64-cross.docker | 233 ++++++++++----------
tests/docker/dockerfiles/debian-armel-cross.docker | 231 ++++++++++----------
tests/docker/dockerfiles/debian-armhf-cross.docker | 233 ++++++++++----------
.../dockerfiles/debian-mips64el-cross.docker | 227 ++++++++++----------
.../docker/dockerfiles/debian-mipsel-cross.docker | 227 ++++++++++----------
.../docker/dockerfiles/debian-ppc64el-cross.docker | 231 ++++++++++----------
tests/docker/dockerfiles/debian-s390x-cross.docker | 229 ++++++++++----------
tests/docker/dockerfiles/fedora.docker | 230 ++++++++++----------
tests/docker/dockerfiles/opensuse-leap.docker | 3 +-
tests/docker/dockerfiles/ubuntu2004.docker | 235 ++++++++++----------
tests/lcitool/libvirt-ci | 2 +-
tests/lcitool/projects/qemu.yml | 1 +
tests/qtest/libqos/meson.build | 6 +-
tests/tcg/s390x/Makefile.target | 31 ++-
tests/vm/freebsd | 3 +
tests/vm/openbsd | 7 +-
48 files changed, 1667 insertions(+), 1417 deletions(-)
create mode 100644 tests/tcg/s390x/vistr.c
next reply other threads:[~2022-10-28 13:24 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-28 13:22 Thomas Huth [this message]
2022-10-28 13:22 ` [PULL 01/21] s390x/pv: remove semicolon from macro definition Thomas Huth
2022-10-28 13:22 ` [PULL 02/21] s390x: step down as general arch maintainer Thomas Huth
2022-10-28 13:22 ` [PULL 03/21] s390x/tod-kvm: don't save/restore the TOD in PV guests Thomas Huth
2022-10-28 13:22 ` [PULL 04/21] tests/tcg/s390x: Test compiler flags only once, not every time Thomas Huth
2022-10-28 13:22 ` [PULL 05/21] target/s390x: Fix emulation of the VISTR instruction Thomas Huth
2022-10-28 13:22 ` [PULL 06/21] tests/tcg/s390x: Add a test for the vistr instruction Thomas Huth
2022-10-28 13:22 ` [PULL 07/21] MAINTAINERS: target/s390x/: add Ilya as reviewer Thomas Huth
2022-10-28 13:22 ` [PULL 08/21] tests/qtest/tpm: Clean up remainders of swtpm Thomas Huth
2022-10-28 13:22 ` [PULL 09/21] tests/qtest/cxl-test: Remove temporary directories after testing Thomas Huth
2022-10-28 13:22 ` [PULL 10/21] tests/qtest/libqos/e1000e: Use e1000_regs.h Thomas Huth
2022-10-28 13:22 ` [PULL 11/21] tests/vm: update openbsd to release 7.2 Thomas Huth
2022-10-28 13:22 ` [PULL 12/21] tests: Add sndio to the FreeBSD CI containers / VM Thomas Huth
2022-10-28 13:22 ` [PULL 13/21] accel/qtest: Support qtest accelerator for Windows Thomas Huth
2022-10-28 13:22 ` [PULL 14/21] tests/qtest: Use send/recv for socket communication Thomas Huth
2022-10-28 13:22 ` [PULL 15/21] tests/qtest: Support libqtest to build and run on Windows Thomas Huth
2022-10-28 13:22 ` [PULL 16/21] tests/qtest: device-plug-test: Reverse the usage of double/single quotes Thomas Huth
2022-10-28 13:23 ` [PULL 17/21] tests/qtest: Use EXIT_FAILURE instead of magic number Thomas Huth
2022-10-28 13:23 ` [PULL 18/21] tests/qtest: libqtest: Introduce qtest_wait_qemu() Thomas Huth
2022-10-28 13:23 ` [PULL 19/21] tests/qtest: migration-test: Make sure QEMU process "to" exited after migration is canceled Thomas Huth
2022-10-28 13:23 ` [PULL 20/21] tests/qtest: libqos: Do not build virtio-9p unconditionally Thomas Huth
2022-10-28 13:23 ` [PULL 21/21] tests/qtest: libqtest: Correct the timeout unit of blocking receive calls for win32 Thomas Huth
2022-10-31 10:27 ` [PULL 00/21] s390x and qtest patches Stefan Hajnoczi
2022-10-31 18:37 ` Stefan Hajnoczi
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=20221028132304.829103-1-thuth@redhat.com \
--to=thuth@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.