aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-07-28 02:19:49 -0400
committerMike Frysinger <vapier@gentoo.org>2015-07-28 05:05:09 -0400
commit43d7ce9238c59c61003994cb26eff4a6a072ebd5 (patch)
tree9d836fd3bc131a3c538023c3812a5c3ed05b4fab
parent15ec5f09005dd20b65d0a5de3afba391707bce2f (diff)
downloadglibc-43d7ce9238c59c61003994cb26eff4a6a072ebd5.tar
glibc-43d7ce9238c59c61003994cb26eff4a6a072ebd5.tar.gz
glibc-43d7ce9238c59c61003994cb26eff4a6a072ebd5.tar.bz2
glibc-43d7ce9238c59c61003994cb26eff4a6a072ebd5.zip
ia64: atomic.h: fix atomic_exchange_and_add 64bit handling
Way back in 2005 the atomic_exchange_and_add function was cleaned up to avoid the explicit size checking and instead let gcc handle things itself. Unfortunately that change ended up leaving beyond a cast to int, even when the incoming value was a long. This has flown under the radar for a long time due to the function not being heavily used in the tree (especially as a full 64bit field), but a recent change to semaphores made some nptl tests fail reliably. This is due to the code packing two 32bit values into one 64bit variable (where the high 32bits contained the number of waiters), and then the whole variable being atomically updated between threads. On ia64, that meant we never atomically updated the count, so sometimes the sem_post would not wake up the waiters. (cherry picked from commit cf31a2c79957936b60de34ea1e718e892baf669c) (cherry picked from commit 978908245b2c0f759100708a9966649f7b273664)
-rw-r--r--sysdeps/ia64/bits/atomic.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/sysdeps/ia64/bits/atomic.h b/sysdeps/ia64/bits/atomic.h
index 0e9dfc7174..4c2b54094c 100644
--- a/sysdeps/ia64/bits/atomic.h
+++ b/sysdeps/ia64/bits/atomic.h
@@ -82,9 +82,7 @@ typedef uintmax_t uatomic_max_t;
(__sync_synchronize (), __sync_lock_test_and_set (mem, value))
#define atomic_exchange_and_add(mem, value) \
- ({ __typeof (*mem) __result; \
- __result = __sync_fetch_and_add ((mem), (int) (value)); \
- __result; })
+ __sync_fetch_and_add ((mem), (value))
#define atomic_decrement_if_positive(mem) \
({ __typeof (*mem) __oldval, __val; \