diff options
Diffstat (limited to 'arch/mips/include/asm/bitops.h')
| -rw-r--r-- | arch/mips/include/asm/bitops.h | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/mips/include/asm/bitops.h b/arch/mips/include/asm/bitops.h index 84a383806b2..9255cfbee45 100644 --- a/arch/mips/include/asm/bitops.h +++ b/arch/mips/include/asm/bitops.h @@ -42,7 +42,7 @@  /*   * clear_bit() doesn't provide any barrier for the compiler.   */ -#define smp_mb__before_clear_bit()	smp_llsc_mb() +#define smp_mb__before_clear_bit()	smp_mb__before_llsc()  #define smp_mb__after_clear_bit()	smp_llsc_mb()  /* @@ -258,7 +258,7 @@ static inline int test_and_set_bit(unsigned long nr,  	unsigned short bit = nr & SZLONG_MASK;  	unsigned long res; -	smp_llsc_mb(); +	smp_mb__before_llsc();  	if (kernel_uses_llsc && R10000_LLSC_WAR) {  		unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG); @@ -395,7 +395,7 @@ static inline int test_and_clear_bit(unsigned long nr,  	unsigned short bit = nr & SZLONG_MASK;  	unsigned long res; -	smp_llsc_mb(); +	smp_mb__before_llsc();  	if (kernel_uses_llsc && R10000_LLSC_WAR) {  		unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG); @@ -485,7 +485,7 @@ static inline int test_and_change_bit(unsigned long nr,  	unsigned short bit = nr & SZLONG_MASK;  	unsigned long res; -	smp_llsc_mb(); +	smp_mb__before_llsc();  	if (kernel_uses_llsc && R10000_LLSC_WAR) {  		unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);  |