mbox

[kvm-unit-tests,GIT,PULL,0/8] s390x update 2021-07-07

Message ID 20210707140318.44255-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-2021-07-07

Message

Janosch Frank July 7, 2021, 2:03 p.m. UTC
Dear Paolo,

please merge or pull the following changes:

* Add snippet support that makes starting guests in tests easier
* Cleanup

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

PIPELINE:
https://gitlab.com/frankja/kvm-unit-tests/-/pipelines/333035606

PULL:
The following changes since commit bc6f264386b4cb2cadc8b2492315f3e6e8a801a2:

  Merge branch 'arm/queue' into 'master' (2021-06-30 13:35:55 +0000)

are available in the Git repository at:

  https://gitlab.com/frankja/kvm-unit-tests.git s390x-pull-2021-07-07

for you to fetch changes up to 81598ca0d3fbeb52e02eecf5ddbc15e30f8c600a:

  lib: s390x: Remove left behing PGM report (2021-07-07 08:00:29 +0000)

Janosch Frank (7):
  s390x: snippets: Add gitignore as well as linker script and start
    assembly
  s390x: mvpg: Add SIE mvpg test
  s390x: sie: Add missing includes
  s390x: sie: Fix sie.h integer types
  lib: s390x: uv: Add offset comments to uv_query and extend it
  lib: s390x: Print if a pgm happened while in SIE
  lib: s390x: Remove left behing PGM report

Steffen Eiden (1):
  s390x: snippets: Add snippet compilation

 .gitignore                      |   1 +
 lib/s390x/asm/uv.h              |  33 +++----
 lib/s390x/interrupt.c           |  14 +--
 lib/s390x/sie.h                 |  11 ++-
 s390x/Makefile                  |  29 +++++--
 s390x/mvpg-sie.c                | 149 ++++++++++++++++++++++++++++++++
 s390x/snippets/c/cstart.S       |  16 ++++
 s390x/snippets/c/flat.lds       |  51 +++++++++++
 s390x/snippets/c/mvpg-snippet.c |  33 +++++++
 s390x/unittests.cfg             |   3 +
 10 files changed, 308 insertions(+), 32 deletions(-)
 create mode 100644 s390x/mvpg-sie.c
 create mode 100644 s390x/snippets/c/cstart.S
 create mode 100644 s390x/snippets/c/flat.lds
 create mode 100644 s390x/snippets/c/mvpg-snippet.c

Comments

Paolo Bonzini July 7, 2021, 5:33 p.m. UTC | #1
On 07/07/21 16:03, Janosch Frank wrote:
> Dear Paolo,
> 
> please merge or pull the following changes:
> 
> * Add snippet support that makes starting guests in tests easier
> * Cleanup
> 
> MERGE:
> https://gitlab.com/kvm-unit-tests/kvm-unit-tests/-/merge_requests/13
> 
> PIPELINE:
> https://gitlab.com/frankja/kvm-unit-tests/-/pipelines/333035606
> 
> PULL:
> The following changes since commit bc6f264386b4cb2cadc8b2492315f3e6e8a801a2:
> 
>    Merge branch 'arm/queue' into 'master' (2021-06-30 13:35:55 +0000)
> 
> are available in the Git repository at:
> 
>    https://gitlab.com/frankja/kvm-unit-tests.git s390x-pull-2021-07-07
> 
> for you to fetch changes up to 81598ca0d3fbeb52e02eecf5ddbc15e30f8c600a:
> 
>    lib: s390x: Remove left behing PGM report (2021-07-07 08:00:29 +0000)
> 
> Janosch Frank (7):
>    s390x: snippets: Add gitignore as well as linker script and start
>      assembly
>    s390x: mvpg: Add SIE mvpg test
>    s390x: sie: Add missing includes
>    s390x: sie: Fix sie.h integer types
>    lib: s390x: uv: Add offset comments to uv_query and extend it
>    lib: s390x: Print if a pgm happened while in SIE
>    lib: s390x: Remove left behing PGM report
> 
> Steffen Eiden (1):
>    s390x: snippets: Add snippet compilation
> 
>   .gitignore                      |   1 +
>   lib/s390x/asm/uv.h              |  33 +++----
>   lib/s390x/interrupt.c           |  14 +--
>   lib/s390x/sie.h                 |  11 ++-
>   s390x/Makefile                  |  29 +++++--
>   s390x/mvpg-sie.c                | 149 ++++++++++++++++++++++++++++++++
>   s390x/snippets/c/cstart.S       |  16 ++++
>   s390x/snippets/c/flat.lds       |  51 +++++++++++
>   s390x/snippets/c/mvpg-snippet.c |  33 +++++++
>   s390x/unittests.cfg             |   3 +
>   10 files changed, 308 insertions(+), 32 deletions(-)
>   create mode 100644 s390x/mvpg-sie.c
>   create mode 100644 s390x/snippets/c/cstart.S
>   create mode 100644 s390x/snippets/c/flat.lds
>   create mode 100644 s390x/snippets/c/mvpg-snippet.c
> 

Merged, thanks!

Paolo