Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

tools include: Provide gcc based cmpxchg fallback for !x86

We've been using an atomic_t implementation subset based on the gcc
builtin functions for a while, now, with refcount.h we need cmpxchg(),
use gcc's __sync_val_compare_and_swap() for that.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Elena Reshetova <elena.reshetova@intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-b9zovyxgpa0c4vi3nm0kjo97@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

+8
+8
tools/include/asm-generic/atomic-gcc.h
··· 60 60 return __sync_sub_and_fetch(&v->counter, 1) == 0; 61 61 } 62 62 63 + #define cmpxchg(ptr, oldval, newval) \ 64 + __sync_val_compare_and_swap(ptr, oldval, newval) 65 + 66 + static inline int atomic_cmpxchg(atomic_t *v, int oldval, int newval) 67 + { 68 + return cmpxchg(&(v)->counter, oldval, newval); 69 + } 70 + 63 71 #endif /* __TOOLS_ASM_GENERIC_ATOMIC_H */