From: Chris Metcalf Date: Tue, 6 Aug 2013 18:32:49 +0000 (-0400) Subject: tile: fix comment bug in sys_cmpxchg description X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=b63ea7121c60b38f2d0ca0f270697bc542f6b76c;p=deliverable%2Flinux.git tile: fix comment bug in sys_cmpxchg description Signed-off-by: Chris Metcalf --- diff --git a/arch/tile/kernel/intvec_32.S b/arch/tile/kernel/intvec_32.S index cb52d66343ed..25966af74a28 100644 --- a/arch/tile/kernel/intvec_32.S +++ b/arch/tile/kernel/intvec_32.S @@ -1609,7 +1609,7 @@ ENTRY(sys_cmpxchg) * Because of C pointer arithmetic, we want to compute this: * * ((char*)atomic_locks + - * (((r0 >> 3) & (1 << (ATOMIC_HASH_SIZE - 1))) << 2)) + * (((r0 >> 3) & ((1 << ATOMIC_HASH_SHIFT) - 1)) << 2)) * * Instead of two shifts we just ">> 1", and use 'mm' * to ignore the low and high bits we don't want.