[PULL 0/7] s390x (and one qtest) patches

Thomas Huth posted 7 patches 7 months, 2 weeks ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20230912114112.296428-1-thuth@redhat.com
Maintainers: Paolo Bonzini <pbonzini@redhat.com>, Keith Busch <kbusch@kernel.org>, Klaus Jensen <its@irrelevant.dk>, Halil Pasic <pasic@linux.ibm.com>, Christian Borntraeger <borntraeger@linux.ibm.com>, Eric Farman <farman@linux.ibm.com>, Richard Henderson <richard.henderson@linaro.org>, David Hildenbrand <david@redhat.com>, Ilya Leoshkevich <iii@linux.ibm.com>, Thomas Huth <thuth@redhat.com>, "Michael S. Tsirkin" <mst@redhat.com>, Cornelia Huck <cohuck@redhat.com>, Laurent Vivier <lvivier@redhat.com>
include/standard-headers/linux/fuse.h        |  63 ++++++++++-
include/standard-headers/linux/vhost_types.h |   4 +
include/standard-headers/linux/virtio_net.h  |  14 +++
linux-headers/asm-arm64/bitsperlong.h        |  23 ++++
linux-headers/asm-generic/unistd.h           |   5 +-
linux-headers/asm-mips/unistd_n32.h          |   1 +
linux-headers/asm-mips/unistd_n64.h          |   1 +
linux-headers/asm-mips/unistd_o32.h          |   1 +
linux-headers/asm-powerpc/unistd_32.h        |   1 +
linux-headers/asm-powerpc/unistd_64.h        |   1 +
linux-headers/asm-riscv/bitsperlong.h        |  13 +++
linux-headers/asm-riscv/kvm.h                |  16 +++
linux-headers/asm-s390/kvm.h                 |  16 +++
linux-headers/asm-s390/unistd_32.h           |   1 +
linux-headers/asm-s390/unistd_64.h           |   1 +
linux-headers/asm-x86/mman.h                 |  10 +-
linux-headers/asm-x86/unistd_32.h            |   1 +
linux-headers/asm-x86/unistd_64.h            |   2 +
linux-headers/asm-x86/unistd_x32.h           |   1 +
linux-headers/linux/kvm.h                    |  13 ++-
linux-headers/linux/stddef.h                 |   4 +
linux-headers/linux/userfaultfd.h            |  25 ++++-
linux-headers/linux/vfio.h                   | 150 ++++++++++++++++++++++++++-
target/s390x/cpu_features.h                  |   1 +
target/s390x/cpu_features_def.h.inc          |   4 +
hw/s390x/s390-virtio-ccw.c                   |  11 ++
target/s390x/cpu_models.c                    |   2 +
target/s390x/gen-features.c                  |   2 +
target/s390x/kvm/kvm.c                       |  94 +++++++++++++++--
tests/qtest/pflash-cfi02-test.c              |   2 +-
hw/nvme/Kconfig                              |   2 +-
31 files changed, 460 insertions(+), 25 deletions(-)
[PULL 0/7] s390x (and one qtest) patches
Posted by Thomas Huth 7 months, 2 weeks ago
The following changes since commit 9ef497755afc252fb8e060c9ea6b0987abfd20b6:

  Merge tag 'pull-vfio-20230911' of https://github.com/legoater/qemu into staging (2023-09-11 09:13:08 -0400)

are available in the Git repository at:

  https://gitlab.com/thuth/qemu.git tags/pull-request-2023-09-12

for you to fetch changes up to 82fdcd3e140c8d4c63f177ece554f90f2bccdf68:

  tests/qtest/pflash: Clean up local variable shadowing (2023-09-12 12:07:31 +0200)

----------------------------------------------------------------
* Enable AP (crypto adapter) instructions for s390x PV-guests
* Allow NVME for s390x machines
* Update Linux headers to v6.6-rc1

----------------------------------------------------------------
Cédric Le Goater (1):
      kconfig: Add NVME to s390x machines

Janosch Frank (2):
      s390x/ap: fix missing subsystem reset registration
      s390x: do a subsystem reset before the unprotect on reboot

Philippe Mathieu-Daudé (1):
      tests/qtest/pflash: Clean up local variable shadowing

Steffen Eiden (2):
      target/s390x/kvm: Refactor AP functionalities
      target/s390x: AP-passthrough for PV guests

Thomas Huth (1):
      linux-headers: Update to Linux v6.6-rc1

 include/standard-headers/linux/fuse.h        |  63 ++++++++++-
 include/standard-headers/linux/vhost_types.h |   4 +
 include/standard-headers/linux/virtio_net.h  |  14 +++
 linux-headers/asm-arm64/bitsperlong.h        |  23 ++++
 linux-headers/asm-generic/unistd.h           |   5 +-
 linux-headers/asm-mips/unistd_n32.h          |   1 +
 linux-headers/asm-mips/unistd_n64.h          |   1 +
 linux-headers/asm-mips/unistd_o32.h          |   1 +
 linux-headers/asm-powerpc/unistd_32.h        |   1 +
 linux-headers/asm-powerpc/unistd_64.h        |   1 +
 linux-headers/asm-riscv/bitsperlong.h        |  13 +++
 linux-headers/asm-riscv/kvm.h                |  16 +++
 linux-headers/asm-s390/kvm.h                 |  16 +++
 linux-headers/asm-s390/unistd_32.h           |   1 +
 linux-headers/asm-s390/unistd_64.h           |   1 +
 linux-headers/asm-x86/mman.h                 |  10 +-
 linux-headers/asm-x86/unistd_32.h            |   1 +
 linux-headers/asm-x86/unistd_64.h            |   2 +
 linux-headers/asm-x86/unistd_x32.h           |   1 +
 linux-headers/linux/kvm.h                    |  13 ++-
 linux-headers/linux/stddef.h                 |   4 +
 linux-headers/linux/userfaultfd.h            |  25 ++++-
 linux-headers/linux/vfio.h                   | 150 ++++++++++++++++++++++++++-
 target/s390x/cpu_features.h                  |   1 +
 target/s390x/cpu_features_def.h.inc          |   4 +
 hw/s390x/s390-virtio-ccw.c                   |  11 ++
 target/s390x/cpu_models.c                    |   2 +
 target/s390x/gen-features.c                  |   2 +
 target/s390x/kvm/kvm.c                       |  94 +++++++++++++++--
 tests/qtest/pflash-cfi02-test.c              |   2 +-
 hw/nvme/Kconfig                              |   2 +-
 31 files changed, 460 insertions(+), 25 deletions(-)