4 * Userspace RCU library - batch memory reclamation with kernel API
6 * Copyright (c) 2010 Paul E. McKenney <paulmck@linux.vnet.ibm.com>
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
37 #include "compat-getcpu.h"
38 #include "urcu/wfcqueue.h"
39 #include "urcu-call-rcu.h"
40 #include "urcu-pointer.h"
41 #include "urcu/list.h"
42 #include "urcu/futex.h"
43 #include "urcu/tls-compat.h"
47 #define SET_AFFINITY_CHECK_PERIOD (1U << 8) /* 256 */
48 #define SET_AFFINITY_CHECK_PERIOD_MASK (SET_AFFINITY_CHECK_PERIOD - 1)
50 /* Data structure that identifies a call_rcu thread. */
52 struct call_rcu_data
{
54 * We do not align head on a different cache-line than tail
55 * mainly because call_rcu callback-invocation threads use
56 * batching ("splice") to get an entire list of callbacks, which
57 * effectively empties the queue, and requires to touch the tail
60 struct cds_wfcq_tail cbs_tail
;
61 struct cds_wfcq_head cbs_head
;
64 unsigned long qlen
; /* maintained for debugging. */
67 unsigned long gp_count
;
68 struct cds_list_head list
;
69 } __attribute__((aligned(CAA_CACHE_LINE_SIZE
)));
71 struct call_rcu_completion
{
77 struct call_rcu_completion_work
{
79 struct call_rcu_completion
*completion
;
83 * List of all call_rcu_data structures to keep valgrind happy.
84 * Protected by call_rcu_mutex.
87 static CDS_LIST_HEAD(call_rcu_data_list
);
89 /* Link a thread using call_rcu() to its call_rcu thread. */
91 static DEFINE_URCU_TLS(struct call_rcu_data
*, thread_call_rcu_data
);
94 * Guard call_rcu thread creation and atfork handlers.
96 static pthread_mutex_t call_rcu_mutex
= PTHREAD_MUTEX_INITIALIZER
;
98 /* If a given thread does not have its own call_rcu thread, this is default. */
100 static struct call_rcu_data
*default_call_rcu_data
;
102 static struct urcu_atfork
*registered_rculfhash_atfork
;
103 static unsigned long registered_rculfhash_atfork_refcount
;
106 * If the sched_getcpu() and sysconf(_SC_NPROCESSORS_CONF) calls are
107 * available, then we can have call_rcu threads assigned to individual
108 * CPUs rather than only to specific threads.
111 #if defined(HAVE_SYSCONF) && (defined(HAVE_SCHED_GETCPU) || defined(HAVE_GETCPUID))
114 * Pointer to array of pointers to per-CPU call_rcu_data structures
115 * and # CPUs. per_cpu_call_rcu_data is a RCU-protected pointer to an
116 * array of RCU-protected pointers to call_rcu_data. call_rcu acts as a
117 * RCU read-side and reads per_cpu_call_rcu_data and the per-cpu pointer
118 * without mutex. The call_rcu_mutex protects updates.
121 static struct call_rcu_data
**per_cpu_call_rcu_data
;
124 static void maxcpus_reset(void)
129 /* Allocate the array if it has not already been allocated. */
131 static void alloc_cpu_call_rcu_data(void)
133 struct call_rcu_data
**p
;
134 static int warned
= 0;
138 maxcpus
= sysconf(_SC_NPROCESSORS_CONF
);
142 p
= malloc(maxcpus
* sizeof(*per_cpu_call_rcu_data
));
144 memset(p
, '\0', maxcpus
* sizeof(*per_cpu_call_rcu_data
));
145 rcu_set_pointer(&per_cpu_call_rcu_data
, p
);
148 fprintf(stderr
, "[error] liburcu: unable to allocate per-CPU pointer array\n");
154 #else /* #if defined(HAVE_SYSCONF) && defined(HAVE_SCHED_GETCPU) */
157 * per_cpu_call_rcu_data should be constant, but some functions below, used both
158 * for cases where cpu number is available and not available, assume it it not
161 static struct call_rcu_data
**per_cpu_call_rcu_data
= NULL
;
162 static const long maxcpus
= -1;
164 static void maxcpus_reset(void)
168 static void alloc_cpu_call_rcu_data(void)
172 #endif /* #else #if defined(HAVE_SYSCONF) && defined(HAVE_SCHED_GETCPU) */
174 /* Acquire the specified pthread mutex. */
176 static void call_rcu_lock(pthread_mutex_t
*pmp
)
180 ret
= pthread_mutex_lock(pmp
);
185 /* Release the specified pthread mutex. */
187 static void call_rcu_unlock(pthread_mutex_t
*pmp
)
191 ret
= pthread_mutex_unlock(pmp
);
197 * Periodically retry setting CPU affinity if we migrate.
198 * Losing affinity can be caused by CPU hotunplug/hotplug, or by
201 #if HAVE_SCHED_SETAFFINITY
203 int set_thread_cpu_affinity(struct call_rcu_data
*crdp
)
208 if (crdp
->cpu_affinity
< 0)
210 if (++crdp
->gp_count
& SET_AFFINITY_CHECK_PERIOD_MASK
)
212 if (urcu_sched_getcpu() == crdp
->cpu_affinity
)
216 CPU_SET(crdp
->cpu_affinity
, &mask
);
217 #if SCHED_SETAFFINITY_ARGS == 2
218 ret
= sched_setaffinity(0, &mask
);
220 ret
= sched_setaffinity(0, sizeof(mask
), &mask
);
223 * EINVAL is fine: can be caused by hotunplugged CPUs, or by
224 * cpuset(7). This is why we should always retry if we detect
227 if (ret
&& errno
== EINVAL
) {
235 int set_thread_cpu_affinity(struct call_rcu_data
*crdp
)
241 static void call_rcu_wait(struct call_rcu_data
*crdp
)
243 /* Read call_rcu list before read futex */
245 if (uatomic_read(&crdp
->futex
) != -1)
247 while (futex_async(&crdp
->futex
, FUTEX_WAIT
, -1,
251 /* Value already changed. */
254 /* Retry if interrupted by signal. */
255 break; /* Get out of switch. */
257 /* Unexpected error. */
263 static void call_rcu_wake_up(struct call_rcu_data
*crdp
)
265 /* Write to call_rcu list before reading/writing futex */
267 if (caa_unlikely(uatomic_read(&crdp
->futex
) == -1)) {
268 uatomic_set(&crdp
->futex
, 0);
269 if (futex_async(&crdp
->futex
, FUTEX_WAKE
, 1,
275 static void call_rcu_completion_wait(struct call_rcu_completion
*completion
)
277 /* Read completion barrier count before read futex */
279 if (uatomic_read(&completion
->futex
) != -1)
281 while (futex_async(&completion
->futex
, FUTEX_WAIT
, -1,
285 /* Value already changed. */
288 /* Retry if interrupted by signal. */
289 break; /* Get out of switch. */
291 /* Unexpected error. */
297 static void call_rcu_completion_wake_up(struct call_rcu_completion
*completion
)
299 /* Write to completion barrier count before reading/writing futex */
301 if (caa_unlikely(uatomic_read(&completion
->futex
) == -1)) {
302 uatomic_set(&completion
->futex
, 0);
303 if (futex_async(&completion
->futex
, FUTEX_WAKE
, 1,
309 /* This is the code run by each call_rcu thread. */
311 static void *call_rcu_thread(void *arg
)
313 unsigned long cbcount
;
314 struct call_rcu_data
*crdp
= (struct call_rcu_data
*) arg
;
315 int rt
= !!(uatomic_read(&crdp
->flags
) & URCU_CALL_RCU_RT
);
317 if (set_thread_cpu_affinity(crdp
))
321 * If callbacks take a read-side lock, we need to be registered.
323 rcu_register_thread();
325 URCU_TLS(thread_call_rcu_data
) = crdp
;
327 uatomic_dec(&crdp
->futex
);
328 /* Decrement futex before reading call_rcu list */
332 struct cds_wfcq_head cbs_tmp_head
;
333 struct cds_wfcq_tail cbs_tmp_tail
;
334 struct cds_wfcq_node
*cbs
, *cbs_tmp_n
;
335 enum cds_wfcq_ret splice_ret
;
337 if (set_thread_cpu_affinity(crdp
))
340 if (uatomic_read(&crdp
->flags
) & URCU_CALL_RCU_PAUSE
) {
342 * Pause requested. Become quiescent: remove
343 * ourself from all global lists, and don't
344 * process any callback. The callback lists may
345 * still be non-empty though.
347 rcu_unregister_thread();
348 cmm_smp_mb__before_uatomic_or();
349 uatomic_or(&crdp
->flags
, URCU_CALL_RCU_PAUSED
);
350 while ((uatomic_read(&crdp
->flags
) & URCU_CALL_RCU_PAUSE
) != 0)
351 (void) poll(NULL
, 0, 1);
352 uatomic_and(&crdp
->flags
, ~URCU_CALL_RCU_PAUSED
);
353 cmm_smp_mb__after_uatomic_and();
354 rcu_register_thread();
357 cds_wfcq_init(&cbs_tmp_head
, &cbs_tmp_tail
);
358 splice_ret
= __cds_wfcq_splice_blocking(&cbs_tmp_head
,
359 &cbs_tmp_tail
, &crdp
->cbs_head
, &crdp
->cbs_tail
);
360 assert(splice_ret
!= CDS_WFCQ_RET_WOULDBLOCK
);
361 assert(splice_ret
!= CDS_WFCQ_RET_DEST_NON_EMPTY
);
362 if (splice_ret
!= CDS_WFCQ_RET_SRC_EMPTY
) {
365 __cds_wfcq_for_each_blocking_safe(&cbs_tmp_head
,
366 &cbs_tmp_tail
, cbs
, cbs_tmp_n
) {
367 struct rcu_head
*rhp
;
369 rhp
= caa_container_of(cbs
,
370 struct rcu_head
, next
);
374 uatomic_sub(&crdp
->qlen
, cbcount
);
376 if (uatomic_read(&crdp
->flags
) & URCU_CALL_RCU_STOP
)
378 rcu_thread_offline();
380 if (cds_wfcq_empty(&crdp
->cbs_head
,
383 (void) poll(NULL
, 0, 10);
384 uatomic_dec(&crdp
->futex
);
386 * Decrement futex before reading
391 (void) poll(NULL
, 0, 10);
394 (void) poll(NULL
, 0, 10);
400 * Read call_rcu list before write futex.
403 uatomic_set(&crdp
->futex
, 0);
405 uatomic_or(&crdp
->flags
, URCU_CALL_RCU_STOPPED
);
406 rcu_unregister_thread();
411 * Create both a call_rcu thread and the corresponding call_rcu_data
412 * structure, linking the structure in as specified. Caller must hold
416 static void call_rcu_data_init(struct call_rcu_data
**crdpp
,
420 struct call_rcu_data
*crdp
;
423 crdp
= malloc(sizeof(*crdp
));
426 memset(crdp
, '\0', sizeof(*crdp
));
427 cds_wfcq_init(&crdp
->cbs_head
, &crdp
->cbs_tail
);
431 cds_list_add(&crdp
->list
, &call_rcu_data_list
);
432 crdp
->cpu_affinity
= cpu_affinity
;
434 cmm_smp_mb(); /* Structure initialized before pointer is planted. */
436 ret
= pthread_create(&crdp
->tid
, NULL
, call_rcu_thread
, crdp
);
442 * Return a pointer to the call_rcu_data structure for the specified
443 * CPU, returning NULL if there is none. We cannot automatically
444 * created it because the platform we are running on might not define
445 * urcu_sched_getcpu().
447 * The call to this function and use of the returned call_rcu_data
448 * should be protected by RCU read-side lock.
451 struct call_rcu_data
*get_cpu_call_rcu_data(int cpu
)
453 static int warned
= 0;
454 struct call_rcu_data
**pcpu_crdp
;
456 pcpu_crdp
= rcu_dereference(per_cpu_call_rcu_data
);
457 if (pcpu_crdp
== NULL
)
459 if (!warned
&& maxcpus
> 0 && (cpu
< 0 || maxcpus
<= cpu
)) {
460 fprintf(stderr
, "[error] liburcu: get CPU # out of range\n");
463 if (cpu
< 0 || maxcpus
<= cpu
)
465 return rcu_dereference(pcpu_crdp
[cpu
]);
469 * Return the tid corresponding to the call_rcu thread whose
470 * call_rcu_data structure is specified.
473 pthread_t
get_call_rcu_thread(struct call_rcu_data
*crdp
)
479 * Create a call_rcu_data structure (with thread) and return a pointer.
482 static struct call_rcu_data
*__create_call_rcu_data(unsigned long flags
,
485 struct call_rcu_data
*crdp
;
487 call_rcu_data_init(&crdp
, flags
, cpu_affinity
);
491 struct call_rcu_data
*create_call_rcu_data(unsigned long flags
,
494 struct call_rcu_data
*crdp
;
496 call_rcu_lock(&call_rcu_mutex
);
497 crdp
= __create_call_rcu_data(flags
, cpu_affinity
);
498 call_rcu_unlock(&call_rcu_mutex
);
503 * Set the specified CPU to use the specified call_rcu_data structure.
505 * Use NULL to remove a CPU's call_rcu_data structure, but it is
506 * the caller's responsibility to dispose of the removed structure.
507 * Use get_cpu_call_rcu_data() to obtain a pointer to the old structure
508 * (prior to NULLing it out, of course).
510 * The caller must wait for a grace-period to pass between return from
511 * set_cpu_call_rcu_data() and call to call_rcu_data_free() passing the
512 * previous call rcu data as argument.
515 int set_cpu_call_rcu_data(int cpu
, struct call_rcu_data
*crdp
)
517 static int warned
= 0;
519 call_rcu_lock(&call_rcu_mutex
);
520 alloc_cpu_call_rcu_data();
521 if (cpu
< 0 || maxcpus
<= cpu
) {
523 fprintf(stderr
, "[error] liburcu: set CPU # out of range\n");
526 call_rcu_unlock(&call_rcu_mutex
);
531 if (per_cpu_call_rcu_data
== NULL
) {
532 call_rcu_unlock(&call_rcu_mutex
);
537 if (per_cpu_call_rcu_data
[cpu
] != NULL
&& crdp
!= NULL
) {
538 call_rcu_unlock(&call_rcu_mutex
);
543 rcu_set_pointer(&per_cpu_call_rcu_data
[cpu
], crdp
);
544 call_rcu_unlock(&call_rcu_mutex
);
549 * Return a pointer to the default call_rcu_data structure, creating
550 * one if need be. Because we never free call_rcu_data structures,
551 * we don't need to be in an RCU read-side critical section.
554 struct call_rcu_data
*get_default_call_rcu_data(void)
556 if (default_call_rcu_data
!= NULL
)
557 return rcu_dereference(default_call_rcu_data
);
558 call_rcu_lock(&call_rcu_mutex
);
559 if (default_call_rcu_data
!= NULL
) {
560 call_rcu_unlock(&call_rcu_mutex
);
561 return default_call_rcu_data
;
563 call_rcu_data_init(&default_call_rcu_data
, 0, -1);
564 call_rcu_unlock(&call_rcu_mutex
);
565 return default_call_rcu_data
;
569 * Return the call_rcu_data structure that applies to the currently
570 * running thread. Any call_rcu_data structure assigned specifically
571 * to this thread has first priority, followed by any call_rcu_data
572 * structure assigned to the CPU on which the thread is running,
573 * followed by the default call_rcu_data structure. If there is not
574 * yet a default call_rcu_data structure, one will be created.
576 * Calls to this function and use of the returned call_rcu_data should
577 * be protected by RCU read-side lock.
579 struct call_rcu_data
*get_call_rcu_data(void)
581 struct call_rcu_data
*crd
;
583 if (URCU_TLS(thread_call_rcu_data
) != NULL
)
584 return URCU_TLS(thread_call_rcu_data
);
587 crd
= get_cpu_call_rcu_data(urcu_sched_getcpu());
592 return get_default_call_rcu_data();
596 * Return a pointer to this task's call_rcu_data if there is one.
599 struct call_rcu_data
*get_thread_call_rcu_data(void)
601 return URCU_TLS(thread_call_rcu_data
);
605 * Set this task's call_rcu_data structure as specified, regardless
606 * of whether or not this task already had one. (This allows switching
607 * to and from real-time call_rcu threads, for example.)
609 * Use NULL to remove a thread's call_rcu_data structure, but it is
610 * the caller's responsibility to dispose of the removed structure.
611 * Use get_thread_call_rcu_data() to obtain a pointer to the old structure
612 * (prior to NULLing it out, of course).
615 void set_thread_call_rcu_data(struct call_rcu_data
*crdp
)
617 URCU_TLS(thread_call_rcu_data
) = crdp
;
621 * Create a separate call_rcu thread for each CPU. This does not
622 * replace a pre-existing call_rcu thread -- use the set_cpu_call_rcu_data()
623 * function if you want that behavior. Should be paired with
624 * free_all_cpu_call_rcu_data() to teardown these call_rcu worker
628 int create_all_cpu_call_rcu_data(unsigned long flags
)
631 struct call_rcu_data
*crdp
;
634 call_rcu_lock(&call_rcu_mutex
);
635 alloc_cpu_call_rcu_data();
636 call_rcu_unlock(&call_rcu_mutex
);
641 if (per_cpu_call_rcu_data
== NULL
) {
645 for (i
= 0; i
< maxcpus
; i
++) {
646 call_rcu_lock(&call_rcu_mutex
);
647 if (get_cpu_call_rcu_data(i
)) {
648 call_rcu_unlock(&call_rcu_mutex
);
651 crdp
= __create_call_rcu_data(flags
, i
);
653 call_rcu_unlock(&call_rcu_mutex
);
657 call_rcu_unlock(&call_rcu_mutex
);
658 if ((ret
= set_cpu_call_rcu_data(i
, crdp
)) != 0) {
659 call_rcu_data_free(crdp
);
661 /* it has been created by other thread */
672 * Wake up the call_rcu thread corresponding to the specified
673 * call_rcu_data structure.
675 static void wake_call_rcu_thread(struct call_rcu_data
*crdp
)
677 if (!(_CMM_LOAD_SHARED(crdp
->flags
) & URCU_CALL_RCU_RT
))
678 call_rcu_wake_up(crdp
);
681 static void _call_rcu(struct rcu_head
*head
,
682 void (*func
)(struct rcu_head
*head
),
683 struct call_rcu_data
*crdp
)
685 cds_wfcq_node_init(&head
->next
);
687 cds_wfcq_enqueue(&crdp
->cbs_head
, &crdp
->cbs_tail
, &head
->next
);
688 uatomic_inc(&crdp
->qlen
);
689 wake_call_rcu_thread(crdp
);
693 * Schedule a function to be invoked after a following grace period.
694 * This is the only function that must be called -- the others are
695 * only present to allow applications to tune their use of RCU for
696 * maximum performance.
698 * Note that unless a call_rcu thread has not already been created,
699 * the first invocation of call_rcu() will create one. So, if you
700 * need the first invocation of call_rcu() to be fast, make sure
701 * to create a call_rcu thread first. One way to accomplish this is
702 * "get_call_rcu_data();", and another is create_all_cpu_call_rcu_data().
704 * call_rcu must be called by registered RCU read-side threads.
706 void call_rcu(struct rcu_head
*head
,
707 void (*func
)(struct rcu_head
*head
))
709 struct call_rcu_data
*crdp
;
711 /* Holding rcu read-side lock across use of per-cpu crdp */
713 crdp
= get_call_rcu_data();
714 _call_rcu(head
, func
, crdp
);
719 * Free up the specified call_rcu_data structure, terminating the
720 * associated call_rcu thread. The caller must have previously
721 * removed the call_rcu_data structure from per-thread or per-CPU
722 * usage. For example, set_cpu_call_rcu_data(cpu, NULL) for per-CPU
723 * call_rcu_data structures or set_thread_call_rcu_data(NULL) for
724 * per-thread call_rcu_data structures.
726 * We silently refuse to free up the default call_rcu_data structure
727 * because that is where we put any leftover callbacks. Note that
728 * the possibility of self-spawning callbacks makes it impossible
729 * to execute all the callbacks in finite time without putting any
730 * newly spawned callbacks somewhere else. The "somewhere else" of
731 * last resort is the default call_rcu_data structure.
733 * We also silently refuse to free NULL pointers. This simplifies
736 * The caller must wait for a grace-period to pass between return from
737 * set_cpu_call_rcu_data() and call to call_rcu_data_free() passing the
738 * previous call rcu data as argument.
740 * Note: introducing __cds_wfcq_splice_blocking() in this function fixed
741 * a list corruption bug in the 0.7.x series. The equivalent fix
742 * appeared in 0.6.8 for the stable-0.6 branch.
744 void call_rcu_data_free(struct call_rcu_data
*crdp
)
746 if (crdp
== NULL
|| crdp
== default_call_rcu_data
) {
749 if ((uatomic_read(&crdp
->flags
) & URCU_CALL_RCU_STOPPED
) == 0) {
750 uatomic_or(&crdp
->flags
, URCU_CALL_RCU_STOP
);
751 wake_call_rcu_thread(crdp
);
752 while ((uatomic_read(&crdp
->flags
) & URCU_CALL_RCU_STOPPED
) == 0)
753 (void) poll(NULL
, 0, 1);
755 if (!cds_wfcq_empty(&crdp
->cbs_head
, &crdp
->cbs_tail
)) {
756 /* Create default call rcu data if need be */
757 (void) get_default_call_rcu_data();
758 __cds_wfcq_splice_blocking(&default_call_rcu_data
->cbs_head
,
759 &default_call_rcu_data
->cbs_tail
,
760 &crdp
->cbs_head
, &crdp
->cbs_tail
);
761 uatomic_add(&default_call_rcu_data
->qlen
,
762 uatomic_read(&crdp
->qlen
));
763 wake_call_rcu_thread(default_call_rcu_data
);
766 call_rcu_lock(&call_rcu_mutex
);
767 cds_list_del(&crdp
->list
);
768 call_rcu_unlock(&call_rcu_mutex
);
774 * Clean up all the per-CPU call_rcu threads.
776 void free_all_cpu_call_rcu_data(void)
779 struct call_rcu_data
**crdp
;
780 static int warned
= 0;
785 crdp
= malloc(sizeof(*crdp
) * maxcpus
);
788 fprintf(stderr
, "[error] liburcu: unable to allocate per-CPU pointer array\n");
794 for (cpu
= 0; cpu
< maxcpus
; cpu
++) {
795 crdp
[cpu
] = get_cpu_call_rcu_data(cpu
);
796 if (crdp
[cpu
] == NULL
)
798 set_cpu_call_rcu_data(cpu
, NULL
);
801 * Wait for call_rcu sites acting as RCU readers of the
802 * call_rcu_data to become quiescent.
805 for (cpu
= 0; cpu
< maxcpus
; cpu
++) {
806 if (crdp
[cpu
] == NULL
)
808 call_rcu_data_free(crdp
[cpu
]);
814 void free_completion(struct urcu_ref
*ref
)
816 struct call_rcu_completion
*completion
;
818 completion
= caa_container_of(ref
, struct call_rcu_completion
, ref
);
823 void _rcu_barrier_complete(struct rcu_head
*head
)
825 struct call_rcu_completion_work
*work
;
826 struct call_rcu_completion
*completion
;
828 work
= caa_container_of(head
, struct call_rcu_completion_work
, head
);
829 completion
= work
->completion
;
830 if (!uatomic_sub_return(&completion
->barrier_count
, 1))
831 call_rcu_completion_wake_up(completion
);
832 urcu_ref_put(&completion
->ref
, free_completion
);
837 * Wait for all in-flight call_rcu callbacks to complete execution.
839 void rcu_barrier(void)
841 struct call_rcu_data
*crdp
;
842 struct call_rcu_completion
*completion
;
846 /* Put in offline state in QSBR. */
847 was_online
= _rcu_read_ongoing();
849 rcu_thread_offline();
851 * Calling a rcu_barrier() within a RCU read-side critical
852 * section is an error.
854 if (_rcu_read_ongoing()) {
855 static int warned
= 0;
858 fprintf(stderr
, "[error] liburcu: rcu_barrier() called from within RCU read-side critical section.\n");
864 completion
= calloc(sizeof(*completion
), 1);
868 call_rcu_lock(&call_rcu_mutex
);
869 cds_list_for_each_entry(crdp
, &call_rcu_data_list
, list
)
872 /* Referenced by rcu_barrier() and each call_rcu thread. */
873 urcu_ref_set(&completion
->ref
, count
+ 1);
874 completion
->barrier_count
= count
;
876 cds_list_for_each_entry(crdp
, &call_rcu_data_list
, list
) {
877 struct call_rcu_completion_work
*work
;
879 work
= calloc(sizeof(*work
), 1);
882 work
->completion
= completion
;
883 _call_rcu(&work
->head
, _rcu_barrier_complete
, crdp
);
885 call_rcu_unlock(&call_rcu_mutex
);
889 uatomic_dec(&completion
->futex
);
890 /* Decrement futex before reading barrier_count */
892 if (!uatomic_read(&completion
->barrier_count
))
894 call_rcu_completion_wait(completion
);
897 urcu_ref_put(&completion
->ref
, free_completion
);
905 * Acquire the call_rcu_mutex in order to ensure that the child sees
906 * all of the call_rcu() data structures in a consistent state. Ensure
907 * that all call_rcu threads are in a quiescent state across fork.
908 * Suitable for pthread_atfork() and friends.
910 void call_rcu_before_fork(void)
912 struct call_rcu_data
*crdp
;
913 struct urcu_atfork
*atfork
;
915 call_rcu_lock(&call_rcu_mutex
);
917 atfork
= registered_rculfhash_atfork
;
919 atfork
->before_fork(atfork
->priv
);
921 cds_list_for_each_entry(crdp
, &call_rcu_data_list
, list
) {
922 uatomic_or(&crdp
->flags
, URCU_CALL_RCU_PAUSE
);
923 cmm_smp_mb__after_uatomic_or();
924 wake_call_rcu_thread(crdp
);
926 cds_list_for_each_entry(crdp
, &call_rcu_data_list
, list
) {
927 while ((uatomic_read(&crdp
->flags
) & URCU_CALL_RCU_PAUSED
) == 0)
928 (void) poll(NULL
, 0, 1);
933 * Clean up call_rcu data structures in the parent of a successful fork()
934 * that is not followed by exec() in the child. Suitable for
935 * pthread_atfork() and friends.
937 void call_rcu_after_fork_parent(void)
939 struct call_rcu_data
*crdp
;
940 struct urcu_atfork
*atfork
;
942 cds_list_for_each_entry(crdp
, &call_rcu_data_list
, list
)
943 uatomic_and(&crdp
->flags
, ~URCU_CALL_RCU_PAUSE
);
944 cds_list_for_each_entry(crdp
, &call_rcu_data_list
, list
) {
945 while ((uatomic_read(&crdp
->flags
) & URCU_CALL_RCU_PAUSED
) != 0)
946 (void) poll(NULL
, 0, 1);
948 atfork
= registered_rculfhash_atfork
;
950 atfork
->after_fork_parent(atfork
->priv
);
951 call_rcu_unlock(&call_rcu_mutex
);
955 * Clean up call_rcu data structures in the child of a successful fork()
956 * that is not followed by exec(). Suitable for pthread_atfork() and
959 void call_rcu_after_fork_child(void)
961 struct call_rcu_data
*crdp
, *next
;
962 struct urcu_atfork
*atfork
;
964 /* Release the mutex. */
965 call_rcu_unlock(&call_rcu_mutex
);
967 atfork
= registered_rculfhash_atfork
;
969 atfork
->after_fork_child(atfork
->priv
);
971 /* Do nothing when call_rcu() has not been used */
972 if (cds_list_empty(&call_rcu_data_list
))
976 * Allocate a new default call_rcu_data structure in order
977 * to get a working call_rcu thread to go with it.
979 default_call_rcu_data
= NULL
;
980 (void)get_default_call_rcu_data();
982 /* Cleanup call_rcu_data pointers before use */
984 free(per_cpu_call_rcu_data
);
985 rcu_set_pointer(&per_cpu_call_rcu_data
, NULL
);
986 URCU_TLS(thread_call_rcu_data
) = NULL
;
989 * Dispose of all of the rest of the call_rcu_data structures.
990 * Leftover call_rcu callbacks will be merged into the new
991 * default call_rcu thread queue.
993 cds_list_for_each_entry_safe(crdp
, next
, &call_rcu_data_list
, list
) {
994 if (crdp
== default_call_rcu_data
)
996 uatomic_set(&crdp
->flags
, URCU_CALL_RCU_STOPPED
);
997 call_rcu_data_free(crdp
);
1001 void urcu_register_rculfhash_atfork(struct urcu_atfork
*atfork
)
1003 call_rcu_lock(&call_rcu_mutex
);
1004 if (registered_rculfhash_atfork_refcount
++)
1006 registered_rculfhash_atfork
= atfork
;
1008 call_rcu_unlock(&call_rcu_mutex
);
1011 void urcu_unregister_rculfhash_atfork(struct urcu_atfork
*atfork
)
1013 call_rcu_lock(&call_rcu_mutex
);
1014 if (--registered_rculfhash_atfork_refcount
)
1016 registered_rculfhash_atfork
= NULL
;
1018 call_rcu_unlock(&call_rcu_mutex
);