All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] s390x/tcg: Fix opcode for lzrf
@ 2022-09-14 10:57 Christian Borntraeger
  2022-09-14 11:51 ` Cornelia Huck
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Christian Borntraeger @ 2022-09-14 10:57 UTC (permalink / raw)
  To: Thomas Huth, David Hildenbrand, Richard Henderson
  Cc: qemu-devel, qemu-s390x, Cornelia Huck, Janosch Frank,
	Halil Pasic, Ilya Leoshkevich, Nathan Chancellor

Fix the opcode for Load and Zero Rightmost Byte (32).

Cc: qemu-stable@nongnu.org
Reported-by: Nathan Chancellor <nathan@kernel.org>
Tested-by: Nathan Chancellor <nathan@kernel.org>
Signed-off-by: Christian Borntraeger <borntraeger@linux.ibm.com>
---
 target/s390x/tcg/insn-data.def | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/s390x/tcg/insn-data.def b/target/s390x/tcg/insn-data.def
index 6d2cfe5fa2b7..6382ceabfcfa 100644
--- a/target/s390x/tcg/insn-data.def
+++ b/target/s390x/tcg/insn-data.def
@@ -466,7 +466,7 @@
     C(0xe39f, LAT,     RXY_a, LAT, 0, m2_32u, r1, 0, lat, 0)
     C(0xe385, LGAT,    RXY_a, LAT, 0, a2, r1, 0, lgat, 0)
 /* LOAD AND ZERO RIGHTMOST BYTE */
-    C(0xe3eb, LZRF,    RXY_a, LZRB, 0, m2_32u, new, r1_32, lzrb, 0)
+    C(0xe33b, LZRF,    RXY_a, LZRB, 0, m2_32u, new, r1_32, lzrb, 0)
     C(0xe32a, LZRG,    RXY_a, LZRB, 0, m2_64, r1, 0, lzrb, 0)
 /* LOAD LOGICAL AND ZERO RIGHTMOST BYTE */
     C(0xe33a, LLZRGF,  RXY_a, LZRB, 0, m2_32u, r1, 0, lzrb, 0)
-- 
2.37.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] s390x/tcg: Fix opcode for lzrf
  2022-09-14 10:57 [PATCH 1/1] s390x/tcg: Fix opcode for lzrf Christian Borntraeger
@ 2022-09-14 11:51 ` Cornelia Huck
  2022-09-15  6:07 ` Thomas Huth
  2022-09-19  8:40 ` David Hildenbrand
  2 siblings, 0 replies; 4+ messages in thread
From: Cornelia Huck @ 2022-09-14 11:51 UTC (permalink / raw)
  To: Christian Borntraeger, Thomas Huth, David Hildenbrand, Richard Henderson
  Cc: qemu-devel, qemu-s390x, Janosch Frank, Halil Pasic,
	Ilya Leoshkevich, Nathan Chancellor

On Wed, Sep 14 2022, Christian Borntraeger <borntraeger@linux.ibm.com> wrote:

> Fix the opcode for Load and Zero Rightmost Byte (32).

Fixes: c2a5c1d718ea ("target/s390x: Implement load-and-zero-rightmost-byte insns")

>
> Cc: qemu-stable@nongnu.org
> Reported-by: Nathan Chancellor <nathan@kernel.org>
> Tested-by: Nathan Chancellor <nathan@kernel.org>
> Signed-off-by: Christian Borntraeger <borntraeger@linux.ibm.com>
> ---
>  target/s390x/tcg/insn-data.def | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Cornelia Huck <cohuck@redhat.com>



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] s390x/tcg: Fix opcode for lzrf
  2022-09-14 10:57 [PATCH 1/1] s390x/tcg: Fix opcode for lzrf Christian Borntraeger
  2022-09-14 11:51 ` Cornelia Huck
@ 2022-09-15  6:07 ` Thomas Huth
  2022-09-19  8:40 ` David Hildenbrand
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Huth @ 2022-09-15  6:07 UTC (permalink / raw)
  To: Christian Borntraeger, David Hildenbrand, Richard Henderson
  Cc: qemu-devel, qemu-s390x, Cornelia Huck, Janosch Frank,
	Halil Pasic, Ilya Leoshkevich, Nathan Chancellor

On 14/09/2022 11.57, Christian Borntraeger wrote:
> Fix the opcode for Load and Zero Rightmost Byte (32).
> 
> Cc: qemu-stable@nongnu.org
> Reported-by: Nathan Chancellor <nathan@kernel.org>
> Tested-by: Nathan Chancellor <nathan@kernel.org>
> Signed-off-by: Christian Borntraeger <borntraeger@linux.ibm.com>
> ---
>   target/s390x/tcg/insn-data.def | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

Thanks, queued to my s390x-next branch:

https://gitlab.com/thuth/qemu/-/commits/s390x-next

  Thomas




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] s390x/tcg: Fix opcode for lzrf
  2022-09-14 10:57 [PATCH 1/1] s390x/tcg: Fix opcode for lzrf Christian Borntraeger
  2022-09-14 11:51 ` Cornelia Huck
  2022-09-15  6:07 ` Thomas Huth
@ 2022-09-19  8:40 ` David Hildenbrand
  2 siblings, 0 replies; 4+ messages in thread
From: David Hildenbrand @ 2022-09-19  8:40 UTC (permalink / raw)
  To: Christian Borntraeger, Thomas Huth, Richard Henderson
  Cc: qemu-devel, qemu-s390x, Cornelia Huck, Janosch Frank,
	Halil Pasic, Ilya Leoshkevich, Nathan Chancellor

On 14.09.22 12:57, Christian Borntraeger wrote:
> Fix the opcode for Load and Zero Rightmost Byte (32).
> 
> Cc: qemu-stable@nongnu.org
> Reported-by: Nathan Chancellor <nathan@kernel.org>
> Tested-by: Nathan Chancellor <nathan@kernel.org>
> Signed-off-by: Christian Borntraeger <borntraeger@linux.ibm.com>
> ---

Reviewed-by: David Hildenbrand <david@redhat.com>

-- 
Thanks,

David / dhildenb



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-09-19  9:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-14 10:57 [PATCH 1/1] s390x/tcg: Fix opcode for lzrf Christian Borntraeger
2022-09-14 11:51 ` Cornelia Huck
2022-09-15  6:07 ` Thomas Huth
2022-09-19  8:40 ` David Hildenbrand

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.