public inbox for linux-sh@vger.kernel.org
 help / color / mirror / Atom feed
* [RFC PATCH V2 FIX] Fix deadlock during find
@ 2008-11-20 13:45 Michael Trimarchi
  2008-11-25 17:06 ` Paul Mundt
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Michael Trimarchi @ 2008-11-20 13:45 UTC (permalink / raw)
  To: linux-sh

Fix a deadlock during find.

Continue with testing i find and errata implementation in the unlock.
This patch fix the deadlock.

Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>

---
 arch/sh/include/asm/mutex_sh.h |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/arch/sh/include/asm/mutex_sh.h b/arch/sh/include/asm/mutex_sh.h
index c98e875..c65f19e 100644
--- a/arch/sh/include/asm/mutex_sh.h
+++ b/arch/sh/include/asm/mutex_sh.h
@@ -48,18 +48,18 @@ __mutex_fastpath_lock_retval(atomic_t *count, int (*fail_fn)(atomic_t *))
 static inline void
 __mutex_fastpath_unlock(atomic_t *count, void (*fail_fn)(atomic_t *))
 {
-	int __res, __orig;
+	int __res;
 
 	__asm__ __volatile__ (
-		"movli.l	@%2, %0	\n\t"
-		"mov		%0, %1	\n\t"
+		"1: movli.l	@%1, %0	\n\t"
 		"add		#1, %0	\n\t"
-		"movco.l	%0, @%2 "
-		: "=&z" (__res), "=&r" (__orig)
+		"movco.l	%0, @%1 \n\t"
+		"bf		1b\n\t"
+		: "=&z" (__res)
 		: "r" (&(count)->counter)
 		: "t" );
 
-	if (unlikely(__orig != 0))
+	if (unlikely(__res <= 0))
 		fail_fn(count);
 }
 
-- 
1.5.6.5


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2008-12-06 14:17 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-20 13:45 [RFC PATCH V2 FIX] Fix deadlock during find Michael Trimarchi
2008-11-25 17:06 ` Paul Mundt
2008-11-26 13:04 ` Michael Trimarchi
2008-12-06 13:01 ` Paul Mundt
2008-12-06 14:16 ` Michael Trimarchi
2008-12-06 14:17 ` Michael Trimarchi
2008-12-06 14:17 ` Michael Trimarchi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox