public inbox for linux-s390@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL 0/9] KVM: s390: fixes and features for 4.13 (via kvm/next)
@ 2017-06-28 17:30 Christian Borntraeger
  2017-06-28 17:30 ` [GIT PULL 1/9] KVM: s390: CMMA tracking, ESSA emulation, migration mode Christian Borntraeger
                   ` (9 more replies)
  0 siblings, 10 replies; 23+ messages in thread
From: Christian Borntraeger @ 2017-06-28 17:30 UTC (permalink / raw)
  To: Paolo Bonzini, Radim Krčmář
  Cc: KVM, Christian Borntraeger, Cornelia Huck, linux-s390

Paolo, Radim,

the first chunk of 4.13 related changes for s390.

There are two conflicts
1. wit the kvm-arm tree due to 2387149eade2 ("KVM: improve arch vcpu
request defining") which will be resolved in the kvm tree, I assume
2. with the s390 tree due to the s390-wide cleanup  a75259825401
("s390: rename struct psw_bits members"). This is trivial. I guess
this must be resolved by Linus.

It also contains a merge of a topic branch for machine check handling.
This branch is also merged in the s390 tree.

The following changes since commit 865279c53ca9d88718d974bb014b2c6ce259ac75:

  tools/kvm_stat: display guest list in pid/guest selection screens (2017-06-08 18:24:49 +0200)

are available in the git repository at:

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

for you to fetch changes up to d52cd2076eb2ace9fe95dbf795f6d93587453914:

  KVM: s390: Inject machine check into the nested guest (2017-06-28 12:42:33 +0200)

----------------------------------------------------------------
KVM: s390: fixes and features for 4.13

- initial machine check forwarding
- migration support for the CMMA page hinting information
- cleanups
- fixes

----------------------------------------------------------------
Christian Borntraeger (2):
      KVM: s390: implement instruction execution protection for emulated     ifetch
      Merge tag 'nmiforkvm' of git://git.kernel.org/.../kvms390/linux into kernelorgnext

Claudio Imbrenda (2):
      KVM: s390: CMMA tracking, ESSA emulation, migration mode
      KVM: s390: ioctls to get and set guest storage attributes

Martin Schwidefsky (1):
      KVM: s390: avoid packed attribute

QingFeng Hao (4):
      s390/nmi: s390: New low level handling for machine check happening in guest
      KVM: s390: Backup the guest's machine check info
      KVM: s390: Inject machine check into the guest
      KVM: s390: Inject machine check into the nested guest

Yi Min Zhao (1):
      KVM: S390: add new group for flic

 Documentation/virtual/kvm/api.txt               | 135 +++++++++
 Documentation/virtual/kvm/devices/s390_flic.txt |  15 +
 Documentation/virtual/kvm/devices/vm.txt        |  33 +++
 arch/s390/include/asm/ctl_reg.h                 |   4 +-
 arch/s390/include/asm/kvm_host.h                |  44 ++-
 arch/s390/include/asm/nmi.h                     |  13 +
 arch/s390/include/asm/processor.h               |   2 +
 arch/s390/include/uapi/asm/kvm.h                |  12 +
 arch/s390/kernel/asm-offsets.c                  |   3 +
 arch/s390/kernel/entry.S                        |  13 +-
 arch/s390/kernel/nmi.c                          |  84 +++++-
 arch/s390/kvm/gaccess.c                         |  43 ++-
 arch/s390/kvm/interrupt.c                       |  91 +++++-
 arch/s390/kvm/kvm-s390.c                        | 372 +++++++++++++++++++++++-
 arch/s390/kvm/kvm-s390.h                        |   2 +
 arch/s390/kvm/priv.c                            | 103 ++++++-
 arch/s390/kvm/vsie.c                            |  25 +-
 include/uapi/linux/kvm.h                        |  33 +++
 18 files changed, 981 insertions(+), 46 deletions(-)

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

end of thread, other threads:[~2017-06-30 16:30 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-28 17:30 [GIT PULL 0/9] KVM: s390: fixes and features for 4.13 (via kvm/next) Christian Borntraeger
2017-06-28 17:30 ` [GIT PULL 1/9] KVM: s390: CMMA tracking, ESSA emulation, migration mode Christian Borntraeger
2017-06-28 17:30 ` [GIT PULL 2/9] KVM: s390: ioctls to get and set guest storage attributes Christian Borntraeger
2017-06-28 17:30 ` [GIT PULL 3/9] KVM: s390: implement instruction execution protection for emulated ifetch Christian Borntraeger
2017-06-28 17:30 ` [GIT PULL 4/9] KVM: S390: add new group for flic Christian Borntraeger
2017-06-28 17:30 ` [GIT PULL 5/9] KVM: s390: avoid packed attribute Christian Borntraeger
2017-06-28 17:30 ` [GIT PULL 6/9] s390/nmi: s390: New low level handling for machine check happening in guest Christian Borntraeger
2017-06-28 17:30 ` [GIT PULL 7/9] KVM: s390: Backup the guest's machine check info Christian Borntraeger
2017-06-28 18:20   ` David Hildenbrand
2017-06-28 18:37     ` Christian Borntraeger
2017-06-28 18:56       ` David Hildenbrand
2017-06-28 19:14         ` Christian Borntraeger
2017-06-28 19:46           ` David Hildenbrand
2017-06-28 17:30 ` [GIT PULL 8/9] KVM: s390: Inject machine check into the guest Christian Borntraeger
2017-06-28 17:30 ` [GIT PULL 9/9] KVM: s390: Inject machine check into the nested guest Christian Borntraeger
2017-06-28 18:06   ` David Hildenbrand
2017-06-28 18:59     ` Christian Borntraeger
2017-06-28 19:08       ` David Hildenbrand
2017-06-28 19:16         ` Christian Borntraeger
2017-06-28 19:17           ` David Hildenbrand
2017-06-29 14:57           ` Christian Borntraeger
2017-06-30 16:30             ` David Hildenbrand
2017-06-28 20:39 ` [GIT PULL 0/9] KVM: s390: fixes and features for 4.13 (via kvm/next) Paolo Bonzini

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