From: Janosch Frank <frankja@linux.ibm.com>
To: pbonzini@redhat.com
Cc: kvm@vger.kernel.org, frankja@linux.ibm.com, david@redhat.com,
borntraeger@de.ibm.com, cohuck@redhat.com,
linux-s390@vger.kernel.org, imbrenda@linux.ibm.com
Subject: [kvm-unit-tests GIT PULL 00/11] s390x update
Date: Wed, 20 Jan 2021 06:41:47 -0500 [thread overview]
Message-ID: <20210120114158.104559-1-frankja@linux.ibm.com> (raw)
Dear Paolo,
please pull the following changes or merge them on gitlab:
* Moved to SPDX license identifiers and cleaning up licenses
* Added test_bit(_inv)() & SCLP feature bit checking
* Added first SIE lib and test for nesting tests
* Added diag318 emulation test
* Small UV fix
Gitlab merge request:
https://gitlab.com/kvm-unit-tests/kvm-unit-tests/-/merge_requests/4
The following changes since commit 4a54e8a3a88be171814e31dd6ab9b7a766644e32:
lib/alloc_page: Properly handle requests for fresh blocks (2021-01-19 13:18:54 -0500)
are available in the Git repository at:
https://gitlab.com/frankja/kvm-unit-tests.git tags/s390x-2021-20-01
for you to fetch changes up to 88fb0e5d52be357d3aab854c5c16303fe1608335:
s390x: Fix uv_call() exception behavior (2021-01-20 04:15:21 -0500)
Janosch Frank (11):
s390x: Move to GPL 2 and SPDX license identifiers
s390x: lib: Move to GPL 2 and SPDX license identifiers
s390x: Add test_bit to library
s390x: Consolidate sclp read info
s390x: SCLP feature checking
s390x: Split assembly into multiple files
s390x: sie: Add SIE to lib
s390x: sie: Add first SIE test
s390x: Add diag318 intercept test
s390x: Fix sclp.h style issues
s390x: Fix uv_call() exception behavior
lib/s390x/asm-offsets.c | 15 ++-
lib/s390x/asm/arch_def.h | 13 ++-
lib/s390x/asm/asm-offsets.h | 4 +-
lib/s390x/asm/barrier.h | 4 +-
lib/s390x/asm/bitops.h | 26 +++++
lib/s390x/asm/cpacf.h | 1 +
lib/s390x/asm/facility.h | 7 +-
lib/s390x/asm/float.h | 4 +-
lib/s390x/asm/interrupt.h | 4 +-
lib/s390x/asm/io.h | 4 +-
lib/s390x/asm/mem.h | 4 +-
lib/s390x/asm/page.h | 4 +-
lib/s390x/asm/pgtable.h | 4 +-
lib/s390x/asm/sigp.h | 4 +-
lib/s390x/asm/spinlock.h | 4 +-
lib/s390x/asm/stack.h | 4 +-
lib/s390x/asm/time.h | 4 +-
lib/s390x/asm/uv.h | 24 +++--
lib/s390x/css.h | 4 +-
lib/s390x/css_dump.c | 4 +-
lib/s390x/css_lib.c | 4 +-
lib/s390x/interrupt.c | 11 +-
lib/s390x/io.c | 6 +-
lib/s390x/mmu.c | 4 +-
lib/s390x/mmu.h | 4 +-
lib/s390x/sclp-console.c | 5 +-
lib/s390x/sclp.c | 61 +++++++++--
lib/s390x/sclp.h | 183 ++++++++++++++++++---------------
lib/s390x/sie.h | 198 ++++++++++++++++++++++++++++++++++++
lib/s390x/smp.c | 31 +++---
lib/s390x/smp.h | 4 +-
lib/s390x/stack.c | 4 +-
lib/s390x/vm.c | 3 +-
lib/s390x/vm.h | 3 +-
s390x/Makefile | 7 +-
s390x/cmm.c | 4 +-
s390x/cpu.S | 121 ++++++++++++++++++++++
s390x/cpumodel.c | 4 +-
s390x/css.c | 4 +-
s390x/cstart64.S | 123 +---------------------
s390x/diag10.c | 4 +-
s390x/diag288.c | 4 +-
s390x/diag308.c | 5 +-
s390x/emulator.c | 4 +-
s390x/gs.c | 4 +-
s390x/iep.c | 4 +-
s390x/intercept.c | 23 ++++-
s390x/macros.S | 77 ++++++++++++++
s390x/pfmf.c | 4 +-
s390x/sclp.c | 4 +-
s390x/selftest.c | 4 +-
s390x/sie.c | 113 ++++++++++++++++++++
s390x/skey.c | 4 +-
s390x/skrf.c | 4 +-
s390x/smp.c | 4 +-
s390x/sthyi.c | 4 +-
s390x/sthyi.h | 4 +-
s390x/stsi.c | 4 +-
s390x/unittests.cfg | 3 +
s390x/uv-guest.c | 16 ++-
s390x/vector.c | 4 +-
61 files changed, 831 insertions(+), 392 deletions(-)
create mode 100644 lib/s390x/sie.h
create mode 100644 s390x/cpu.S
create mode 100644 s390x/macros.S
create mode 100644 s390x/sie.c
--
2.25.1
next reply other threads:[~2021-01-20 12:49 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-20 11:41 Janosch Frank [this message]
2021-01-20 11:41 ` [kvm-unit-tests GIT PULL 01/11] s390x: Move to GPL 2 and SPDX license identifiers Janosch Frank
2021-01-20 11:41 ` [kvm-unit-tests GIT PULL 02/11] s390x: lib: " Janosch Frank
2021-01-20 11:41 ` [kvm-unit-tests GIT PULL 03/11] s390x: Add test_bit to library Janosch Frank
2021-01-20 11:41 ` [kvm-unit-tests GIT PULL 04/11] s390x: Consolidate sclp read info Janosch Frank
2021-01-20 11:41 ` [kvm-unit-tests GIT PULL 05/11] s390x: SCLP feature checking Janosch Frank
2021-01-20 11:41 ` [kvm-unit-tests GIT PULL 06/11] s390x: Split assembly into multiple files Janosch Frank
2021-01-20 11:41 ` [kvm-unit-tests GIT PULL 07/11] s390x: sie: Add SIE to lib Janosch Frank
2021-01-20 11:41 ` [kvm-unit-tests GIT PULL 08/11] s390x: sie: Add first SIE test Janosch Frank
2021-01-20 11:41 ` [kvm-unit-tests GIT PULL 09/11] s390x: Add diag318 intercept test Janosch Frank
2021-01-20 11:41 ` [kvm-unit-tests GIT PULL 10/11] s390x: Fix sclp.h style issues Janosch Frank
2021-01-20 11:41 ` [kvm-unit-tests GIT PULL 11/11] s390x: Fix uv_call() exception behavior Janosch Frank
2021-01-20 12:46 ` [kvm-unit-tests GIT PULL 00/11] s390x update Paolo Bonzini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210120114158.104559-1-frankja@linux.ibm.com \
--to=frankja@linux.ibm.com \
--cc=borntraeger@de.ibm.com \
--cc=cohuck@redhat.com \
--cc=david@redhat.com \
--cc=imbrenda@linux.ibm.com \
--cc=kvm@vger.kernel.org \
--cc=linux-s390@vger.kernel.org \
--cc=pbonzini@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox