projects
/
linux-2.6-microblaze.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
depmod: handle the case of /sbin/depmod without /sbin in PATH
[linux-2.6-microblaze.git]
/
scripts
/
atomic
/
fallbacks
/
try_cmpxchg
1
cat <<EOF
2
static __always_inline bool
3
${arch}${atomic}_try_cmpxchg${order}(${atomic}_t *v, ${int} *old, ${int} new)
4
{
5
${int} r, o = *old;
6
r = ${arch}${atomic}_cmpxchg${order}(v, o, new);
7
if (unlikely(r != o))
8
*old = r;
9
return likely(r == o);
10
}
11
EOF