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