Re: [PATCH] target/s390x: Fix the accumulation of ccm in op_icm

2022-04-26 Thread Richard Henderson
On 4/1/22 12:36, Richard Henderson wrote: Coverity rightly reports that 0xff << pos can overflow. This would affect the ICMH instruction. Fixes: Coverity CID 1487161 Signed-off-by: Richard Henderson --- target/s390x/tcg/translate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

Re: [PATCH] target/s390x: Fix the accumulation of ccm in op_icm

2022-04-04 Thread David Hildenbrand
On 01.04.22 21:36, Richard Henderson wrote: > Coverity rightly reports that 0xff << pos can overflow. > This would affect the ICMH instruction. > > Fixes: Coverity CID 1487161 > Signed-off-by: Richard Henderson > --- > target/s390x/tcg/translate.c | 2 +- > 1 file changed, 1 insertion(+), 1 dele

Re: [PATCH] target/s390x: Fix the accumulation of ccm in op_icm

2022-04-02 Thread Richard Henderson
On 4/2/22 02:38, Thomas Huth wrote: On 01/04/2022 21.36, Richard Henderson wrote: Coverity rightly reports that 0xff << pos can overflow. This would affect the ICMH instruction. Fixes: Coverity CID 1487161 Signed-off-by: Richard Henderson ---   target/s390x/tcg/translate.c | 2 +-   1 file chan

Re: [PATCH] target/s390x: Fix the accumulation of ccm in op_icm

2022-04-02 Thread Thomas Huth
On 01/04/2022 21.36, Richard Henderson wrote: Coverity rightly reports that 0xff << pos can overflow. This would affect the ICMH instruction. Fixes: Coverity CID 1487161 Signed-off-by: Richard Henderson --- target/s390x/tcg/translate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) d

[PATCH] target/s390x: Fix the accumulation of ccm in op_icm

2022-04-01 Thread Richard Henderson
Coverity rightly reports that 0xff << pos can overflow. This would affect the ICMH instruction. Fixes: Coverity CID 1487161 Signed-off-by: Richard Henderson --- target/s390x/tcg/translate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/s390x/tcg/translate.c b/target/