x86/reboot: Limit Dell Optiplex 990 quirk to early BIOS versions
[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