0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 3.139.80.172


Current Path : /lib/modules/5.4.0-1103-aws/build/scripts/atomic/fallbacks/
Upload File :
Current File : //lib/modules/5.4.0-1103-aws/build/scripts/atomic/fallbacks/try_cmpxchg

cat <<EOF
static inline bool
${atomic}_try_cmpxchg${order}(${atomic}_t *v, ${int} *old, ${int} new)
{
	${int} r, o = *old;
	r = ${atomic}_cmpxchg${order}(v, o, new);
	if (unlikely(r != o))
		*old = r;
	return likely(r == o);
}
EOF