mbox series

[kvm-unit-tests,0/2] s390x: Add tests for SIGP store adtl status

Message ID 20220401123321.1714489-1-nrb@linux.ibm.com (mailing list archive)
Headers show
Series s390x: Add tests for SIGP store adtl status | expand

Message

Nico Boehr April 1, 2022, 12:33 p.m. UTC
Changelog from v1:
----
- Move vector related defines to own header
- Write restart_write_vector in assembler to avoid undesired use of floating
  point registers by the compiler.
- Minor naming fixes

As suggested by Claudio, move the store adtl status I sent previously
("[kvm-unit-tests PATCH v2 0/9] s390x: Further extend instruction interception
 tests") into its own file.

Nico Boehr (2):
  s390x: gs: move to new header file
  s390x: add test for SIGP STORE_ADTL_STATUS order

 lib/s390x/asm/vector.h |  16 ++
 lib/s390x/gs.h         |  69 +++++++
 s390x/Makefile         |   1 +
 s390x/adtl-status.c    | 411 +++++++++++++++++++++++++++++++++++++++++
 s390x/gs.c             |  54 +-----
 s390x/unittests.cfg    |  25 +++
 6 files changed, 523 insertions(+), 53 deletions(-)
 create mode 100644 lib/s390x/asm/vector.h
 create mode 100644 lib/s390x/gs.h
 create mode 100644 s390x/adtl-status.c

Comments

Claudio Imbrenda April 12, 2022, 3:20 p.m. UTC | #1
On Fri,  1 Apr 2022 14:33:19 +0200
Nico Boehr <nrb@linux.ibm.com> wrote:

> Changelog from v1:
> ----
> - Move vector related defines to own header
> - Write restart_write_vector in assembler to avoid undesired use of floating
>   point registers by the compiler.
> - Minor naming fixes
> 

queued, thanks

> As suggested by Claudio, move the store adtl status I sent previously
> ("[kvm-unit-tests PATCH v2 0/9] s390x: Further extend instruction interception
>  tests") into its own file.
> 
> Nico Boehr (2):
>   s390x: gs: move to new header file
>   s390x: add test for SIGP STORE_ADTL_STATUS order
> 
>  lib/s390x/asm/vector.h |  16 ++
>  lib/s390x/gs.h         |  69 +++++++
>  s390x/Makefile         |   1 +
>  s390x/adtl-status.c    | 411 +++++++++++++++++++++++++++++++++++++++++
>  s390x/gs.c             |  54 +-----
>  s390x/unittests.cfg    |  25 +++
>  6 files changed, 523 insertions(+), 53 deletions(-)
>  create mode 100644 lib/s390x/asm/vector.h
>  create mode 100644 lib/s390x/gs.h
>  create mode 100644 s390x/adtl-status.c
>