From 23758cc9e9aa85a1ed3864674829d60f3a715353 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Mon, 28 Sep 2009 23:07:36 -0400 Subject: [PATCH] urcu (mb/signal): fix list move implementation Signed-off-by: Mathieu Desnoyers --- urcu.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/urcu.c b/urcu.c index e70980f..7fdb1a6 100644 --- a/urcu.c +++ b/urcu.c @@ -216,7 +216,7 @@ void wait_for_quiescent_state(void) { LIST_HEAD(qsreaders); int wait_loops = 0; - struct urcu_reader *index; + struct urcu_reader *index, *tmp; if (list_empty(®istry)) return; @@ -231,7 +231,7 @@ void wait_for_quiescent_state(void) force_mb_all_threads(); } - list_for_each_entry(index, ®istry, head) { + list_for_each_entry_safe(index, tmp, ®istry, head) { if (!rcu_old_gp_ongoing(&index->ctr)) list_move(&index->head, &qsreaders); } @@ -278,7 +278,7 @@ void wait_for_quiescent_state(void) #endif /* #else #ifndef HAS_INCOHERENT_CACHES */ } /* put back the reader list in the registry */ - list_move(&qsreaders, ®istry); + list_splice(&qsreaders, ®istry); } void synchronize_rcu(void) -- 2.34.1