mbox

[kvm-unit-tests,GIT,PULL,00/11] s390x: LPAR boot fix and additional tests

Message ID 20220920073035.29201-1-frankja@linux.ibm.com (mailing list archive)
State New, archived
Headers show

Pull-request

https://gitlab.com/frankja/kvm-unit-tests.git s390x-pull-2022-20-09

Message

Janosch Frank Sept. 20, 2022, 7:30 a.m. UTC
Dear Paolo,

please merge or pull the following changes:
 - SMP setup fix that broke LPAR boot (Claudio)
 - Strict mode for specification exception interpretation (Janis)
 - Panic test support & tests (Nico)
 - SIGP Wait state test (Nico)
 - PV dump support (Nico)

MERGE:
https://gitlab.com/kvm-unit-tests/kvm-unit-tests/-/merge_requests/35

PULL:
The following changes since commit 7362976db651a2142ec64b5cea2029ab77a5b157:

  x86/pmu: Run the "emulation" test iff forced emulation is available (2022-08-10 12:47:18 -0400)

are available in the Git repository at:

  https://gitlab.com/frankja/kvm-unit-tests.git s390x-pull-2022-20-09

for you to fetch changes up to 3043685825d906e478ecc3b1bee32b6a7986a6e4:

  s390x: create persistent comm-key (2022-09-14 10:27:04 +0000)

----------------------------------------------------------------
Claudio Imbrenda (1):
  lib/s390x: fix SMP setup bug

Janis Schoetterl-Glausch (1):
  s390x: Add strict mode to specification exception interpretation test

Nico Boehr (9):
  s390x: smp: move sigp calls with invalid cpu address to array
  s390x: smp: use an array for sigp calls
  s390x: smp: add tests for calls in wait state
  runtime: add support for panic tests
  lib/s390x: add CPU timer related defines and functions
  s390x: add extint loop test
  s390x: add pgm spec interrupt loop test
  s390x: factor out common args for genprotimg
  s390x: create persistent comm-key

 lib/s390x/asm/arch_def.h  |   1 +
 lib/s390x/asm/time.h      |  17 ++-
 lib/s390x/io.c            |   9 ++
 lib/s390x/smp.c           |   1 +
 s390x/Makefile            |  32 +++++-
 s390x/panic-loop-extint.c |  59 ++++++++++
 s390x/panic-loop-pgm.c    |  38 ++++++
 s390x/run                 |   2 +-
 s390x/smp.c               | 235 +++++++++++++++++++++++---------------
 s390x/spec_ex-sie.c       |  53 ++++++++-
 s390x/unittests.cfg       |  12 ++
 scripts/arch-run.bash     |  49 ++++++++
 scripts/runtime.bash      |   3 +
 13 files changed, 413 insertions(+), 98 deletions(-)
 create mode 100644 s390x/panic-loop-extint.c
 create mode 100644 s390x/panic-loop-pgm.c