* DDD <dongdong.deng@xxxxxxxxxxxxx> wrote:
Ingo Molnar wrote:* Dongdong Deng <dongdong.deng@xxxxxxxxxxxxx> wrote:As the 'backtrace_flag' could be accessed by multi-cpus on SMP at
+static int backtrace_flag;Sorry to be a PITA, but i asked for test_and_set() because that's
+ if (cmpxchg(&backtrace_flag, 0, 1) != 0)
the simplest primitive. cmpxchg() semantics is not nearly as
obvious and people regularly get it wrong :-/
the same time, I use cmpxchg() for getting a atomic/memory barrier
operation for 'backtrace_flag' variable.
If we use test_and_set, maybe we need smp_wmb() after test_and_set.
(If I wrong, please correct me, thanks. :-) )
No, test_and_set_bit() is SMP safe and is an implicit barrier as well - so no smp_wmb() or other barriers are needed.
Thanks,
Ingo