diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2019-10-16 06:51:43 +0200 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2019-10-16 09:14:33 +0200 |
commit | 775fd6bfefc66a8c33e91dd9687ed530643b954d (patch) | |
tree | 847cb936bf566b68a73869c5b505f5618e60fc65 /arch | |
parent | xtensa: virt: fix PCI IO ports mapping (diff) | |
download | linux-775fd6bfefc66a8c33e91dd9687ed530643b954d.tar.xz linux-775fd6bfefc66a8c33e91dd9687ed530643b954d.zip |
xtensa: fix change_bit in exclusive access option
change_bit implementation for XCHAL_HAVE_EXCLUSIVE case changes all bits
except the one required due to copy-paste error from clear_bit.
Cc: stable@vger.kernel.org # v5.2+
Fixes: f7c34874f04a ("xtensa: add exclusive atomics support")
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/xtensa/include/asm/bitops.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/xtensa/include/asm/bitops.h b/arch/xtensa/include/asm/bitops.h index aeb15f4c755b..be8b2be5a98b 100644 --- a/arch/xtensa/include/asm/bitops.h +++ b/arch/xtensa/include/asm/bitops.h @@ -148,7 +148,7 @@ static inline void change_bit(unsigned int bit, volatile unsigned long *p) " getex %0\n" " beqz %0, 1b\n" : "=&a" (tmp) - : "a" (~mask), "a" (p) + : "a" (mask), "a" (p) : "memory"); } |