X-Git-Url: http://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=urcu-qsbr.c;h=b20d564c5f6799f3ac42d5e53fe4fc331a322cf7;hp=5e4348449ca9183b61bf1cbc6a041a549f784c2b;hb=dee093381aa4f642a707fb4b28dbb9df0b8ad155;hpb=71c811bf8db75c9502b295edb1e190f978682b65 diff --git a/urcu-qsbr.c b/urcu-qsbr.c index 5e43484..b20d564 100644 --- a/urcu-qsbr.c +++ b/urcu-qsbr.c @@ -39,6 +39,8 @@ #include "urcu/map/urcu-qsbr.h" #define BUILD_QSBR_LIB #include "urcu/static/urcu-qsbr.h" +#include "urcu-pointer.h" +#include "urcu/tls-compat.h" /* Do not #define _LGPL_SOURCE to ensure we can emit the wrapper symbols */ #undef _LGPL_SOURCE @@ -65,11 +67,11 @@ unsigned long rcu_gp_ctr = RCU_GP_ONLINE; * Written to only by each individual reader. Read by both the reader and the * writers. */ -struct rcu_reader __thread rcu_reader; +DEFINE_URCU_TLS(struct rcu_reader, rcu_reader); #ifdef DEBUG_YIELD unsigned int yield_active; -unsigned int __thread rand_yield; +DEFINE_URCU_TLS(unsigned int, rand_yield); #endif static CDS_LIST_HEAD(registry); @@ -138,7 +140,7 @@ static void update_counter_and_wait(void) * quiescent state. Failure to do so could result in the writer * waiting forever while new readers are always accessing data * (no progress). Enforce compiler-order of store to rcu_gp_ctr - * before load rcu_reader ctr. + * before load URCU_TLS(rcu_reader).ctr. */ cmm_barrier(); @@ -205,21 +207,20 @@ void synchronize_rcu(void) { unsigned long was_online; - was_online = rcu_reader.ctr; + was_online = URCU_TLS(rcu_reader).ctr; /* All threads should read qparity before accessing data structure - * where new ptr points to. - */ - /* Write new ptr before changing the qparity */ - cmm_smp_mb(); - - /* + * where new ptr points to. In the "then" case, rcu_thread_offline + * includes a memory barrier. + * * Mark the writer thread offline to make sure we don't wait for * our own quiescent state. This allows using synchronize_rcu() * in threads registered as readers. */ if (was_online) - CMM_STORE_SHARED(rcu_reader.ctr, 0); + rcu_thread_offline(); + else + cmm_smp_mb(); mutex_lock(&rcu_gp_lock); @@ -236,7 +237,7 @@ void synchronize_rcu(void) * committing next rcu_gp_ctr update to memory. Failure to * do so could result in the writer waiting forever while new * readers are always accessing data (no progress). Enforce - * compiler-order of load rcu_reader ctr before store to + * compiler-order of load URCU_TLS(rcu_reader).ctr before store to * rcu_gp_ctr. */ cmm_barrier(); @@ -260,25 +261,26 @@ out: * freed. */ if (was_online) - _CMM_STORE_SHARED(rcu_reader.ctr, - CMM_LOAD_SHARED(rcu_gp_ctr)); - cmm_smp_mb(); + rcu_thread_online(); + else + cmm_smp_mb(); } #else /* !(CAA_BITS_PER_LONG < 64) */ void synchronize_rcu(void) { unsigned long was_online; - was_online = rcu_reader.ctr; + was_online = URCU_TLS(rcu_reader).ctr; /* * Mark the writer thread offline to make sure we don't wait for * our own quiescent state. This allows using synchronize_rcu() * in threads registered as readers. */ - cmm_smp_mb(); if (was_online) - CMM_STORE_SHARED(rcu_reader.ctr, 0); + rcu_thread_offline(); + else + cmm_smp_mb(); mutex_lock(&rcu_gp_lock); if (cds_list_empty(®istry)) @@ -288,9 +290,9 @@ out: mutex_unlock(&rcu_gp_lock); if (was_online) - _CMM_STORE_SHARED(rcu_reader.ctr, - CMM_LOAD_SHARED(rcu_gp_ctr)); - cmm_smp_mb(); + rcu_thread_online(); + else + cmm_smp_mb(); } #endif /* !(CAA_BITS_PER_LONG < 64) */ @@ -325,11 +327,11 @@ void rcu_thread_online(void) void rcu_register_thread(void) { - rcu_reader.tid = pthread_self(); - assert(rcu_reader.ctr == 0); + URCU_TLS(rcu_reader).tid = pthread_self(); + assert(URCU_TLS(rcu_reader).ctr == 0); mutex_lock(&rcu_gp_lock); - cds_list_add(&rcu_reader.node, ®istry); + cds_list_add(&URCU_TLS(rcu_reader).node, ®istry); mutex_unlock(&rcu_gp_lock); _rcu_thread_online(); } @@ -342,14 +344,20 @@ void rcu_unregister_thread(void) */ _rcu_thread_offline(); mutex_lock(&rcu_gp_lock); - cds_list_del(&rcu_reader.node); + cds_list_del(&URCU_TLS(rcu_reader).node); mutex_unlock(&rcu_gp_lock); } void rcu_exit(void) { - assert(cds_list_empty(®istry)); + /* + * Assertion disabled because call_rcu threads are now rcu + * readers, and left running at exit. + * assert(cds_list_empty(®istry)); + */ } +DEFINE_RCU_FLAVOR(rcu_flavor); + #include "urcu-call-rcu-impl.h" #include "urcu-defer-impl.h"