public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [kvm-unit-tests PULL 00/17] New s390x kvm-unit-tests and some fixes
@ 2019-09-25 16:36 Thomas Huth
  2019-09-25 16:36 ` [kvm-unit-tests PULL 01/17] s390x: Support PSW restart boot Thomas Huth
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: Thomas Huth @ 2019-09-25 16:36 UTC (permalink / raw)
  To: kvm, Paolo Bonzini, Radim Krčmář
  Cc: David Hildenbrand, Janosch Frank

 Hi Paolo, hi Radim,
 
the following changes since commit 5eb7ccf658f29642ca6c197fd086f4da0d8d8a73:

  x86: VMX: INVEPT after modifying PA mapping in ept_untwiddle (2019-09-11 17:45:28 +0200)

are available in the Git repository at:

  https://gitlab.com/huth/kvm-unit-tests.git tags/s390x-2019-09-25

for you to fetch changes up to 2d8b2d367ed9f545fbf0fca25cb1cbc4fbfe3f00:

  s390x: Free allocated page in iep test (2019-09-25 18:20:37 +0200)

Please note that this supersedes my unmerged pull request from last week.

----------------------------------------------------------------
New s390x kvm-unit-tests and some fixes from Janosch Frank
----------------------------------------------------------------

Janosch Frank (17):
      s390x: Support PSW restart boot
      s390x: Diag288 test
      s390x: Move stsi to library
      s390x: STSI tests
      s390x: Add diag308 subcode 0 testing
      s390x: Move pfmf to lib and make address void
      s390x: Storage key library functions now take void ptr addresses
      s390x: Bump march to zEC12
      s390x: Add storage key removal facility
      s390x: Fix stsi unaligned test and add selector tests
      s390x: Use interrupts in SCLP and add locking
      s390x: Add linemode console
      s390x: Add linemode buffer to fix newline on every print
      s390x: Add initial smp code
      s390x: Prepare for external calls
      s390x: SMP test
      s390x: Free allocated page in iep test

 lib/s390x/asm/arch_def.h  |  30 ++++++
 lib/s390x/asm/interrupt.h |   5 +
 lib/s390x/asm/mem.h       |  40 ++++++--
 lib/s390x/asm/sigp.h      |  28 +++++-
 lib/s390x/interrupt.c     |  27 ++++-
 lib/s390x/io.c            |   5 +-
 lib/s390x/sclp-console.c  | 216 ++++++++++++++++++++++++++++++++++++---
 lib/s390x/sclp.c          |  55 +++++++++-
 lib/s390x/sclp.h          |  59 ++++++++++-
 lib/s390x/smp.c           | 252 ++++++++++++++++++++++++++++++++++++++++++++++
 lib/s390x/smp.h           |  53 ++++++++++
 s390x/Makefile            |   7 +-
 s390x/cstart64.S          |  34 +++++++
 s390x/diag288.c           | 114 +++++++++++++++++++++
 s390x/diag308.c           |  31 ++----
 s390x/flat.lds            |  14 ++-
 s390x/iep.c               |   1 +
 s390x/pfmf.c              |  71 +++++--------
 s390x/skey.c              |  47 +++------
 s390x/skrf.c              | 128 +++++++++++++++++++++++
 s390x/smp.c               | 242 ++++++++++++++++++++++++++++++++++++++++++++
 s390x/stsi.c              |  86 ++++++++++++++++
 s390x/unittests.cfg       |  11 ++
 23 files changed, 1419 insertions(+), 137 deletions(-)
 create mode 100644 lib/s390x/smp.c
 create mode 100644 lib/s390x/smp.h
 create mode 100644 s390x/diag288.c
 create mode 100644 s390x/skrf.c
 create mode 100644 s390x/smp.c
 create mode 100644 s390x/stsi.c

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

end of thread, other threads:[~2019-09-25 16:39 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-09-25 16:36 [kvm-unit-tests PULL 00/17] New s390x kvm-unit-tests and some fixes Thomas Huth
2019-09-25 16:36 ` [kvm-unit-tests PULL 01/17] s390x: Support PSW restart boot Thomas Huth
2019-09-25 16:36 ` [kvm-unit-tests PULL 02/17] s390x: Diag288 test Thomas Huth
2019-09-25 16:37 ` [kvm-unit-tests PULL 03/17] s390x: Move stsi to library Thomas Huth
2019-09-25 16:37 ` [kvm-unit-tests PULL 04/17] s390x: STSI tests Thomas Huth
2019-09-25 16:37 ` [kvm-unit-tests PULL 05/17] s390x: Add diag308 subcode 0 testing Thomas Huth
2019-09-25 16:37 ` [kvm-unit-tests PULL 06/17] s390x: Move pfmf to lib and make address void Thomas Huth
2019-09-25 16:37 ` [kvm-unit-tests PULL 07/17] s390x: Storage key library functions now take void ptr addresses Thomas Huth
2019-09-25 16:37 ` [kvm-unit-tests PULL 08/17] s390x: Bump march to zEC12 Thomas Huth
2019-09-25 16:37 ` [kvm-unit-tests PULL 09/17] s390x: Add storage key removal facility Thomas Huth
2019-09-25 16:37 ` [kvm-unit-tests PULL 10/17] s390x: Fix stsi unaligned test and add selector tests Thomas Huth
2019-09-25 16:37 ` [kvm-unit-tests PULL 11/17] s390x: Use interrupts in SCLP and add locking Thomas Huth
2019-09-25 16:37 ` [kvm-unit-tests PULL 12/17] s390x: Add linemode console Thomas Huth
2019-09-25 16:37 ` [kvm-unit-tests PULL 13/17] s390x: Add linemode buffer to fix newline on every print Thomas Huth
2019-09-25 16:37 ` [kvm-unit-tests PULL 14/17] s390x: Add initial smp code Thomas Huth
2019-09-25 16:37 ` [kvm-unit-tests PULL 15/17] s390x: Prepare for external calls Thomas Huth
2019-09-25 16:37 ` [kvm-unit-tests PULL 16/17] s390x: SMP test Thomas Huth
2019-09-25 16:37 ` [kvm-unit-tests PULL 17/17] s390x: Free allocated page in iep test Thomas Huth
2019-09-25 16:39 ` [kvm-unit-tests PULL 00/17] New s390x kvm-unit-tests and some fixes Paolo Bonzini

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