mbox

[GIT,PULL,0/4] KVM: s390: features and test for 5.11

Message ID 20201210142600.6771-1-borntraeger@de.ibm.com (mailing list archive)
State New, archived
Headers show

Pull-request

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

Message

Christian Borntraeger Dec. 10, 2020, 2:25 p.m. UTC
Paolo,

the following changes since commit f8394f232b1eab649ce2df5c5f15b0e528c92091:

  Linux 5.10-rc3 (2020-11-08 16:10:16 -0800)

are available in the Git repository at:

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

for you to fetch changes up to 50a05be484cb70d9dfb55fa5a6ed57eab193901f:

  KVM: s390: track synchronous pfault events in kvm_stat (2020-12-10 14:20:26 +0100)

----------------------------------------------------------------
KVM: s390: Features and Test for 5.11

- memcg accouting for s390 specific parts of kvm and gmap
- selftest for diag318
- new kvm_stat for when async_pf falls back to sync

The selftest even triggers a non-critical bug that is unrelated
to diag318, fix will follow later.

----------------------------------------------------------------
Christian Borntraeger (3):
      KVM: s390: Add memcg accounting to KVM allocations
      s390/gmap: make gmap memcg aware
      KVM: s390: track synchronous pfault events in kvm_stat

Collin Walling (1):
      KVM: selftests: sync_regs test for diag318

 arch/s390/include/asm/kvm_host.h                   |  1 +
 arch/s390/kvm/guestdbg.c                           |  8 +--
 arch/s390/kvm/intercept.c                          |  2 +-
 arch/s390/kvm/interrupt.c                          | 10 +--
 arch/s390/kvm/kvm-s390.c                           | 22 +++---
 arch/s390/kvm/priv.c                               |  4 +-
 arch/s390/kvm/pv.c                                 |  6 +-
 arch/s390/kvm/vsie.c                               |  4 +-
 arch/s390/mm/gmap.c                                | 30 ++++----
 tools/testing/selftests/kvm/Makefile               |  2 +-
 .../kvm/include/s390x/diag318_test_handler.h       | 13 ++++
 .../selftests/kvm/lib/s390x/diag318_test_handler.c | 82 ++++++++++++++++++++++
 tools/testing/selftests/kvm/s390x/sync_regs_test.c | 16 ++++-
 13 files changed, 156 insertions(+), 44 deletions(-)
 create mode 100644 tools/testing/selftests/kvm/include/s390x/diag318_test_handler.h
 create mode 100644 tools/testing/selftests/kvm/lib/s390x/diag318_test_handler.c

Comments

Paolo Bonzini Dec. 12, 2020, 8:58 a.m. UTC | #1
On 10/12/20 15:25, Christian Borntraeger wrote:
> Paolo,
> 
> the following changes since commit f8394f232b1eab649ce2df5c5f15b0e528c92091:
> 
>    Linux 5.10-rc3 (2020-11-08 16:10:16 -0800)
> 
> are available in the Git repository at:
> 
>    git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git  tags/kvm-s390-next-5.11-1
> 
> for you to fetch changes up to 50a05be484cb70d9dfb55fa5a6ed57eab193901f:
> 
>    KVM: s390: track synchronous pfault events in kvm_stat (2020-12-10 14:20:26 +0100)
> 
> ----------------------------------------------------------------
> KVM: s390: Features and Test for 5.11
> 
> - memcg accouting for s390 specific parts of kvm and gmap
> - selftest for diag318
> - new kvm_stat for when async_pf falls back to sync
> 
> The selftest even triggers a non-critical bug that is unrelated
> to diag318, fix will follow later.
> 
> ----------------------------------------------------------------
> Christian Borntraeger (3):
>        KVM: s390: Add memcg accounting to KVM allocations
>        s390/gmap: make gmap memcg aware
>        KVM: s390: track synchronous pfault events in kvm_stat
> 
> Collin Walling (1):
>        KVM: selftests: sync_regs test for diag318
> 
>   arch/s390/include/asm/kvm_host.h                   |  1 +
>   arch/s390/kvm/guestdbg.c                           |  8 +--
>   arch/s390/kvm/intercept.c                          |  2 +-
>   arch/s390/kvm/interrupt.c                          | 10 +--
>   arch/s390/kvm/kvm-s390.c                           | 22 +++---
>   arch/s390/kvm/priv.c                               |  4 +-
>   arch/s390/kvm/pv.c                                 |  6 +-
>   arch/s390/kvm/vsie.c                               |  4 +-
>   arch/s390/mm/gmap.c                                | 30 ++++----
>   tools/testing/selftests/kvm/Makefile               |  2 +-
>   .../kvm/include/s390x/diag318_test_handler.h       | 13 ++++
>   .../selftests/kvm/lib/s390x/diag318_test_handler.c | 82 ++++++++++++++++++++++
>   tools/testing/selftests/kvm/s390x/sync_regs_test.c | 16 ++++-
>   13 files changed, 156 insertions(+), 44 deletions(-)
>   create mode 100644 tools/testing/selftests/kvm/include/s390x/diag318_test_handler.h
>   create mode 100644 tools/testing/selftests/kvm/lib/s390x/diag318_test_handler.c
> 

Pulled, thanks.

Paolo