call_rcu: register work threads as rcu readers
[urcu.git] / urcu-call-rcu-impl.h
CommitLineData
b57aee66
PM
1/*
2 * urcu-call-rcu.c
3 *
4 * Userspace RCU library - batch memory reclamation with kernel API
5 *
6 * Copyright (c) 2010 Paul E. McKenney <paulmck@linux.vnet.ibm.com>
7 *
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.
12 *
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.
17 *
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
21 */
22
c1d2c60b 23#define _GNU_SOURCE
b57aee66
PM
24#include <stdio.h>
25#include <pthread.h>
26#include <signal.h>
27#include <assert.h>
28#include <stdlib.h>
6d841bc2 29#include <stdint.h>
b57aee66
PM
30#include <string.h>
31#include <errno.h>
32#include <poll.h>
33#include <sys/time.h>
b57aee66 34#include <unistd.h>
c1d2c60b 35#include <sched.h>
b57aee66
PM
36
37#include "config.h"
38#include "urcu/wfqueue.h"
39#include "urcu-call-rcu.h"
40#include "urcu-pointer.h"
3c24913f 41#include "urcu/list.h"
41849996 42#include "urcu/futex.h"
b57aee66
PM
43
44/* Data structure that identifies a call_rcu thread. */
45
46struct call_rcu_data {
47 struct cds_wfq_queue cbs;
48 unsigned long flags;
6d841bc2 49 int32_t futex;
73987721 50 unsigned long qlen; /* maintained for debugging. */
b57aee66 51 pthread_t tid;
c1d2c60b 52 int cpu_affinity;
3c24913f 53 struct cds_list_head list;
b57aee66
PM
54} __attribute__((aligned(CAA_CACHE_LINE_SIZE)));
55
3c24913f
PM
56/*
57 * List of all call_rcu_data structures to keep valgrind happy.
58 * Protected by call_rcu_mutex.
59 */
60
61CDS_LIST_HEAD(call_rcu_data_list);
62
b57aee66
PM
63/* Link a thread using call_rcu() to its call_rcu thread. */
64
65static __thread struct call_rcu_data *thread_call_rcu_data;
66
67/* Guard call_rcu thread creation. */
68
69static pthread_mutex_t call_rcu_mutex = PTHREAD_MUTEX_INITIALIZER;
70
71/* If a given thread does not have its own call_rcu thread, this is default. */
72
73static struct call_rcu_data *default_call_rcu_data;
74
b57aee66
PM
75/*
76 * If the sched_getcpu() and sysconf(_SC_NPROCESSORS_CONF) calls are
77 * available, then we can have call_rcu threads assigned to individual
78 * CPUs rather than only to specific threads.
79 */
80
81#if defined(HAVE_SCHED_GETCPU) && defined(HAVE_SYSCONF)
82
83/*
84 * Pointer to array of pointers to per-CPU call_rcu_data structures
85 * and # CPUs.
86 */
87
88static struct call_rcu_data **per_cpu_call_rcu_data;
89static long maxcpus;
90
91/* Allocate the array if it has not already been allocated. */
92
93static void alloc_cpu_call_rcu_data(void)
94{
95 struct call_rcu_data **p;
96 static int warned = 0;
97
98 if (maxcpus != 0)
99 return;
100 maxcpus = sysconf(_SC_NPROCESSORS_CONF);
101 if (maxcpus <= 0) {
102 return;
103 }
104 p = malloc(maxcpus * sizeof(*per_cpu_call_rcu_data));
105 if (p != NULL) {
106 memset(p, '\0', maxcpus * sizeof(*per_cpu_call_rcu_data));
107 per_cpu_call_rcu_data = p;
108 } else {
109 if (!warned) {
110 fprintf(stderr, "[error] liburcu: unable to allocate per-CPU pointer array\n");
111 }
112 warned = 1;
113 }
114}
115
116#else /* #if defined(HAVE_SCHED_GETCPU) && defined(HAVE_SYSCONF) */
117
f9437098
MD
118/*
119 * per_cpu_call_rcu_data should be constant, but some functions below, used both
120 * for cases where cpu number is available and not available, assume it it not
121 * constant.
122 */
123static struct call_rcu_data **per_cpu_call_rcu_data = NULL;
b57aee66
PM
124static const long maxcpus = -1;
125
126static void alloc_cpu_call_rcu_data(void)
127{
128}
129
130static int sched_getcpu(void)
131{
132 return -1;
133}
134
135#endif /* #else #if defined(HAVE_SCHED_GETCPU) && defined(HAVE_SYSCONF) */
136
137/* Acquire the specified pthread mutex. */
138
139static void call_rcu_lock(pthread_mutex_t *pmp)
140{
141 if (pthread_mutex_lock(pmp) != 0) {
142 perror("pthread_mutex_lock");
143 exit(-1);
144 }
145}
146
147/* Release the specified pthread mutex. */
148
149static void call_rcu_unlock(pthread_mutex_t *pmp)
150{
151 if (pthread_mutex_unlock(pmp) != 0) {
152 perror("pthread_mutex_unlock");
153 exit(-1);
154 }
155}
156
c1d2c60b
MD
157#if HAVE_SCHED_SETAFFINITY
158static
159int set_thread_cpu_affinity(struct call_rcu_data *crdp)
160{
161 cpu_set_t mask;
162
163 if (crdp->cpu_affinity < 0)
164 return 0;
165
166 CPU_ZERO(&mask);
167 CPU_SET(crdp->cpu_affinity, &mask);
168#if SCHED_SETAFFINITY_ARGS == 2
169 return sched_setaffinity(0, &mask);
170#else
171 return sched_setaffinity(0, sizeof(mask), &mask);
172#endif
173}
174#else
175static
176int set_thread_cpu_affinity(struct call_rcu_data *crdp)
177{
178 return 0;
179}
180#endif
181
03fe58b3
MD
182static void call_rcu_wait(struct call_rcu_data *crdp)
183{
184 /* Read call_rcu list before read futex */
185 cmm_smp_mb();
186 if (uatomic_read(&crdp->futex) == -1)
187 futex_async(&crdp->futex, FUTEX_WAIT, -1,
188 NULL, NULL, 0);
189}
190
191static void call_rcu_wake_up(struct call_rcu_data *crdp)
192{
193 /* Write to call_rcu list before reading/writing futex */
194 cmm_smp_mb();
195 if (unlikely(uatomic_read(&crdp->futex) == -1)) {
196 uatomic_set(&crdp->futex, 0);
197 futex_async(&crdp->futex, FUTEX_WAKE, 1,
198 NULL, NULL, 0);
199 }
200}
201
b57aee66
PM
202/* This is the code run by each call_rcu thread. */
203
204static void *call_rcu_thread(void *arg)
205{
206 unsigned long cbcount;
207 struct cds_wfq_node *cbs;
208 struct cds_wfq_node **cbs_tail;
209 struct call_rcu_data *crdp = (struct call_rcu_data *)arg;
210 struct rcu_head *rhp;
2870aa1e 211 int rt = !!(uatomic_read(&crdp->flags) & URCU_CALL_RCU_RT);
b57aee66 212
c1d2c60b
MD
213 if (set_thread_cpu_affinity(crdp) != 0) {
214 perror("pthread_setaffinity_np");
215 exit(-1);
216 }
217
765f3ead
MD
218 /*
219 * If callbacks take a read-side lock, we need to be registered.
220 */
221 rcu_register_thread();
222
b57aee66 223 thread_call_rcu_data = crdp;
bc94ca9b
MD
224 if (!rt) {
225 uatomic_dec(&crdp->futex);
226 /* Decrement futex before reading call_rcu list */
227 cmm_smp_mb();
228 }
b57aee66
PM
229 for (;;) {
230 if (&crdp->cbs.head != _CMM_LOAD_SHARED(crdp->cbs.tail)) {
231 while ((cbs = _CMM_LOAD_SHARED(crdp->cbs.head)) == NULL)
232 poll(NULL, 0, 1);
233 _CMM_STORE_SHARED(crdp->cbs.head, NULL);
234 cbs_tail = (struct cds_wfq_node **)
235 uatomic_xchg(&crdp->cbs.tail, &crdp->cbs.head);
236 synchronize_rcu();
237 cbcount = 0;
238 do {
239 while (cbs->next == NULL &&
240 &cbs->next != cbs_tail)
241 poll(NULL, 0, 1);
242 if (cbs == &crdp->cbs.dummy) {
243 cbs = cbs->next;
244 continue;
245 }
246 rhp = (struct rcu_head *)cbs;
247 cbs = cbs->next;
248 rhp->func(rhp);
249 cbcount++;
250 } while (cbs != NULL);
251 uatomic_sub(&crdp->qlen, cbcount);
252 }
bc94ca9b
MD
253 if (uatomic_read(&crdp->flags) & URCU_CALL_RCU_STOP)
254 break;
765f3ead 255 rcu_thread_offline();
bc94ca9b
MD
256 if (!rt) {
257 if (&crdp->cbs.head
258 == _CMM_LOAD_SHARED(crdp->cbs.tail)) {
259 call_rcu_wait(crdp);
260 poll(NULL, 0, 10);
261 uatomic_dec(&crdp->futex);
c768e45e 262 /*
bc94ca9b
MD
263 * Decrement futex before reading
264 * call_rcu list.
c768e45e
MD
265 */
266 cmm_smp_mb();
ccbac24d
MD
267 } else {
268 poll(NULL, 0, 10);
c768e45e 269 }
bc94ca9b
MD
270 } else {
271 poll(NULL, 0, 10);
b57aee66 272 }
765f3ead 273 rcu_thread_online();
bc94ca9b
MD
274 }
275 if (!rt) {
276 /*
277 * Read call_rcu list before write futex.
278 */
279 cmm_smp_mb();
280 uatomic_set(&crdp->futex, 0);
b57aee66 281 }
2870aa1e 282 uatomic_or(&crdp->flags, URCU_CALL_RCU_STOPPED);
765f3ead 283 rcu_unregister_thread();
7106ddf8 284 return NULL;
b57aee66
PM
285}
286
287/*
288 * Create both a call_rcu thread and the corresponding call_rcu_data
3c24913f
PM
289 * structure, linking the structure in as specified. Caller must hold
290 * call_rcu_mutex.
b57aee66
PM
291 */
292
3c24913f 293static void call_rcu_data_init(struct call_rcu_data **crdpp,
c1d2c60b
MD
294 unsigned long flags,
295 int cpu_affinity)
b57aee66
PM
296{
297 struct call_rcu_data *crdp;
298
299 crdp = malloc(sizeof(*crdp));
300 if (crdp == NULL) {
301 fprintf(stderr, "Out of memory.\n");
302 exit(-1);
303 }
304 memset(crdp, '\0', sizeof(*crdp));
305 cds_wfq_init(&crdp->cbs);
306 crdp->qlen = 0;
263e3cf9
MD
307 crdp->futex = 0;
308 crdp->flags = flags;
3c24913f 309 cds_list_add(&crdp->list, &call_rcu_data_list);
c1d2c60b 310 crdp->cpu_affinity = cpu_affinity;
b57aee66
PM
311 cmm_smp_mb(); /* Structure initialized before pointer is planted. */
312 *crdpp = crdp;
313 if (pthread_create(&crdp->tid, NULL, call_rcu_thread, crdp) != 0) {
314 perror("pthread_create");
315 exit(-1);
316 }
317}
318
319/*
320 * Return a pointer to the call_rcu_data structure for the specified
321 * CPU, returning NULL if there is none. We cannot automatically
322 * created it because the platform we are running on might not define
323 * sched_getcpu().
324 */
325
326struct call_rcu_data *get_cpu_call_rcu_data(int cpu)
327{
328 static int warned = 0;
329
330 if (per_cpu_call_rcu_data == NULL)
331 return NULL;
332 if (!warned && maxcpus > 0 && (cpu < 0 || maxcpus <= cpu)) {
333 fprintf(stderr, "[error] liburcu: get CPU # out of range\n");
334 warned = 1;
335 }
336 if (cpu < 0 || maxcpus <= cpu)
337 return NULL;
338 return per_cpu_call_rcu_data[cpu];
339}
340
341/*
342 * Return the tid corresponding to the call_rcu thread whose
343 * call_rcu_data structure is specified.
344 */
345
346pthread_t get_call_rcu_thread(struct call_rcu_data *crdp)
347{
348 return crdp->tid;
349}
350
351/*
352 * Create a call_rcu_data structure (with thread) and return a pointer.
353 */
354
c1d2c60b
MD
355static struct call_rcu_data *__create_call_rcu_data(unsigned long flags,
356 int cpu_affinity)
b57aee66
PM
357{
358 struct call_rcu_data *crdp;
359
c1d2c60b 360 call_rcu_data_init(&crdp, flags, cpu_affinity);
b57aee66
PM
361 return crdp;
362}
363
c1d2c60b
MD
364struct call_rcu_data *create_call_rcu_data(unsigned long flags,
365 int cpu_affinity)
3c24913f
PM
366{
367 struct call_rcu_data *crdp;
368
369 call_rcu_lock(&call_rcu_mutex);
c1d2c60b 370 crdp = __create_call_rcu_data(flags, cpu_affinity);
3c24913f
PM
371 call_rcu_unlock(&call_rcu_mutex);
372 return crdp;
373}
374
b57aee66
PM
375/*
376 * Set the specified CPU to use the specified call_rcu_data structure.
7106ddf8
PM
377 *
378 * Use NULL to remove a CPU's call_rcu_data structure, but it is
379 * the caller's responsibility to dispose of the removed structure.
380 * Use get_cpu_call_rcu_data() to obtain a pointer to the old structure
381 * (prior to NULLing it out, of course).
b57aee66
PM
382 */
383
384int set_cpu_call_rcu_data(int cpu, struct call_rcu_data *crdp)
385{
386 int warned = 0;
387
388 call_rcu_lock(&call_rcu_mutex);
389 if (cpu < 0 || maxcpus <= cpu) {
390 if (!warned) {
391 fprintf(stderr, "[error] liburcu: set CPU # out of range\n");
392 warned = 1;
393 }
394 call_rcu_unlock(&call_rcu_mutex);
395 errno = EINVAL;
396 return -EINVAL;
397 }
398 alloc_cpu_call_rcu_data();
399 call_rcu_unlock(&call_rcu_mutex);
400 if (per_cpu_call_rcu_data == NULL) {
401 errno = ENOMEM;
402 return -ENOMEM;
403 }
404 per_cpu_call_rcu_data[cpu] = crdp;
405 return 0;
406}
407
408/*
409 * Return a pointer to the default call_rcu_data structure, creating
410 * one if need be. Because we never free call_rcu_data structures,
411 * we don't need to be in an RCU read-side critical section.
412 */
413
414struct call_rcu_data *get_default_call_rcu_data(void)
415{
416 if (default_call_rcu_data != NULL)
417 return rcu_dereference(default_call_rcu_data);
418 call_rcu_lock(&call_rcu_mutex);
419 if (default_call_rcu_data != NULL) {
420 call_rcu_unlock(&call_rcu_mutex);
421 return default_call_rcu_data;
422 }
c1d2c60b 423 call_rcu_data_init(&default_call_rcu_data, 0, -1);
b57aee66
PM
424 call_rcu_unlock(&call_rcu_mutex);
425 return default_call_rcu_data;
426}
427
428/*
429 * Return the call_rcu_data structure that applies to the currently
430 * running thread. Any call_rcu_data structure assigned specifically
431 * to this thread has first priority, followed by any call_rcu_data
432 * structure assigned to the CPU on which the thread is running,
433 * followed by the default call_rcu_data structure. If there is not
434 * yet a default call_rcu_data structure, one will be created.
435 */
436struct call_rcu_data *get_call_rcu_data(void)
437{
438 int curcpu;
439 static int warned = 0;
440
441 if (thread_call_rcu_data != NULL)
442 return thread_call_rcu_data;
443 if (maxcpus <= 0)
444 return get_default_call_rcu_data();
445 curcpu = sched_getcpu();
446 if (!warned && (curcpu < 0 || maxcpus <= curcpu)) {
447 fprintf(stderr, "[error] liburcu: gcrd CPU # out of range\n");
448 warned = 1;
449 }
450 if (curcpu >= 0 && maxcpus > curcpu &&
451 per_cpu_call_rcu_data != NULL &&
452 per_cpu_call_rcu_data[curcpu] != NULL)
453 return per_cpu_call_rcu_data[curcpu];
454 return get_default_call_rcu_data();
455}
456
457/*
458 * Return a pointer to this task's call_rcu_data if there is one.
459 */
460
461struct call_rcu_data *get_thread_call_rcu_data(void)
462{
463 return thread_call_rcu_data;
464}
465
466/*
467 * Set this task's call_rcu_data structure as specified, regardless
468 * of whether or not this task already had one. (This allows switching
469 * to and from real-time call_rcu threads, for example.)
7106ddf8
PM
470 *
471 * Use NULL to remove a thread's call_rcu_data structure, but it is
472 * the caller's responsibility to dispose of the removed structure.
473 * Use get_thread_call_rcu_data() to obtain a pointer to the old structure
474 * (prior to NULLing it out, of course).
b57aee66
PM
475 */
476
477void set_thread_call_rcu_data(struct call_rcu_data *crdp)
478{
479 thread_call_rcu_data = crdp;
480}
481
482/*
483 * Create a separate call_rcu thread for each CPU. This does not
484 * replace a pre-existing call_rcu thread -- use the set_cpu_call_rcu_data()
485 * function if you want that behavior.
486 */
487
488int create_all_cpu_call_rcu_data(unsigned long flags)
489{
490 int i;
491 struct call_rcu_data *crdp;
492 int ret;
493
494 call_rcu_lock(&call_rcu_mutex);
495 alloc_cpu_call_rcu_data();
496 call_rcu_unlock(&call_rcu_mutex);
497 if (maxcpus <= 0) {
498 errno = EINVAL;
499 return -EINVAL;
500 }
501 if (per_cpu_call_rcu_data == NULL) {
502 errno = ENOMEM;
503 return -ENOMEM;
504 }
505 for (i = 0; i < maxcpus; i++) {
506 call_rcu_lock(&call_rcu_mutex);
507 if (get_cpu_call_rcu_data(i)) {
508 call_rcu_unlock(&call_rcu_mutex);
509 continue;
510 }
c1d2c60b 511 crdp = __create_call_rcu_data(flags, i);
b57aee66
PM
512 if (crdp == NULL) {
513 call_rcu_unlock(&call_rcu_mutex);
514 errno = ENOMEM;
515 return -ENOMEM;
516 }
517 call_rcu_unlock(&call_rcu_mutex);
518 if ((ret = set_cpu_call_rcu_data(i, crdp)) != 0) {
519 /* FIXME: Leaks crdp for now. */
520 return ret; /* Can happen on race. */
521 }
522 }
523 return 0;
524}
525
7106ddf8
PM
526/*
527 * Wake up the call_rcu thread corresponding to the specified
528 * call_rcu_data structure.
529 */
530static void wake_call_rcu_thread(struct call_rcu_data *crdp)
531{
263e3cf9
MD
532 if (!(_CMM_LOAD_SHARED(crdp->flags) & URCU_CALL_RCU_RT))
533 call_rcu_wake_up(crdp);
7106ddf8
PM
534}
535
b57aee66
PM
536/*
537 * Schedule a function to be invoked after a following grace period.
538 * This is the only function that must be called -- the others are
539 * only present to allow applications to tune their use of RCU for
540 * maximum performance.
541 *
542 * Note that unless a call_rcu thread has not already been created,
543 * the first invocation of call_rcu() will create one. So, if you
544 * need the first invocation of call_rcu() to be fast, make sure
545 * to create a call_rcu thread first. One way to accomplish this is
546 * "get_call_rcu_data();", and another is create_all_cpu_call_rcu_data().
547 */
548
549void call_rcu(struct rcu_head *head,
550 void (*func)(struct rcu_head *head))
551{
552 struct call_rcu_data *crdp;
553
554 cds_wfq_node_init(&head->next);
555 head->func = func;
556 crdp = get_call_rcu_data();
557 cds_wfq_enqueue(&crdp->cbs, &head->next);
558 uatomic_inc(&crdp->qlen);
7106ddf8
PM
559 wake_call_rcu_thread(crdp);
560}
561
562/*
563 * Free up the specified call_rcu_data structure, terminating the
564 * associated call_rcu thread. The caller must have previously
565 * removed the call_rcu_data structure from per-thread or per-CPU
566 * usage. For example, set_cpu_call_rcu_data(cpu, NULL) for per-CPU
567 * call_rcu_data structures or set_thread_call_rcu_data(NULL) for
568 * per-thread call_rcu_data structures.
569 *
570 * We silently refuse to free up the default call_rcu_data structure
571 * because that is where we put any leftover callbacks. Note that
572 * the possibility of self-spawning callbacks makes it impossible
573 * to execute all the callbacks in finite time without putting any
574 * newly spawned callbacks somewhere else. The "somewhere else" of
575 * last resort is the default call_rcu_data structure.
576 *
577 * We also silently refuse to free NULL pointers. This simplifies
578 * the calling code.
579 */
580void call_rcu_data_free(struct call_rcu_data *crdp)
581{
582 struct cds_wfq_node *cbs;
583 struct cds_wfq_node **cbs_tail;
584 struct cds_wfq_node **cbs_endprev;
585
586 if (crdp == NULL || crdp == default_call_rcu_data) {
587 return;
588 }
2870aa1e
PB
589 if ((uatomic_read(&crdp->flags) & URCU_CALL_RCU_STOPPED) == 0) {
590 uatomic_or(&crdp->flags, URCU_CALL_RCU_STOP);
7106ddf8 591 wake_call_rcu_thread(crdp);
2870aa1e 592 while ((uatomic_read(&crdp->flags) & URCU_CALL_RCU_STOPPED) == 0)
7106ddf8
PM
593 poll(NULL, 0, 1);
594 }
595 if (&crdp->cbs.head != _CMM_LOAD_SHARED(crdp->cbs.tail)) {
596 while ((cbs = _CMM_LOAD_SHARED(crdp->cbs.head)) == NULL)
597 poll(NULL, 0, 1);
598 _CMM_STORE_SHARED(crdp->cbs.head, NULL);
599 cbs_tail = (struct cds_wfq_node **)
600 uatomic_xchg(&crdp->cbs.tail, &crdp->cbs.head);
601 cbs_endprev = (struct cds_wfq_node **)
602 uatomic_xchg(&default_call_rcu_data, cbs_tail);
603 *cbs_endprev = cbs;
604 uatomic_add(&default_call_rcu_data->qlen,
605 uatomic_read(&crdp->qlen));
606 cds_list_del(&crdp->list);
607 free(crdp);
608 }
609}
610
611/*
612 * Clean up all the per-CPU call_rcu threads.
613 */
614void free_all_cpu_call_rcu_data(void)
615{
616 int cpu;
617 struct call_rcu_data *crdp;
618
619 if (maxcpus <= 0)
620 return;
621 for (cpu = 0; cpu < maxcpus; cpu++) {
622 crdp = get_cpu_call_rcu_data(cpu);
623 if (crdp == NULL)
624 continue;
625 set_cpu_call_rcu_data(cpu, NULL);
626 call_rcu_data_free(crdp);
627 }
628}
629
81ad2e19
PM
630/*
631 * Acquire the call_rcu_mutex in order to ensure that the child sees
632 * all of the call_rcu() data structures in a consistent state.
633 * Suitable for pthread_atfork() and friends.
634 */
635void call_rcu_before_fork(void)
636{
637 call_rcu_lock(&call_rcu_mutex);
638}
639
640/*
641 * Clean up call_rcu data structures in the parent of a successful fork()
642 * that is not followed by exec() in the child. Suitable for
643 * pthread_atfork() and friends.
644 */
645void call_rcu_after_fork_parent(void)
646{
647 call_rcu_unlock(&call_rcu_mutex);
648}
649
7106ddf8
PM
650/*
651 * Clean up call_rcu data structures in the child of a successful fork()
81ad2e19
PM
652 * that is not followed by exec(). Suitable for pthread_atfork() and
653 * friends.
7106ddf8
PM
654 */
655void call_rcu_after_fork_child(void)
656{
657 struct call_rcu_data *crdp;
658
81ad2e19
PM
659 /* Release the mutex. */
660 call_rcu_unlock(&call_rcu_mutex);
661
7106ddf8
PM
662 /*
663 * Allocate a new default call_rcu_data structure in order
664 * to get a working call_rcu thread to go with it.
665 */
666 default_call_rcu_data = NULL;
667 (void)get_default_call_rcu_data();
668
669 /* Dispose of all of the rest of the call_rcu_data structures. */
670 while (call_rcu_data_list.next != call_rcu_data_list.prev) {
671 crdp = cds_list_entry(call_rcu_data_list.prev,
672 struct call_rcu_data, list);
673 if (crdp == default_call_rcu_data)
674 crdp = cds_list_entry(crdp->list.prev,
675 struct call_rcu_data, list);
2870aa1e 676 uatomic_set(&crdp->flags, URCU_CALL_RCU_STOPPED);
7106ddf8 677 call_rcu_data_free(crdp);
b57aee66
PM
678 }
679}
This page took 0.048393 seconds and 4 git commands to generate.