From: Heiko Carstens Date: Tue, 18 Oct 2022 11:44:11 +0000 (+0200) Subject: s390/futex: add missing EX_TABLE entry to __futex_atomic_op() X-Git-Tag: v5.15.79~365 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1ad7213fcf49daf1c7349df246db5d0ef8c7729d;p=platform%2Fkernel%2Flinux-rpi.git s390/futex: add missing EX_TABLE entry to __futex_atomic_op() commit a262d3ad6a433e4080cecd0a8841104a5906355e upstream. For some exception types the instruction address points behind the instruction that caused the exception. Take that into account and add the missing exception table entry. Cc: Reviewed-by: Vasily Gorbik Signed-off-by: Heiko Carstens Signed-off-by: Vasily Gorbik Signed-off-by: Greg Kroah-Hartman --- diff --git a/arch/s390/include/asm/futex.h b/arch/s390/include/asm/futex.h index c22debf..bf15767 100644 --- a/arch/s390/include/asm/futex.h +++ b/arch/s390/include/asm/futex.h @@ -16,7 +16,8 @@ "3: jl 1b\n" \ " lhi %0,0\n" \ "4: sacf 768\n" \ - EX_TABLE(0b,4b) EX_TABLE(2b,4b) EX_TABLE(3b,4b) \ + EX_TABLE(0b,4b) EX_TABLE(1b,4b) \ + EX_TABLE(2b,4b) EX_TABLE(3b,4b) \ : "=d" (ret), "=&d" (oldval), "=&d" (newval), \ "=m" (*uaddr) \ : "0" (-EFAULT), "d" (oparg), "a" (uaddr), \