Blame SOURCES/0000-Ticket-49164-Change-NS-to-acq-rel-semantics-for-atom.patch

61f723
From 70230bf894d9c0150dca8dc6fccc2712187f7b86 Mon Sep 17 00:00:00 2001
61f723
From: William Brown <firstyear@redhat.com>
61f723
Date: Mon, 13 Mar 2017 13:29:43 +1000
61f723
Subject: [PATCH 1/5] Ticket 49164 - Change NS to acq-rel semantics for atomics
61f723
61f723
Bug Description:  We were using seq_cst to guarantee our operations
61f723
as a poc. Changing to acq/rel allows us the same guarantees, but
61f723
with less overheads.
61f723
61f723
Fix Description:  Change the barrier type.
61f723
61f723
https://gcc.gnu.org/wiki/Atomic/GCCMM/AtomicSync
61f723
61f723
https://pagure.io/389-ds-base/issue/49164
61f723
61f723
Author: wibrown
61f723
61f723
Review by: mreynolds (Thanks!)
61f723
61f723
(cherry picked from commit b1b0574d2cdb012ab206999ed51f08d3340386ce)
61f723
---
61f723
 src/nunc-stans/ns/ns_thrpool.c | 8 ++++----
61f723
 1 file changed, 4 insertions(+), 4 deletions(-)
61f723
61f723
diff --git a/src/nunc-stans/ns/ns_thrpool.c b/src/nunc-stans/ns/ns_thrpool.c
61f723
index 744749b..a867b39 100644
61f723
--- a/src/nunc-stans/ns/ns_thrpool.c
61f723
+++ b/src/nunc-stans/ns/ns_thrpool.c
61f723
@@ -167,7 +167,7 @@ ns_thrpool_is_shutdown(struct ns_thrpool_t *tp)
61f723
 {
61f723
     /* We need to barrier this somehow? */
61f723
     int32_t result = 0;
61f723
-    __atomic_load(&(tp->shutdown), &result, __ATOMIC_SEQ_CST);
61f723
+    __atomic_load(&(tp->shutdown), &result, __ATOMIC_ACQUIRE);
61f723
     return result;
61f723
 }
61f723
 
61f723
@@ -176,7 +176,7 @@ ns_thrpool_is_event_shutdown(struct ns_thrpool_t *tp)
61f723
 {
61f723
     /* We need to barrier this somehow? */
61f723
     int32_t result = 0;
61f723
-    __atomic_load(&(tp->shutdown_event_loop), &result, __ATOMIC_SEQ_CST);
61f723
+    __atomic_load(&(tp->shutdown_event_loop), &result, __ATOMIC_ACQUIRE);
61f723
     return result;
61f723
 }
61f723
 
61f723
@@ -1402,7 +1402,7 @@ ns_thrpool_destroy(struct ns_thrpool_t *tp)
61f723
 #endif
61f723
     if (tp) {
61f723
         /* Set the flag to shutdown the event loop. */
61f723
-        __atomic_add_fetch(&(tp->shutdown_event_loop), 1, __ATOMIC_SEQ_CST);
61f723
+        __atomic_add_fetch(&(tp->shutdown_event_loop), 1, __ATOMIC_RELEASE);
61f723
 
61f723
         /* Finish the event queue wakeup job.  This has the
61f723
          * side effect of waking up the event loop thread, which
61f723
@@ -1491,7 +1491,7 @@ ns_thrpool_shutdown(struct ns_thrpool_t *tp)
61f723
     }
61f723
     /* Set the shutdown flag.  This will cause the worker
61f723
      * threads to exit after they finish all remaining work. */
61f723
-    __atomic_add_fetch(&(tp->shutdown), 1, __ATOMIC_SEQ_CST);
61f723
+    __atomic_add_fetch(&(tp->shutdown), 1, __ATOMIC_RELEASE);
61f723
 
61f723
     /* Wake up the idle worker threads so they can exit. */
61f723
     pthread_mutex_lock(&(tp->work_q_lock));
61f723
-- 
61f723
2.9.3
61f723