Linux s390 Architecture development
 help / color / mirror / Atom feed
* [GIT PULL v1 00/17] KVM: s390: New features for 7.2
@ 2026-06-15 12:42 Claudio Imbrenda
  2026-06-15 12:42 ` [GIT PULL v1 01/17] KVM: s390: Track page size in struct guest_fault Claudio Imbrenda
                   ` (16 more replies)
  0 siblings, 17 replies; 24+ messages in thread
From: Claudio Imbrenda @ 2026-06-15 12:42 UTC (permalink / raw)
  To: pbonzini; +Cc: kvm, linux-s390, frankja, borntraeger

Ciao Paolo,

Here are some new features for 7.2 for KVM/s390:
* KVM_PRE_FAULT_MEMORY support
* Support for 2G hugepages
* Support for the ASTFLEIE 2 facility
* kvm_arch_set_irq_inatomic Fast Inject
* Fix potential leak of uninitialized bytes


The following changes since commit 7fd2df204f342fc17d1a0bfcd474b24232fb0f32:

  Linux 7.1-rc2 (2026-05-03 14:21:25 -0700)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git tags/kvm-s390-next-7.2-1

for you to fetch changes up to a868b30492c59f398359b7891293bbde8d126a51:

  KVM: s390: Introducing kvm_arch_set_irq_inatomic fast inject (2026-06-15 14:18:37 +0200)

----------------------------------------------------------------
KVM: s390: New features for 7.2

New features for 7.2 for KVM/s390:
* KVM_PRE_FAULT_MEMORY support
* Support for 2G hugepages
* Support for the ASTFLEIE 2 facility
* kvm_arch_set_irq_inatomic Fast Inject
* Fix potential leak of uninitialized bytes

----------------------------------------------------------------
Christian Borntraeger (1):
      KVM: s390: Initialize KVM_S390_GET_CMMA_BITS memory

Claudio Imbrenda (9):
      KVM: s390: Track page size in struct guest_fault
      KVM: s390: Implement KVM_PRE_FAULT_MEMORY
      KVM: s390: Update KVM_PRE_FAULT_MEMORY API documentation
      KVM: selftests: Fix pre_fault_memory_test to run on s390
      KVM: selftests: Enable pre_fault_memory_test for s390
      KVM: s390: Add module parameter to fence 2G hugepages
      KVM: s390: Add capability to support 2G hugepages
      KVM: s390: Allow for 2G hugepages
      KVM: s390: Document the KVM_CAP_S390_HPAGE_2G capability

Douglas Freimuth (3):
      KVM: s390: Add map/unmap ioctl and clean mappings post-guest
      KVM: s390: Enable adapter_indicators_set to use mapped pages
      KVM: s390: Introducing kvm_arch_set_irq_inatomic fast inject

Nina Schoetterl-Glausch (4):
      KVM: s390: Minor refactor of base/ext facility lists
      s390/sclp: Detect ASTFLEIE 2 facility
      KVM: s390: vsie: Refactor handle_stfle
      KVM: s390: vsie: Implement ASTFLEIE facility 2

 Documentation/virt/kvm/api.rst                     |  20 +-
 arch/s390/include/asm/kvm_host.h                   |  23 +-
 arch/s390/include/asm/sclp.h                       |   1 +
 arch/s390/include/uapi/asm/kvm.h                   |   1 +
 arch/s390/kvm/Kconfig                              |   1 +
 arch/s390/kvm/dat.h                                |   1 +
 arch/s390/kvm/gmap.c                               |  26 +-
 arch/s390/kvm/intercept.c                          |   5 +-
 arch/s390/kvm/interrupt.c                          | 559 ++++++++++++++++-----
 arch/s390/kvm/kvm-s390.c                           | 161 ++++--
 arch/s390/kvm/kvm-s390.h                           |   5 +-
 arch/s390/kvm/pv.c                                 |   5 +-
 arch/s390/kvm/vsie.c                               |  85 +++-
 drivers/s390/char/sclp_early.c                     |   4 +-
 include/uapi/linux/kvm.h                           |   1 +
 tools/testing/selftests/kvm/Makefile.kvm           |   1 +
 .../testing/selftests/kvm/pre_fault_memory_test.c  |   7 +-
 17 files changed, 727 insertions(+), 179 deletions(-)

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

end of thread, other threads:[~2026-06-15 13:23 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-15 12:42 [GIT PULL v1 00/17] KVM: s390: New features for 7.2 Claudio Imbrenda
2026-06-15 12:42 ` [GIT PULL v1 01/17] KVM: s390: Track page size in struct guest_fault Claudio Imbrenda
2026-06-15 12:42 ` [GIT PULL v1 02/17] KVM: s390: Implement KVM_PRE_FAULT_MEMORY Claudio Imbrenda
2026-06-15 12:42 ` [GIT PULL v1 03/17] KVM: s390: Update KVM_PRE_FAULT_MEMORY API documentation Claudio Imbrenda
2026-06-15 12:42 ` [GIT PULL v1 04/17] KVM: selftests: Fix pre_fault_memory_test to run on s390 Claudio Imbrenda
2026-06-15 12:42 ` [GIT PULL v1 05/17] KVM: selftests: Enable pre_fault_memory_test for s390 Claudio Imbrenda
2026-06-15 12:42 ` [GIT PULL v1 06/17] KVM: s390: Add module parameter to fence 2G hugepages Claudio Imbrenda
2026-06-15 12:42 ` [GIT PULL v1 07/17] KVM: s390: Add capability to support " Claudio Imbrenda
2026-06-15 13:05   ` sashiko-bot
2026-06-15 12:42 ` [GIT PULL v1 08/17] KVM: s390: Allow for " Claudio Imbrenda
2026-06-15 12:42 ` [GIT PULL v1 09/17] KVM: s390: Document the KVM_CAP_S390_HPAGE_2G capability Claudio Imbrenda
2026-06-15 13:03   ` sashiko-bot
2026-06-15 12:42 ` [GIT PULL v1 10/17] KVM: s390: Initialize KVM_S390_GET_CMMA_BITS memory Claudio Imbrenda
2026-06-15 13:07   ` sashiko-bot
2026-06-15 12:42 ` [GIT PULL v1 11/17] KVM: s390: Minor refactor of base/ext facility lists Claudio Imbrenda
2026-06-15 12:42 ` [GIT PULL v1 12/17] s390/sclp: Detect ASTFLEIE 2 facility Claudio Imbrenda
2026-06-15 12:42 ` [GIT PULL v1 13/17] KVM: s390: vsie: Refactor handle_stfle Claudio Imbrenda
2026-06-15 12:42 ` [GIT PULL v1 14/17] KVM: s390: vsie: Implement ASTFLEIE facility 2 Claudio Imbrenda
2026-06-15 12:42 ` [GIT PULL v1 15/17] KVM: s390: Add map/unmap ioctl and clean mappings post-guest Claudio Imbrenda
2026-06-15 13:21   ` sashiko-bot
2026-06-15 12:42 ` [GIT PULL v1 16/17] KVM: s390: Enable adapter_indicators_set to use mapped pages Claudio Imbrenda
2026-06-15 13:21   ` sashiko-bot
2026-06-15 12:42 ` [GIT PULL v1 17/17] KVM: s390: Introducing kvm_arch_set_irq_inatomic fast inject Claudio Imbrenda
2026-06-15 13:23   ` sashiko-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox