]> www.infradead.org Git - users/jedix/linux-maple.git/commit
KVM: s390: Remove one byte cmpxchg() usage
authorHeiko Carstens <hca@linux.ibm.com>
Tue, 26 Nov 2024 10:25:14 +0000 (11:25 +0100)
committerHeiko Carstens <hca@linux.ibm.com>
Wed, 27 Nov 2024 11:55:15 +0000 (12:55 +0100)
commit7061c63919bde3bb0daa63e700a117ab1f2c97b1
tree67cb3145fd6e76903b4f940bbdd09af073fb1054
parent5618c53d96d1bf2df07df8b9204773db28acbc1b
KVM: s390: Remove one byte cmpxchg() usage

Within sca_clear_ext_call() cmpxchg() is used to clear one or two bytes
(depending on sca format). The cmpxchg() calls are not supposed to fail; if
so that would be a bug. Given that cmpxchg() usage on one and two byte
areas generates very inefficient code, replace them with block concurrent
WRITE_ONCE() calls, and remove the WARN_ON().

Acked-by: Claudio Imbrenda <imbrenda@linux.ibm.com>
Acked-by: Janosch Frank <frankja@linux.ibm.com>
Link: https://lore.kernel.org/r/20241126102515.3178914-3-hca@linux.ibm.com
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
arch/s390/kvm/interrupt.c