RISC-V: Comment on why {,cmp}xchg is ordered how it is
authorPalmer Dabbelt <palmer@sifive.com>
Tue, 28 Nov 2017 22:02:50 +0000 (14:02 -0800)
committerPalmer Dabbelt <palmer@sifive.com>
Tue, 28 Nov 2017 22:03:29 +0000 (14:03 -0800)
This is another memory model FIXME.

Signed-off-by: Palmer Dabbelt <palmer@sifive.com>
arch/riscv/include/asm/atomic.h

index 40c73dd59c15306b6fd1713ae7898daef848b207..e65d1cd89e28bb5ae52291e8fa2d13937f28e1a9 100644 (file)
@@ -300,8 +300,13 @@ static __always_inline long atomic64_inc_not_zero(atomic64_t *v)
 
 /*
  * atomic_{cmp,}xchg is required to have exactly the same ordering semantics as
- * {cmp,}xchg and the operations that return, so they need a barrier.  We just
- * use the other implementations directly.
+ * {cmp,}xchg and the operations that return, so they need a barrier.
+ */
+/*
+ * FIXME: atomic_cmpxchg_{acquire,release,relaxed} are all implemented by
+ * assigning the same barrier to both the LR and SC operations, but that might
+ * not make any sense.  We're waiting on a memory model specification to
+ * determine exactly what the right thing to do is here.
  */
 #define ATOMIC_OP(c_t, prefix, c_or, size, asm_or)                                             \
 static __always_inline c_t atomic##prefix##_cmpxchg##c_or(atomic##prefix##_t *v, c_t o, c_t n)         \