Re: [PATCH] s390/xor: Fix xor_xc_2() inline assembly constraints
From: Heiko Carstens
Date: Fri Feb 27 2026 - 13:56:29 EST
On Fri, Feb 27, 2026 at 10:21:07AM +0100, Heiko Carstens wrote:
> The inline assembly constraints for xor_xc_2() are incorrect. "bytes",
> "p1", and "p2" are input operands, while all three of them are modified
> within the inline assembly. Given that the function consists only of this
> inline assembly it seems unlikely that this may cause any problems, however
> fix this in any case.
>
> Cc: stable@xxxxxxxxxxxxxxx
> Signed-off-by: Heiko Carstens <hca@xxxxxxxxxxxxx>
> ---
> arch/s390/lib/xor.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
Ignore this patch. While looking at xor.c again I realized that all
inline assembly constraints are incorrect. Will send an updated
version next week.