[PULL 00/14] Misc patches (s390x, tests, python, docs, ...)

Thomas Huth posted 14 patches 1 month, 4 weeks ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20260212084927.258642-1-thuth@redhat.com
Maintainers: Aurelien Jarno <aurelien@aurel32.net>, Peter Maydell <peter.maydell@linaro.org>, "Alex Bennée" <alex.bennee@linaro.org>, "Michael S. Tsirkin" <mst@redhat.com>, Marcel Apfelbaum <marcel.apfelbaum@gmail.com>, Paolo Bonzini <pbonzini@redhat.com>, Richard Henderson <richard.henderson@linaro.org>, Eduardo Habkost <eduardo@habkost.net>, Matthew Rosato <mjrosato@linux.ibm.com>, Farhan Ali <alifm@linux.ibm.com>, Eric Farman <farman@linux.ibm.com>, Thomas Huth <thuth@redhat.com>, Halil Pasic <pasic@linux.ibm.com>, Christian Borntraeger <borntraeger@linux.ibm.com>, Ilya Leoshkevich <iii@linux.ibm.com>, David Hildenbrand <david@kernel.org>, Cornelia Huck <cohuck@redhat.com>, John Snow <jsnow@redhat.com>, Cleber Rosa <crosa@redhat.com>
There is a newer version of this series
MAINTAINERS                           |   5 +-
include/fpu/softfloat.h               |  11 ++
target/s390x/helper.h                 |   1 +
target/s390x/tcg/insn-data.h.inc      |   5 +-
fpu/softfloat.c                       | 142 ++++++++++++++++++
hw/i386/pc.c                          |   2 +
hw/s390x/s390-pci-inst.c              |   2 +-
hw/s390x/virtio-ccw.c                 |   1 +
target/s390x/cpu-dump.c               |   1 +
target/s390x/tcg/fpu_helper.c         | 118 +++++++++++----
target/s390x/tcg/translate.c          |  26 ++++
tests/tcg/s390x/divide-to-integer.c   | 265 ++++++++++++++++++++++++++++++++++
util/rcu.c                            |  79 ++++------
fpu/softfloat-parts.c.inc             |  12 +-
python/setup.py                       |   5 +-
tests/Makefile.include                |  33 +++--
tests/functional/reverse_debugging.py |   3 -
tests/tcg/s390x/Makefile.target       |   5 +
18 files changed, 602 insertions(+), 114 deletions(-)
create mode 100644 tests/tcg/s390x/divide-to-integer.c
[PULL 00/14] Misc patches (s390x, tests, python, docs, ...)
Posted by Thomas Huth 1 month, 4 weeks ago
 Hi Peter!

The following changes since commit 0b91040d23dc8820724a60c811223b777f3bc6b7:

  Merge tag 'pull-loongarch-20260210' of https://github.com/gaosong715/qemu into staging (2026-02-10 09:12:38 +0000)

are available in the Git repository at:

  https://gitlab.com/thuth/qemu.git tags/pull-request-2026-02-12

for you to fetch changes up to 34a56f7a4458be1a8c419994d802ea4f68abbfe6:

  hw/i386/pc.c: add description for fd-bootchk option (2026-02-12 09:40:55 +0100)

----------------------------------------------------------------
* Updates to MAINTAINERS file
* Fix CI (broken pkg_resources in python, revert RCU change to fix alpha test)
* Fix endianness issue in PCI code on s390x
* Implement DIVIDE TO INTEGER instruction for s390x TCG emulation
* Bitesized documentation updates (run-tcg-tests target and fd-bootchk property)

----------------------------------------------------------------
Choon Keong (2):
      tests/Makefile.include: add run-tcg-tests-TARGET to check-help
      hw/i386/pc.c: add description for fd-bootchk option

Eric Farman (1):
      MAINTAINERS: Replace backup for s390 PCI

Ilya Leoshkevich (5):
      target/s390x: Dump Floating-Point-Control Register
      target/s390x: Extract s390_get_bfp_rounding_mode()
      fpu: Restrict parts_round_to_int_normal to target precision
      target/s390x: Implement DIVIDE TO INTEGER
      tests/tcg/s390x: Test DIVIDE TO INTEGER

Jaehoon Kim (1):
      s390x/pci: Fix endianness for zPCI BAR values.

Raphael Norwitz (1):
      MAINTAINERS: Switch to my NVIDIA email

Thomas Huth (2):
      Revert "rcu: Unify force quiescent state"
      python/setup.py: Drop version checking via pkg_resources

Vladimir Sementsov-Ogievskiy (1):
      virtio-ccw: virtio_ccw_set_guest_notifier(): fix failure path

Yodel Eldar (1):
      tests/.../reverse_debugging: Remove unsatisfiable condition

 MAINTAINERS                           |   5 +-
 include/fpu/softfloat.h               |  11 ++
 target/s390x/helper.h                 |   1 +
 target/s390x/tcg/insn-data.h.inc      |   5 +-
 fpu/softfloat.c                       | 142 ++++++++++++++++++
 hw/i386/pc.c                          |   2 +
 hw/s390x/s390-pci-inst.c              |   2 +-
 hw/s390x/virtio-ccw.c                 |   1 +
 target/s390x/cpu-dump.c               |   1 +
 target/s390x/tcg/fpu_helper.c         | 118 +++++++++++----
 target/s390x/tcg/translate.c          |  26 ++++
 tests/tcg/s390x/divide-to-integer.c   | 265 ++++++++++++++++++++++++++++++++++
 util/rcu.c                            |  79 ++++------
 fpu/softfloat-parts.c.inc             |  12 +-
 python/setup.py                       |   5 +-
 tests/Makefile.include                |  33 +++--
 tests/functional/reverse_debugging.py |   3 -
 tests/tcg/s390x/Makefile.target       |   5 +
 18 files changed, 602 insertions(+), 114 deletions(-)
 create mode 100644 tests/tcg/s390x/divide-to-integer.c
Re: [PULL 00/14] Misc patches (s390x, tests, python, docs, ...)
Posted by Thomas Huth 1 month, 4 weeks ago
On 12/02/2026 09.49, Thomas Huth wrote:
>   Hi Peter!
> 
> The following changes since commit 0b91040d23dc8820724a60c811223b777f3bc6b7:
> 
>    Merge tag 'pull-loongarch-20260210' of https://github.com/gaosong715/qemu into staging (2026-02-10 09:12:38 +0000)
> 
> are available in the Git repository at:
> 
>    https://gitlab.com/thuth/qemu.git tags/pull-request-2026-02-12
> 
> for you to fetch changes up to 34a56f7a4458be1a8c419994d802ea4f68abbfe6:
> 
>    hw/i386/pc.c: add description for fd-bootchk option (2026-02-12 09:40:55 +0100)
> 
> ----------------------------------------------------------------
> * Updates to MAINTAINERS file
> * Fix CI (broken pkg_resources in python, revert RCU change to fix alpha test)
> * Fix endianness issue in PCI code on s390x
> * Implement DIVIDE TO INTEGER instruction for s390x TCG emulation
> * Bitesized documentation updates (run-tcg-tests target and fd-bootchk property)
> 
> ----------------------------------------------------------------
> Choon Keong (2):
>        tests/Makefile.include: add run-tcg-tests-TARGET to check-help
>        hw/i386/pc.c: add description for fd-bootchk option
> 
> Eric Farman (1):
>        MAINTAINERS: Replace backup for s390 PCI
> 
> Ilya Leoshkevich (5):
>        target/s390x: Dump Floating-Point-Control Register
>        target/s390x: Extract s390_get_bfp_rounding_mode()
>        fpu: Restrict parts_round_to_int_normal to target precision
>        target/s390x: Implement DIVIDE TO INTEGER
>        tests/tcg/s390x: Test DIVIDE TO INTEGER
> 
> Jaehoon Kim (1):
>        s390x/pci: Fix endianness for zPCI BAR values.
> 
> Raphael Norwitz (1):
>        MAINTAINERS: Switch to my NVIDIA email
> 
> Thomas Huth (2):
>        Revert "rcu: Unify force quiescent state"
>        python/setup.py: Drop version checking via pkg_resources

As discussed in IRC, I'll drop my pkg_resources patch from this PR and send 
a v2 with John's version instead.

  Thomas