You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.2 KiB
40 lines
1.2 KiB
From 49302b8fdf9103b6fc0a398678668a22fa19574c Mon Sep 17 00:00:00 2001
|
|
From: "H.J. Lu" <hjl.tools@gmail.com>
|
|
Date: Thu, 11 Nov 2021 06:54:01 -0800
|
|
Subject: [PATCH] Avoid extra load with CAS in __pthread_mutex_clocklock_common
|
|
[BZ #28537]
|
|
Content-type: text/plain; charset=UTF-8
|
|
|
|
Replace boolean CAS with value CAS to avoid the extra load.
|
|
|
|
Reviewed-by: Szabolcs Nagy <szabolcs.nagy@arm.com>
|
|
---
|
|
nptl/pthread_mutex_timedlock.c | 10 +++++-----
|
|
1 file changed, 5 insertions(+), 5 deletions(-)
|
|
|
|
diff --git a/nptl/pthread_mutex_timedlock.c b/nptl/pthread_mutex_timedlock.c
|
|
index 888c12fe..c4627ef6 100644
|
|
--- a/nptl/pthread_mutex_timedlock.c
|
|
+++ b/nptl/pthread_mutex_timedlock.c
|
|
@@ -269,12 +269,12 @@ __pthread_mutex_timedlock (pthread_mutex_t *mutex,
|
|
meantime. */
|
|
if ((oldval & FUTEX_WAITERS) == 0)
|
|
{
|
|
- if (atomic_compare_and_exchange_bool_acq (&mutex->__data.__lock,
|
|
- oldval | FUTEX_WAITERS,
|
|
- oldval)
|
|
- != 0)
|
|
+ int val;
|
|
+ if ((val = atomic_compare_and_exchange_val_acq
|
|
+ (&mutex->__data.__lock, oldval | FUTEX_WAITERS,
|
|
+ oldval)) != oldval)
|
|
{
|
|
- oldval = mutex->__data.__lock;
|
|
+ oldval = val;
|
|
continue;
|
|
}
|
|
oldval |= FUTEX_WAITERS;
|
|
--
|
|
GitLab
|
|
|