diff options
author | Palmer Dabbelt <palmer@sifive.com> | 2017-11-28 14:03:48 -0800 |
---|---|---|
committer | Palmer Dabbelt <palmer@sifive.com> | 2017-11-28 14:03:48 -0800 |
commit | 61a60d35b7d1b0b3a31bc21d15805a3654f60920 (patch) | |
tree | 33c6b01969c4392dc642fb1bb98f8f18a473d218 /arch | |
parent | 8286d51a6c244738aeb071fcd7d2e36a3374e150 (diff) | |
download | linux-stable-61a60d35b7d1b0b3a31bc21d15805a3654f60920.tar.gz linux-stable-61a60d35b7d1b0b3a31bc21d15805a3654f60920.tar.bz2 linux-stable-61a60d35b7d1b0b3a31bc21d15805a3654f60920.zip |
RISC-V: Remove __smp_bp__{before,after}_atomic
These duplicate the asm-generic definitions are therefor aren't useful.
Signed-off-by: Palmer Dabbelt <palmer@sifive.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/riscv/include/asm/barrier.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/arch/riscv/include/asm/barrier.h b/arch/riscv/include/asm/barrier.h index 183534b7c39b..455ee16127fb 100644 --- a/arch/riscv/include/asm/barrier.h +++ b/arch/riscv/include/asm/barrier.h @@ -39,21 +39,6 @@ #define smp_wmb() RISCV_FENCE(w,w) /* - * These fences exist to enforce ordering around the relaxed AMOs. The - * documentation defines that - * " - * atomic_fetch_add(); - * is equivalent to: - * smp_mb__before_atomic(); - * atomic_fetch_add_relaxed(); - * smp_mb__after_atomic(); - * " - * So we emit full fences on both sides. - */ -#define __smb_mb__before_atomic() smp_mb() -#define __smb_mb__after_atomic() smp_mb() - -/* * These barriers prevent accesses performed outside a spinlock from being moved * inside a spinlock. Since RISC-V sets the aq/rl bits on our spinlock only * enforce release consistency, we need full fences here. |