From 4d7033404d9671de36bec4a0a79c7c52546bc257 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Mon, 28 Sep 2009 23:15:21 -0400 Subject: [PATCH] urcu-qsbr: implement list_move algorithm Signed-off-by: Mathieu Desnoyers --- urcu-qsbr.c | 54 ++++++++++++++++++++++++++++++++--------------------- 1 file changed, 33 insertions(+), 21 deletions(-) diff --git a/urcu-qsbr.c b/urcu-qsbr.c index 7889506..f002c34 100644 --- a/urcu-qsbr.c +++ b/urcu-qsbr.c @@ -97,39 +97,49 @@ static void internal_urcu_unlock(void) /* * synchronize_rcu() waiting. Single thread. */ -static void wait_gp(struct urcu_reader *index) +static void wait_gp(void) { - uatomic_dec(&gp_futex); - smp_mb(); /* Write futex before read reader_gp */ - if (!rcu_gp_ongoing(&index->ctr)) { - /* Read reader_gp before write futex */ - smp_mb(); - /* Callbacks are queued, don't wait. */ - uatomic_set(&gp_futex, 0); - } else { - /* Read reader_gp before read futex */ - smp_rmb(); - if (uatomic_read(&gp_futex) == -1) - futex(&gp_futex, FUTEX_WAIT, -1, - NULL, NULL, 0); - } + /* Read reader_gp before read futex */ + smp_rmb(); + if (uatomic_read(&gp_futex) == -1) + futex(&gp_futex, FUTEX_WAIT, -1, + NULL, NULL, 0); } static void wait_for_quiescent_state(void) { - struct urcu_reader *index; + LIST_HEAD(qsreaders); + int wait_loops = 0; + struct urcu_reader *index, *tmp; if (list_empty(®istry)) return; /* * Wait for each thread rcu_reader_qs_gp count to become 0. */ - list_for_each_entry(index, ®istry, head) { - int wait_loops = 0; + for (;;) { + wait_loops++; + if (wait_loops == RCU_QS_ACTIVE_ATTEMPTS) { + uatomic_dec(&gp_futex); + /* Write futex before read reader_gp */ + smp_mb(); + } + + list_for_each_entry_safe(index, tmp, ®istry, head) { + if (!rcu_gp_ongoing(&index->ctr)) + list_move(&index->head, &qsreaders); + } - while (rcu_gp_ongoing(&index->ctr)) { - if (wait_loops++ == RCU_QS_ACTIVE_ATTEMPTS) { - wait_gp(index); + if (list_empty(®istry)) { + if (wait_loops == RCU_QS_ACTIVE_ATTEMPTS) { + /* Read reader_gp before write futex */ + smp_mb(); + uatomic_set(&gp_futex, 0); + } + break; + } else { + if (wait_loops == RCU_QS_ACTIVE_ATTEMPTS) { + wait_gp(); } else { #ifndef HAS_INCOHERENT_CACHES cpu_relax(); @@ -139,6 +149,8 @@ static void wait_for_quiescent_state(void) } } } + /* put back the reader list in the registry */ + list_splice(&qsreaders, ®istry); } /* -- 2.34.1