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
... / ...
CommitLineData
1cat <<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;
11EOF