[PATCH v3 0/5] s390x/tcg: fix booting Linux kernels compiled with clang-11 and clang-12

David Hildenbrand posted 5 patches 3 years, 4 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20210111163845.18148-1-david@redhat.com
Maintainers: David Hildenbrand <david@redhat.com>, Thomas Huth <thuth@redhat.com>, Richard Henderson <richard.henderson@linaro.org>, Cornelia Huck <cohuck@redhat.com>
target/s390x/insn-data.def  | 10 +++++-----
target/s390x/mem_helper.c   |  4 ++--
target/s390x/translate.c    | 33 +++++++++++++++++----------------
tests/tcg/s390x/exrl-trt.c  |  8 ++++----
tests/tcg/s390x/exrl-trtr.c |  8 ++++----
5 files changed, 32 insertions(+), 31 deletions(-)
[PATCH v3 0/5] s390x/tcg: fix booting Linux kernels compiled with clang-11 and clang-12
Posted by David Hildenbrand 3 years, 4 months ago
This series fixes booting current upstream Linux kernel compiled by
clang-11 and clang-12 under TCG.

Latest version of the patches available at:
git@github.com:davidhildenbrand/qemu.git clang

v2 -> v3:
- Add 'tests/tcg/s390x: Fix EXRL tests'
-- "make check-tcg" with v2 revealed two buggy tests
- Added RB's/Tested-by's

v1 -> v2:
- Add 's390x/tcg: Don't ignore content in r0 when not specified via "b" or
  "x"'
- Add 's390x/tcg: Ignore register content if b1/b2 is zero when handling
  EXEUTE'
- "s390x/tcg: Fix ALGSI"
-- Fixup subject
- "s390x/tcg: Fix RISBHG"
-- Rephrase description, stating that it fixes clang-11

David Hildenbrand (5):
  s390x/tcg: Fix ALGSI
  s390x/tcg: Fix RISBHG
  s390x/tcg: Don't ignore content in r0 when not specified via "b" or
    "x"
  tests/tcg/s390x: Fix EXRL tests
  s390x/tcg: Ignore register content if b1/b2 is zero when handling
    EXECUTE

 target/s390x/insn-data.def  | 10 +++++-----
 target/s390x/mem_helper.c   |  4 ++--
 target/s390x/translate.c    | 33 +++++++++++++++++----------------
 tests/tcg/s390x/exrl-trt.c  |  8 ++++----
 tests/tcg/s390x/exrl-trtr.c |  8 ++++----
 5 files changed, 32 insertions(+), 31 deletions(-)

-- 
2.29.2


Re: [PATCH v3 0/5] s390x/tcg: fix booting Linux kernels compiled with clang-11 and clang-12
Posted by Cornelia Huck 3 years, 4 months ago
On Mon, 11 Jan 2021 17:38:40 +0100
David Hildenbrand <david@redhat.com> wrote:

> This series fixes booting current upstream Linux kernel compiled by
> clang-11 and clang-12 under TCG.
> 
> Latest version of the patches available at:
> git@github.com:davidhildenbrand/qemu.git clang
> 
> v2 -> v3:
> - Add 'tests/tcg/s390x: Fix EXRL tests'
> -- "make check-tcg" with v2 revealed two buggy tests
> - Added RB's/Tested-by's
> 
> v1 -> v2:
> - Add 's390x/tcg: Don't ignore content in r0 when not specified via "b" or
>   "x"'
> - Add 's390x/tcg: Ignore register content if b1/b2 is zero when handling
>   EXEUTE'
> - "s390x/tcg: Fix ALGSI"
> -- Fixup subject
> - "s390x/tcg: Fix RISBHG"
> -- Rephrase description, stating that it fixes clang-11
> 
> David Hildenbrand (5):
>   s390x/tcg: Fix ALGSI
>   s390x/tcg: Fix RISBHG
>   s390x/tcg: Don't ignore content in r0 when not specified via "b" or
>     "x"
>   tests/tcg/s390x: Fix EXRL tests
>   s390x/tcg: Ignore register content if b1/b2 is zero when handling
>     EXECUTE
> 
>  target/s390x/insn-data.def  | 10 +++++-----
>  target/s390x/mem_helper.c   |  4 ++--
>  target/s390x/translate.c    | 33 +++++++++++++++++----------------
>  tests/tcg/s390x/exrl-trt.c  |  8 ++++----
>  tests/tcg/s390x/exrl-trtr.c |  8 ++++----
>  5 files changed, 32 insertions(+), 31 deletions(-)
> 

Thanks, applied.