Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
32 lines
689 B
C
32 lines
689 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef __ASM_S390_RWONCE_H
|
|
#define __ASM_S390_RWONCE_H
|
|
|
|
#include <linux/compiler_types.h>
|
|
|
|
/*
|
|
* Use READ_ONCE_ALIGNED_128() for 128-bit block concurrent (atomic) read
|
|
* accesses. Note that x must be 128-bit aligned, otherwise a specification
|
|
* exception is generated.
|
|
*/
|
|
#define READ_ONCE_ALIGNED_128(x) \
|
|
({ \
|
|
union { \
|
|
typeof(x) __x; \
|
|
__uint128_t val; \
|
|
} __u; \
|
|
\
|
|
BUILD_BUG_ON(sizeof(x) != 16); \
|
|
asm volatile( \
|
|
" lpq %[val],%[_x]" \
|
|
: [val] "=d" (__u.val) \
|
|
: [_x] "QS" (x) \
|
|
: "memory"); \
|
|
__u.__x; \
|
|
})
|
|
|
|
#include <asm-generic/rwonce.h>
|
|
|
|
#endif /* __ASM_S390_RWONCE_H */
|