xref: /openbmc/linux/scripts/atomic/fallbacks/fence (revision ec8f24b7faaf3d4799a7c3f4c1b87f6b02778ad1)
1cat <<EOF
2static inline ${ret}
3${atomic}_${pfx}${name}${sfx}(${params})
4{
5	${ret} ret;
6	__atomic_pre_full_fence();
7	ret = ${atomic}_${pfx}${name}${sfx}_relaxed(${args});
8	__atomic_post_full_fence();
9	return ret;
10}
11EOF
12