mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
12 lines
218 B
Text
12 lines
218 B
Text
![]() |
cat <<EOF
|
||
|
static inline ${ret}
|
||
|
${atomic}_${pfx}${name}${sfx}(${params})
|
||
|
{
|
||
|
${ret} ret;
|
||
|
__atomic_pre_full_fence();
|
||
|
ret = ${atomic}_${pfx}${name}${sfx}_relaxed(${args});
|
||
|
__atomic_post_full_fence();
|
||
|
return ret;
|
||
|
}
|
||
|
EOF
|