qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/15] functional tests and s390x patches
@ 2025-07-11  9:33 Thomas Huth
  2025-07-11  9:33 ` [PULL 01/15] target/s390x/kvm: Use vaddr in find/insert_hw_breakpoint() Thomas Huth
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: Thomas Huth @ 2025-07-11  9:33 UTC (permalink / raw)
  To: qemu-devel; +Cc: Stefan Hajnoczi

 Hi Stefan!

The following changes since commit df6fe2abf2e990f767ce755d426bc439c7bba336:

  Merge tag 'pull-target-arm-20250704' of https://gitlab.com/pm215/qemu into staging (2025-07-07 09:22:41 -0400)

are available in the Git repository at:

  https://gitlab.com/thuth/qemu.git tags/pull-request-2025-07-11

for you to fetch changes up to 693b3039d77195953e70f008991c80bf9c5b9691:

  target/s390x: Have s390_cpu_halt() not return anything (2025-07-11 10:33:56 +0200)

----------------------------------------------------------------
* s390x: Allow to select different entries when booting via pxelinux.cfg
* Link s390-ccw.img statically
* Fix broken bamboo functional test
* s390x code cleanups and refactorings

----------------------------------------------------------------
Peter Maydell (1):
      hw/s390x/s390-pci-bus.c: Use g_assert_not_reached() in functions taking an ett

Philippe Mathieu-Daudé (5):
      target/s390x/kvm: Use vaddr in find/insert_hw_breakpoint()
      target/s390x/tcg: Use vaddr in s390_probe_access()
      target/s390x: Remove unused s390_cpu_[un]halt() user stubs
      target/s390x: Expose s390_count_running_cpus() method
      target/s390x: Have s390_cpu_halt() not return anything

Sertonix (1):
      pc-bios/s390-ccw: link statically

Thomas Huth (8):
      pc-bios/s390-ccw: Allow to select a different pxelinux.cfg entry via loadparm
      pc-bios/s390-ccw: Allow up to 31 entries for pxelinux.cfg
      pc-bios/s390-ccw: Make get_boot_index() from menu.c global
      pc-bios/s390-ccw: Add a boot menu for booting via pxelinux.cfg
      tests/functional: Add a test for s390x pxelinux.cfg network booting
      pc-bios: Update the s390 bios images with the pxelinux.cfg loadparm changes
      tests/functional: Add dependency to the keymap_targets
      tests/functional/test_ppc_bamboo: Replace broken link with working assets

 MAINTAINERS                             |   1 +
 pc-bios/s390-ccw/s390-ccw.h             |   1 +
 target/s390x/s390x-internal.h           |  13 +---
 hw/s390x/s390-pci-bus.c                 |  26 +++----
 pc-bios/s390-ccw/menu.c                 |   6 +-
 pc-bios/s390-ccw/netmain.c              |  66 ++++++++++++++----
 target/s390x/cpu-system.c               |   6 +-
 target/s390x/helper.c                   |   4 +-
 target/s390x/kvm/kvm.c                  |   4 +-
 target/s390x/tcg/mem_helper.c           |  10 +--
 pc-bios/s390-ccw.img                    | Bin 96000 -> 87824 bytes
 pc-bios/s390-ccw/Makefile               |   2 +-
 tests/functional/meson.build            |   3 +-
 tests/functional/test_ppc_bamboo.py     |  34 +++++----
 tests/functional/test_s390x_pxelinux.py | 119 ++++++++++++++++++++++++++++++++
 15 files changed, 227 insertions(+), 68 deletions(-)
 create mode 100755 tests/functional/test_s390x_pxelinux.py



^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2025-07-13  7:10 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-11  9:33 [PULL 00/15] functional tests and s390x patches Thomas Huth
2025-07-11  9:33 ` [PULL 01/15] target/s390x/kvm: Use vaddr in find/insert_hw_breakpoint() Thomas Huth
2025-07-11  9:33 ` [PULL 02/15] target/s390x/tcg: Use vaddr in s390_probe_access() Thomas Huth
2025-07-11  9:33 ` [PULL 03/15] hw/s390x/s390-pci-bus.c: Use g_assert_not_reached() in functions taking an ett Thomas Huth
2025-07-11  9:33 ` [PULL 04/15] pc-bios/s390-ccw: Allow to select a different pxelinux.cfg entry via loadparm Thomas Huth
2025-07-11  9:33 ` [PULL 05/15] pc-bios/s390-ccw: Allow up to 31 entries for pxelinux.cfg Thomas Huth
2025-07-11  9:33 ` [PULL 06/15] pc-bios/s390-ccw: Make get_boot_index() from menu.c global Thomas Huth
2025-07-11  9:33 ` [PULL 07/15] pc-bios/s390-ccw: Add a boot menu for booting via pxelinux.cfg Thomas Huth
2025-07-11  9:33 ` [PULL 08/15] tests/functional: Add a test for s390x pxelinux.cfg network booting Thomas Huth
2025-07-11  9:33 ` [PULL 09/15] pc-bios/s390-ccw: link statically Thomas Huth
2025-07-11  9:33 ` [PULL 10/15] pc-bios: Update the s390 bios images with the pxelinux.cfg loadparm changes Thomas Huth
2025-07-11  9:33 ` [PULL 11/15] tests/functional: Add dependency to the keymap_targets Thomas Huth
2025-07-11  9:33 ` [PULL 12/15] tests/functional/test_ppc_bamboo: Replace broken link with working assets Thomas Huth
2025-07-11  9:33 ` [PULL 13/15] target/s390x: Remove unused s390_cpu_[un]halt() user stubs Thomas Huth
2025-07-11  9:33 ` [PULL 14/15] target/s390x: Expose s390_count_running_cpus() method Thomas Huth
2025-07-11  9:33 ` [PULL 15/15] target/s390x: Have s390_cpu_halt() not return anything Thomas Huth
2025-07-13  7:06 ` [PULL 00/15] functional tests and s390x patches Stefan Hajnoczi

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).