mbox

[PULL,0/9] Patches for QEMU 9.0-rc1

Message ID 20240325141210.788356-1-thuth@redhat.com (mailing list archive)
State New, archived
Headers show

Pull-request

https://gitlab.com/thuth/qemu.git tags/pull-request-2024-03-25

Message

Thomas Huth March 25, 2024, 2:12 p.m. UTC
The following changes since commit 853546f8128476eefb701d4a55b2781bb3a46faa:

  Merge tag 'pull-loongarch-20240322' of https://gitlab.com/gaosong/qemu into staging (2024-03-22 10:59:57 +0000)

are available in the Git repository at:

  https://gitlab.com/thuth/qemu.git tags/pull-request-2024-03-25

for you to fetch changes up to f9b29c636442e917a56a725d774ea99be3b28111:

  tests/tcg/s390x: Test TEST AND SET (2024-03-25 15:05:59 +0100)

----------------------------------------------------------------
* Fix timeouts in Travis-CI jobs
* Mark devices with user_creatable = false that can crash QEMU otherwise
* Fix s390x TEST-AND-SET TCG instruction emulation
* Move pc955* devices to hw/gpio/

----------------------------------------------------------------
Cédric Le Goater (3):
      aspeed: Make the ast2600-a3 SoC not user creatable
      aspeed: Make the ast1030-a1 SoC not user creatable
      misc/pca955*: Move models under hw/gpio

Ido Plat (1):
      target/s390x: Use mutable temporary value for op_ts

Ilya Leoshkevich (1):
      tests/tcg/s390x: Test TEST AND SET

Thomas Huth (3):
      .travis.yml: Shorten the runtime of the problematic jobs
      .travis.yml: Remove the unused xfslib-dev package
      hw/microblaze: Do not allow xlnx-zynqmp-pmu-soc to be created by the user

Zheyu Ma (1):
      libqos/virtio.c: Correct 'flags' reading in qvirtqueue_kick

 MAINTAINERS                              |  4 ++--
 include/hw/{misc => gpio}/pca9552.h      |  0
 include/hw/{misc => gpio}/pca9552_regs.h |  0
 include/hw/{misc => gpio}/pca9554.h      |  0
 include/hw/{misc => gpio}/pca9554_regs.h |  0
 hw/arm/aspeed.c                          |  2 +-
 hw/arm/aspeed_ast10x0.c                  |  2 ++
 hw/arm/aspeed_ast2600.c                  |  2 ++
 hw/{misc => gpio}/pca9552.c              |  4 ++--
 hw/{misc => gpio}/pca9554.c              |  4 ++--
 hw/microblaze/xlnx-zynqmp-pmu.c          |  2 ++
 target/s390x/tcg/translate.c             |  5 +++--
 tests/qtest/libqos/virtio.c              |  2 +-
 tests/qtest/pca9552-test.c               |  2 +-
 tests/qtest/pnv-host-i2c-test.c          |  4 ++--
 tests/tcg/s390x/ts.c                     | 35 ++++++++++++++++++++++++++++++++
 .travis.yml                              | 10 ++++-----
 hw/gpio/meson.build                      |  2 ++
 hw/gpio/trace-events                     |  4 ++++
 hw/misc/meson.build                      |  2 --
 hw/misc/trace-events                     |  4 ----
 tests/tcg/s390x/Makefile.target          |  1 +
 22 files changed, 67 insertions(+), 24 deletions(-)
 rename include/hw/{misc => gpio}/pca9552.h (100%)
 rename include/hw/{misc => gpio}/pca9552_regs.h (100%)
 rename include/hw/{misc => gpio}/pca9554.h (100%)
 rename include/hw/{misc => gpio}/pca9554_regs.h (100%)
 rename hw/{misc => gpio}/pca9552.c (99%)
 rename hw/{misc => gpio}/pca9554.c (99%)
 create mode 100644 tests/tcg/s390x/ts.c

Comments

Peter Maydell March 25, 2024, 4:46 p.m. UTC | #1
On Mon, 25 Mar 2024 at 14:12, Thomas Huth <thuth@redhat.com> wrote:
>
> The following changes since commit 853546f8128476eefb701d4a55b2781bb3a46faa:
>
>   Merge tag 'pull-loongarch-20240322' of https://gitlab.com/gaosong/qemu into staging (2024-03-22 10:59:57 +0000)
>
> are available in the Git repository at:
>
>   https://gitlab.com/thuth/qemu.git tags/pull-request-2024-03-25
>
> for you to fetch changes up to f9b29c636442e917a56a725d774ea99be3b28111:
>
>   tests/tcg/s390x: Test TEST AND SET (2024-03-25 15:05:59 +0100)
>
> ----------------------------------------------------------------
> * Fix timeouts in Travis-CI jobs
> * Mark devices with user_creatable = false that can crash QEMU otherwise
> * Fix s390x TEST-AND-SET TCG instruction emulation
> * Move pc955* devices to hw/gpio/
>


Applied, thanks.

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

-- PMM