aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPan Xinhui <xinhui.pan@linux.vnet.ibm.com>2016-04-20 02:41:00 -0400
committerRich Felker <dalias@libc.org>2016-07-30 23:33:32 -0400
commitff18143ceed3424b7d6cdb8659b9692fa734f0d8 (patch)
tree4b7fe3f1cf044b116366ccaab61c35a82d18ff80
parent7f155c702677d057d03b192ce652311de5434697 (diff)
sh: cmpxchg: fix a bit shift bug in big_endian os
Correct bitoff in big endian OS. Current code works correctly for 1 byte but not for 2 bytes. Fixes: 3226aad81aa6 ("sh: support 1 and 2 byte xchg") Signed-off-by: Pan Xinhui <xinhui.pan@linux.vnet.ibm.com> Acked-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Rich Felker <dalias@libc.org>
-rw-r--r--arch/sh/include/asm/cmpxchg-xchg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/include/asm/cmpxchg-xchg.h b/arch/sh/include/asm/cmpxchg-xchg.h
index 7219719c23a3..1e881f5db659 100644
--- a/arch/sh/include/asm/cmpxchg-xchg.h
+++ b/arch/sh/include/asm/cmpxchg-xchg.h
@@ -21,7 +21,7 @@ static inline u32 __xchg_cmpxchg(volatile void *ptr, u32 x, int size)
21 int off = (unsigned long)ptr % sizeof(u32); 21 int off = (unsigned long)ptr % sizeof(u32);
22 volatile u32 *p = ptr - off; 22 volatile u32 *p = ptr - off;
23#ifdef __BIG_ENDIAN 23#ifdef __BIG_ENDIAN
24 int bitoff = (sizeof(u32) - 1 - off) * BITS_PER_BYTE; 24 int bitoff = (sizeof(u32) - size - off) * BITS_PER_BYTE;
25#else 25#else
26 int bitoff = off * BITS_PER_BYTE; 26 int bitoff = off * BITS_PER_BYTE;
27#endif 27#endif