diff options
author | Greg Ungerer <gerg@snapgear.com> | 2008-02-14 19:31:25 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-14 20:58:05 -0800 |
commit | 091b76d6aa788d8294caa2895cea1013f3eff7da (patch) | |
tree | f9dce5d9d5a64512cc388c7e7fbc4561a34448fe /include/asm-m68knommu | |
parent | 903be1c56444615342ac5f1fc103e2ec11043714 (diff) | |
download | op-kernel-dev-091b76d6aa788d8294caa2895cea1013f3eff7da.zip op-kernel-dev-091b76d6aa788d8294caa2895cea1013f3eff7da.tar.gz |
m68knommu: avoid unneccessary use of xchg() in set_mb()
Avoid unneccessary use of xchg() in set_mb().
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-m68knommu')
-rw-r--r-- | include/asm-m68knommu/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-m68knommu/system.h b/include/asm-m68knommu/system.h index 039ab3f..64c6443 100644 --- a/include/asm-m68knommu/system.h +++ b/include/asm-m68knommu/system.h @@ -104,7 +104,7 @@ asmlinkage void resume(void); #define mb() asm volatile ("" : : :"memory") #define rmb() asm volatile ("" : : :"memory") #define wmb() asm volatile ("" : : :"memory") -#define set_mb(var, value) do { xchg(&var, value); } while (0) +#define set_mb(var, value) ({ (var) = (value); wmb(); }) #ifdef CONFIG_SMP #define smp_mb() mb() |