Re: [PATCH][v2] atomic_dec_if_positive sign extension fix
From: Robert Jennings <hidden>
Date: 2007-01-16 18:16:12
Subsystem:
atomic infrastructure, the rest · Maintainers:
Will Deacon, Peter Zijlstra, Boqun Feng, Linus Torvalds
Paul, Here is v.2 for the patch. Please apply for 2.6.20. If an atomic counter is explicitly set to a negative value the atomic_dec_if_positive function will decrement and store the next smallest value in the atomic counter contrary to it's intended operation. The comparison to determine if the decrement will make the result negative is done by the "addic." operation which operates on a 64-bit value. I've changed the addic to an addi (changing "=&r" to "=&g" in the process so that r0 isn't used, and addi doesn't become li) and done a cmpwi prior to the add. By comparing prior to the add I can pick up the case for 0x80000000, so that it is considered positive. Also, I clarify the return value in the comments just to make it clear that the value returned is always the decremented value, even if that value is not stored back to the atomic counter. Signed-off-by: Robert Jennings <redacted> --- atomic.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/include/asm-powerpc/atomic.h b/include/asm-powerpc/atomic.h
index 53283e2..f6f7e5f 100644
--- a/include/asm-powerpc/atomic.h
+++ b/include/asm-powerpc/atomic.h@@ -207,7 +207,8 @@ #define atomic_dec_and_test(v) (atomic_ /* * Atomically test *v and decrement if it is greater than 0. - * The function returns the old value of *v minus 1. + * The function returns the old value of *v minus 1, even if + * the atomic variable, v, was not decremented. */ static __inline__ int atomic_dec_if_positive(atomic_t *v) {
@@ -216,14 +217,15 @@ static __inline__ int atomic_dec_if_posi __asm__ __volatile__( LWSYNC_ON_SMP "1: lwarx %0,0,%1 # atomic_dec_if_positive\n\ - addic. %0,%0,-1\n\ + cmpwi %0,1\n\ + addi %0,%0,-1\n\ blt- 2f\n" PPC405_ERR77(0,%1) " stwcx. %0,0,%1\n\ bne- 1b" ISYNC_ON_SMP "\n\ -2:" : "=&r" (t) +2:" : "=&g" (t) : "r" (&v->counter) : "cc", "memory");