From: Ralf Baechle Date: Thu, 11 Oct 2007 22:45:58 +0000 (+0100) Subject: [MIPS] SMTC: Microoptimize atomic_postincrement for non-weak consistency. X-Git-Tag: v2.6.24-rc1~1455^2~77 X-Git-Url: http://ftp.safe.ca/?a=commitdiff_plain;h=d87d0c930a1591617e4c7c78296b4ba029150188;p=safe%2Fjmp%2Flinux-2.6 [MIPS] SMTC: Microoptimize atomic_postincrement for non-weak consistency. Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/kernel/smtc.c b/arch/mips/kernel/smtc.c index fe22387..137183b 100644 --- a/arch/mips/kernel/smtc.c +++ b/arch/mips/kernel/smtc.c @@ -713,7 +713,7 @@ static __inline__ int atomic_postincrement(unsigned int *pv) " addu %1, %0, 1 \n" " sc %1, %2 \n" " beqz %1, 1b \n" - " sync \n" + __WEAK_LLSC_MB : "=&r" (result), "=&r" (temp), "=m" (*pv) : "m" (*pv) : "memory");