projects
/
linux-block.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
Merge tag 'mm-hotfixes-stable-2025-07-11-16-16' of git://git.kernel.org/pub/scm/linux...
[linux-block.git]
/
scripts
/
atomic
/
fallbacks
/
dec_if_positive
This page requires JavaScript to run. Use
this page
instead.
... / ...
Commit
Line
Data
1
cat <<EOF
2
${int} dec, c = raw_${atomic}_read(v);
3
4
do {
5
dec = c - 1;
6
if (unlikely(dec < 0))
7
break;
8
} while (!raw_${atomic}_try_cmpxchg(v, &c, dec));
9
10
return dec;
11
EOF