Fix: urcu-bp interaction with threads vs constructors/destructors
[userspace-rcu.git] / urcu-bp.c
CommitLineData
fdee2e6d
MD
1/*
2 * urcu-bp.c
3 *
4 * Userspace RCU library, "bulletproof" version.
5 *
6982d6d7 6 * Copyright (c) 2009 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
fdee2e6d
MD
7 * Copyright (c) 2009 Paul E. McKenney, IBM Corporation.
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 *
23 * IBM's contributions to this file may be relicensed under LGPLv2 or later.
24 */
25
0617bf4c 26#define _GNU_SOURCE
71c811bf 27#define _LGPL_SOURCE
fdee2e6d
MD
28#include <stdio.h>
29#include <pthread.h>
30#include <signal.h>
31#include <assert.h>
32#include <stdlib.h>
33#include <string.h>
34#include <errno.h>
35#include <poll.h>
36#include <unistd.h>
37#include <sys/mman.h>
38
71c811bf 39#include "urcu/wfqueue.h"
57760d44 40#include "urcu/map/urcu-bp.h"
af7c2dbe 41#include "urcu/static/urcu-bp.h"
618b2595 42#include "urcu-pointer.h"
bd252a04 43#include "urcu/tls-compat.h"
71c811bf 44
4a6d7378
MD
45#include "urcu-die.h"
46
fdee2e6d 47/* Do not #define _LGPL_SOURCE to ensure we can emit the wrapper symbols */
71c811bf 48#undef _LGPL_SOURCE
fdee2e6d 49#include "urcu-bp.h"
71c811bf 50#define _LGPL_SOURCE
fdee2e6d 51
4c1ae2ea
MD
52#ifndef MAP_ANONYMOUS
53#define MAP_ANONYMOUS MAP_ANON
54#endif
55
c7eaf61c
MD
56#ifdef __linux__
57static
58void *mremap_wrapper(void *old_address, size_t old_size,
59 size_t new_size, int flags)
60{
61 return mremap(old_address, old_size, new_size, flags);
62}
63#else
45a4872f
MD
64
65#define MREMAP_MAYMOVE 1
66#define MREMAP_FIXED 2
67
68/*
89451e1b 69 * mremap wrapper for non-Linux systems not allowing MAYMOVE.
45a4872f
MD
70 * This is not generic.
71*/
c7eaf61c
MD
72static
73void *mremap_wrapper(void *old_address, size_t old_size,
74 size_t new_size, int flags)
45a4872f 75{
89451e1b
MD
76 assert(!(flags & MREMAP_MAYMOVE));
77
78 return MAP_FAILED;
45a4872f
MD
79}
80#endif
81
fdee2e6d
MD
82/* Sleep delay in us */
83#define RCU_SLEEP_DELAY 1000
89451e1b
MD
84#define INIT_NR_THREADS 8
85#define ARENA_INIT_ALLOC \
86 sizeof(struct registry_chunk) \
87 + INIT_NR_THREADS * sizeof(struct rcu_reader)
fdee2e6d 88
b7b6a8f5
PB
89/*
90 * Active attempts to check for reader Q.S. before calling sleep().
91 */
92#define RCU_QS_ACTIVE_ATTEMPTS 100
93
48bf2f76
MD
94static
95int rcu_bp_refcount;
96
e038e286
MD
97static
98void __attribute__((constructor)) rcu_bp_init(void);
99static
02be5561 100void __attribute__((destructor)) rcu_bp_exit(void);
fdee2e6d 101
6abb4bd5 102static pthread_mutex_t rcu_gp_lock = PTHREAD_MUTEX_INITIALIZER;
fdee2e6d 103
e038e286
MD
104static pthread_mutex_t init_lock = PTHREAD_MUTEX_INITIALIZER;
105static int initialized;
106
107static pthread_key_t urcu_bp_key;
108
fdee2e6d
MD
109#ifdef DEBUG_YIELD
110unsigned int yield_active;
1745be1a 111__DEFINE_URCU_TLS_GLOBAL(unsigned int, rand_yield);
fdee2e6d
MD
112#endif
113
114/*
115 * Global grace period counter.
02be5561 116 * Contains the current RCU_GP_CTR_PHASE.
fdee2e6d
MD
117 * Also has a RCU_GP_COUNT of 1, to accelerate the reader fast path.
118 * Written to only by writer with mutex taken. Read by both writer and readers.
119 */
02be5561 120long rcu_gp_ctr = RCU_GP_COUNT;
fdee2e6d
MD
121
122/*
123 * Pointer to registry elements. Written to only by each individual reader. Read
124 * by both the reader and the writers.
125 */
1745be1a 126__DEFINE_URCU_TLS_GLOBAL(struct rcu_reader *, rcu_reader);
fdee2e6d 127
16aa9ee8 128static CDS_LIST_HEAD(registry);
fdee2e6d 129
89451e1b
MD
130struct registry_chunk {
131 size_t data_len; /* data length */
e038e286 132 size_t used; /* amount of data used */
89451e1b
MD
133 struct cds_list_head node; /* chunk_list node */
134 char data[];
135};
136
fdee2e6d 137struct registry_arena {
89451e1b 138 struct cds_list_head chunk_list;
fdee2e6d
MD
139};
140
89451e1b
MD
141static struct registry_arena registry_arena = {
142 .chunk_list = CDS_LIST_HEAD_INIT(registry_arena.chunk_list),
143};
fdee2e6d 144
4cf1675f
MD
145/* Saved fork signal mask, protected by rcu_gp_lock */
146static sigset_t saved_fork_signal_mask;
147
6abb4bd5 148static void mutex_lock(pthread_mutex_t *mutex)
fdee2e6d
MD
149{
150 int ret;
151
152#ifndef DISTRUST_SIGNALS_EXTREME
6abb4bd5 153 ret = pthread_mutex_lock(mutex);
4a6d7378
MD
154 if (ret)
155 urcu_die(ret);
fdee2e6d 156#else /* #ifndef DISTRUST_SIGNALS_EXTREME */
6abb4bd5 157 while ((ret = pthread_mutex_trylock(mutex)) != 0) {
4a6d7378
MD
158 if (ret != EBUSY && ret != EINTR)
159 urcu_die(ret);
fdee2e6d
MD
160 poll(NULL,0,10);
161 }
162#endif /* #else #ifndef DISTRUST_SIGNALS_EXTREME */
163}
164
6abb4bd5 165static void mutex_unlock(pthread_mutex_t *mutex)
fdee2e6d
MD
166{
167 int ret;
168
6abb4bd5 169 ret = pthread_mutex_unlock(mutex);
4a6d7378
MD
170 if (ret)
171 urcu_die(ret);
fdee2e6d
MD
172}
173
2dfb8b5e 174void update_counter_and_wait(void)
fdee2e6d 175{
16aa9ee8 176 CDS_LIST_HEAD(qsreaders);
fdee2e6d 177 int wait_loops = 0;
02be5561 178 struct rcu_reader *index, *tmp;
fdee2e6d 179
32c15e4e 180 /* Switch parity: 0 -> 1, 1 -> 0 */
6cf3827c 181 CMM_STORE_SHARED(rcu_gp_ctr, rcu_gp_ctr ^ RCU_GP_CTR_PHASE);
2dfb8b5e
MD
182
183 /*
184 * Must commit qparity update to memory before waiting for other parity
185 * quiescent state. Failure to do so could result in the writer waiting
186 * forever while new readers are always accessing data (no progress).
6cf3827c 187 * Ensured by CMM_STORE_SHARED and CMM_LOAD_SHARED.
2dfb8b5e
MD
188 */
189
190 /*
5481ddb3 191 * Adding a cmm_smp_mb() which is _not_ formally required, but makes the
2dfb8b5e
MD
192 * model easier to understand. It does not have a big performance impact
193 * anyway, given this is the write-side.
194 */
5481ddb3 195 cmm_smp_mb();
2dfb8b5e 196
fdee2e6d 197 /*
02be5561 198 * Wait for each thread rcu_reader.ctr count to become 0.
fdee2e6d
MD
199 */
200 for (;;) {
201 wait_loops++;
16aa9ee8 202 cds_list_for_each_entry_safe(index, tmp, &registry, node) {
fdee2e6d 203 if (!rcu_old_gp_ongoing(&index->ctr))
16aa9ee8 204 cds_list_move(&index->node, &qsreaders);
fdee2e6d
MD
205 }
206
16aa9ee8 207 if (cds_list_empty(&registry)) {
fdee2e6d
MD
208 break;
209 } else {
210 if (wait_loops == RCU_QS_ACTIVE_ATTEMPTS)
211 usleep(RCU_SLEEP_DELAY);
212 else
06f22bdb 213 caa_cpu_relax();
fdee2e6d
MD
214 }
215 }
216 /* put back the reader list in the registry */
16aa9ee8 217 cds_list_splice(&qsreaders, &registry);
fdee2e6d
MD
218}
219
220void synchronize_rcu(void)
221{
222 sigset_t newmask, oldmask;
223 int ret;
224
264716f7 225 ret = sigfillset(&newmask);
fdee2e6d 226 assert(!ret);
264716f7 227 ret = pthread_sigmask(SIG_BLOCK, &newmask, &oldmask);
fdee2e6d
MD
228 assert(!ret);
229
6abb4bd5 230 mutex_lock(&rcu_gp_lock);
fdee2e6d 231
16aa9ee8 232 if (cds_list_empty(&registry))
2dfb8b5e 233 goto out;
fdee2e6d
MD
234
235 /* All threads should read qparity before accessing data structure
2dfb8b5e 236 * where new ptr points to. */
fdee2e6d 237 /* Write new ptr before changing the qparity */
5481ddb3 238 cmm_smp_mb();
fdee2e6d 239
fdee2e6d
MD
240 /*
241 * Wait for previous parity to be empty of readers.
242 */
2dfb8b5e 243 update_counter_and_wait(); /* 0 -> 1, wait readers in parity 0 */
fdee2e6d
MD
244
245 /*
5481ddb3 246 * Adding a cmm_smp_mb() which is _not_ formally required, but makes the
fdee2e6d
MD
247 * model easier to understand. It does not have a big performance impact
248 * anyway, given this is the write-side.
249 */
5481ddb3 250 cmm_smp_mb();
fdee2e6d 251
fdee2e6d 252 /*
2dfb8b5e 253 * Wait for previous parity to be empty of readers.
fdee2e6d 254 */
2dfb8b5e 255 update_counter_and_wait(); /* 1 -> 0, wait readers in parity 1 */
fdee2e6d
MD
256
257 /*
2dfb8b5e
MD
258 * Finish waiting for reader threads before letting the old ptr being
259 * freed.
fdee2e6d 260 */
5481ddb3 261 cmm_smp_mb();
2dfb8b5e 262out:
6abb4bd5 263 mutex_unlock(&rcu_gp_lock);
fdee2e6d
MD
264 ret = pthread_sigmask(SIG_SETMASK, &oldmask, NULL);
265 assert(!ret);
266}
267
268/*
269 * library wrappers to be used by non-LGPL compatible source code.
270 */
271
272void rcu_read_lock(void)
273{
274 _rcu_read_lock();
275}
276
277void rcu_read_unlock(void)
278{
279 _rcu_read_unlock();
280}
281
282/*
89451e1b
MD
283 * Only grow for now. If empty, allocate a ARENA_INIT_ALLOC sized chunk.
284 * Else, try expanding the last chunk. If this fails, allocate a new
285 * chunk twice as big as the last chunk.
286 * Memory used by chunks _never_ moves. A chunk could theoretically be
287 * freed when all "used" slots are released, but we don't do it at this
288 * point.
fdee2e6d 289 */
89451e1b
MD
290static
291void expand_arena(struct registry_arena *arena)
fdee2e6d 292{
89451e1b
MD
293 struct registry_chunk *new_chunk, *last_chunk;
294 size_t old_chunk_len, new_chunk_len;
295
296 /* No chunk. */
297 if (cds_list_empty(&arena->chunk_list)) {
298 assert(ARENA_INIT_ALLOC >=
299 sizeof(struct registry_chunk)
300 + sizeof(struct rcu_reader));
301 new_chunk_len = ARENA_INIT_ALLOC;
302 new_chunk = mmap(NULL, new_chunk_len,
0bcbf365
MD
303 PROT_READ | PROT_WRITE,
304 MAP_ANONYMOUS | MAP_PRIVATE,
305 -1, 0);
89451e1b
MD
306 if (new_chunk == MAP_FAILED)
307 abort();
308 bzero(new_chunk, new_chunk_len);
309 new_chunk->data_len =
310 new_chunk_len - sizeof(struct registry_chunk);
311 cds_list_add_tail(&new_chunk->node, &arena->chunk_list);
312 return; /* We're done. */
313 }
0bcbf365 314
89451e1b
MD
315 /* Try expanding last chunk. */
316 last_chunk = cds_list_entry(arena->chunk_list.prev,
317 struct registry_chunk, node);
318 old_chunk_len =
319 last_chunk->data_len + sizeof(struct registry_chunk);
320 new_chunk_len = old_chunk_len << 1;
321
322 /* Don't allow memory mapping to move, just expand. */
323 new_chunk = mremap_wrapper(last_chunk, old_chunk_len,
324 new_chunk_len, 0);
325 if (new_chunk != MAP_FAILED) {
326 /* Should not have moved. */
327 assert(new_chunk == last_chunk);
328 bzero((char *) last_chunk + old_chunk_len,
329 new_chunk_len - old_chunk_len);
330 last_chunk->data_len =
331 new_chunk_len - sizeof(struct registry_chunk);
332 return; /* We're done. */
333 }
0617bf4c 334
89451e1b
MD
335 /* Remap did not succeed, we need to add a new chunk. */
336 new_chunk = mmap(NULL, new_chunk_len,
337 PROT_READ | PROT_WRITE,
338 MAP_ANONYMOUS | MAP_PRIVATE,
339 -1, 0);
340 if (new_chunk == MAP_FAILED)
341 abort();
342 bzero(new_chunk, new_chunk_len);
343 new_chunk->data_len =
344 new_chunk_len - sizeof(struct registry_chunk);
345 cds_list_add_tail(&new_chunk->node, &arena->chunk_list);
346}
347
348static
349struct rcu_reader *arena_alloc(struct registry_arena *arena)
350{
351 struct registry_chunk *chunk;
352 struct rcu_reader *rcu_reader_reg;
353 int expand_done = 0; /* Only allow to expand once per alloc */
354 size_t len = sizeof(struct rcu_reader);
fdee2e6d 355
89451e1b
MD
356retry:
357 cds_list_for_each_entry(chunk, &arena->chunk_list, node) {
358 if (chunk->data_len - chunk->used < len)
359 continue;
360 /* Find spot */
361 for (rcu_reader_reg = (struct rcu_reader *) &chunk->data[0];
362 rcu_reader_reg < (struct rcu_reader *) &chunk->data[chunk->data_len];
363 rcu_reader_reg++) {
364 if (!rcu_reader_reg->alloc) {
365 rcu_reader_reg->alloc = 1;
366 chunk->used += len;
367 return rcu_reader_reg;
368 }
369 }
370 }
371
372 if (!expand_done) {
373 expand_arena(arena);
374 expand_done = 1;
375 goto retry;
376 }
377
378 return NULL;
fdee2e6d
MD
379}
380
381/* Called with signals off and mutex locked */
89451e1b
MD
382static
383void add_thread(void)
fdee2e6d 384{
02be5561 385 struct rcu_reader *rcu_reader_reg;
e038e286 386 int ret;
fdee2e6d 387
89451e1b
MD
388 rcu_reader_reg = arena_alloc(&registry_arena);
389 if (!rcu_reader_reg)
390 abort();
e038e286
MD
391 ret = pthread_setspecific(urcu_bp_key, rcu_reader_reg);
392 if (ret)
393 abort();
fdee2e6d
MD
394
395 /* Add to registry */
02be5561
MD
396 rcu_reader_reg->tid = pthread_self();
397 assert(rcu_reader_reg->ctr == 0);
16aa9ee8 398 cds_list_add(&rcu_reader_reg->node, &registry);
89451e1b
MD
399 /*
400 * Reader threads are pointing to the reader registry. This is
401 * why its memory should never be relocated.
402 */
bd252a04 403 URCU_TLS(rcu_reader) = rcu_reader_reg;
fdee2e6d
MD
404}
405
e038e286
MD
406/* Called with mutex locked */
407static
408void cleanup_thread(struct registry_chunk *chunk,
409 struct rcu_reader *rcu_reader_reg)
410{
411 rcu_reader_reg->ctr = 0;
412 cds_list_del(&rcu_reader_reg->node);
413 rcu_reader_reg->tid = 0;
414 rcu_reader_reg->alloc = 0;
415 chunk->used -= sizeof(struct rcu_reader);
416}
417
418static
419struct registry_chunk *find_chunk(struct rcu_reader *rcu_reader_reg)
fdee2e6d 420{
89451e1b 421 struct registry_chunk *chunk;
fdee2e6d 422
89451e1b 423 cds_list_for_each_entry(chunk, &registry_arena.chunk_list, node) {
e038e286
MD
424 if (rcu_reader_reg < (struct rcu_reader *) &chunk->data[0])
425 continue;
426 if (rcu_reader_reg >= (struct rcu_reader *) &chunk->data[chunk->data_len])
427 continue;
428 return chunk;
429 }
430 return NULL;
431}
89451e1b 432
e038e286
MD
433/* Called with signals off and mutex locked */
434static
48bf2f76 435void remove_thread(struct rcu_reader *rcu_reader_reg)
e038e286 436{
e038e286
MD
437 cleanup_thread(find_chunk(rcu_reader_reg), rcu_reader_reg);
438 URCU_TLS(rcu_reader) = NULL;
fdee2e6d
MD
439}
440
441/* Disable signals, take mutex, add to registry */
442void rcu_bp_register(void)
443{
444 sigset_t newmask, oldmask;
445 int ret;
446
264716f7 447 ret = sigfillset(&newmask);
e038e286
MD
448 if (ret)
449 abort();
264716f7 450 ret = pthread_sigmask(SIG_BLOCK, &newmask, &oldmask);
e038e286
MD
451 if (ret)
452 abort();
fdee2e6d
MD
453
454 /*
455 * Check if a signal concurrently registered our thread since
e038e286
MD
456 * the check in rcu_read_lock().
457 */
bd252a04 458 if (URCU_TLS(rcu_reader))
fdee2e6d
MD
459 goto end;
460
e038e286
MD
461 /*
462 * Take care of early registration before urcu_bp constructor.
463 */
464 rcu_bp_init();
465
6abb4bd5 466 mutex_lock(&rcu_gp_lock);
fdee2e6d 467 add_thread();
6abb4bd5 468 mutex_unlock(&rcu_gp_lock);
fdee2e6d
MD
469end:
470 ret = pthread_sigmask(SIG_SETMASK, &oldmask, NULL);
e038e286
MD
471 if (ret)
472 abort();
473}
474
475/* Disable signals, take mutex, remove from registry */
476static
48bf2f76 477void rcu_bp_unregister(struct rcu_reader *rcu_reader_reg)
e038e286
MD
478{
479 sigset_t newmask, oldmask;
480 int ret;
481
482 ret = sigfillset(&newmask);
483 if (ret)
484 abort();
485 ret = pthread_sigmask(SIG_BLOCK, &newmask, &oldmask);
486 if (ret)
487 abort();
488
489 mutex_lock(&rcu_gp_lock);
48bf2f76 490 remove_thread(rcu_reader_reg);
e038e286
MD
491 mutex_unlock(&rcu_gp_lock);
492 ret = pthread_sigmask(SIG_SETMASK, &oldmask, NULL);
493 if (ret)
494 abort();
48bf2f76 495 rcu_bp_exit();
e038e286
MD
496}
497
498/*
499 * Remove thread from the registry when it exits, and flag it as
500 * destroyed so garbage collection can take care of it.
501 */
502static
503void urcu_bp_thread_exit_notifier(void *rcu_key)
504{
48bf2f76 505 rcu_bp_unregister(rcu_key);
e038e286
MD
506}
507
508static
509void rcu_bp_init(void)
510{
511 mutex_lock(&init_lock);
48bf2f76 512 if (!rcu_bp_refcount++) {
e038e286
MD
513 int ret;
514
515 ret = pthread_key_create(&urcu_bp_key,
516 urcu_bp_thread_exit_notifier);
517 if (ret)
518 abort();
519 initialized = 1;
520 }
521 mutex_unlock(&init_lock);
fdee2e6d
MD
522}
523
e038e286 524static
9380711a 525void rcu_bp_exit(void)
fdee2e6d 526{
48bf2f76
MD
527 mutex_lock(&init_lock);
528 if (!--rcu_bp_refcount) {
529 struct registry_chunk *chunk, *tmp;
530 int ret;
89451e1b 531
48bf2f76
MD
532 cds_list_for_each_entry_safe(chunk, tmp,
533 &registry_arena.chunk_list, node) {
534 munmap(chunk, chunk->data_len
535 + sizeof(struct registry_chunk));
536 }
537 ret = pthread_key_delete(urcu_bp_key);
538 if (ret)
539 abort();
89451e1b 540 }
48bf2f76 541 mutex_unlock(&init_lock);
fdee2e6d 542}
4cf1675f
MD
543
544/*
545 * Holding the rcu_gp_lock across fork will make sure we fork() don't race with
546 * a concurrent thread executing with this same lock held. This ensures that the
547 * registry is in a coherent state in the child.
548 */
549void rcu_bp_before_fork(void)
550{
551 sigset_t newmask, oldmask;
552 int ret;
553
264716f7 554 ret = sigfillset(&newmask);
4cf1675f 555 assert(!ret);
264716f7 556 ret = pthread_sigmask(SIG_BLOCK, &newmask, &oldmask);
4cf1675f
MD
557 assert(!ret);
558 mutex_lock(&rcu_gp_lock);
559 saved_fork_signal_mask = oldmask;
560}
561
562void rcu_bp_after_fork_parent(void)
563{
564 sigset_t oldmask;
565 int ret;
566
567 oldmask = saved_fork_signal_mask;
568 mutex_unlock(&rcu_gp_lock);
569 ret = pthread_sigmask(SIG_SETMASK, &oldmask, NULL);
570 assert(!ret);
571}
572
e038e286
MD
573/*
574 * Prune all entries from registry except our own thread. Fits the Linux
575 * fork behavior. Called with rcu_gp_lock held.
576 */
577static
578void urcu_bp_prune_registry(void)
579{
580 struct registry_chunk *chunk;
581 struct rcu_reader *rcu_reader_reg;
582
583 cds_list_for_each_entry(chunk, &registry_arena.chunk_list, node) {
584 for (rcu_reader_reg = (struct rcu_reader *) &chunk->data[0];
585 rcu_reader_reg < (struct rcu_reader *) &chunk->data[chunk->data_len];
586 rcu_reader_reg++) {
587 if (!rcu_reader_reg->alloc)
588 continue;
589 if (rcu_reader_reg->tid == pthread_self())
590 continue;
591 cleanup_thread(chunk, rcu_reader_reg);
592 }
593 }
594}
595
4cf1675f
MD
596void rcu_bp_after_fork_child(void)
597{
598 sigset_t oldmask;
599 int ret;
600
e038e286 601 urcu_bp_prune_registry();
4cf1675f
MD
602 oldmask = saved_fork_signal_mask;
603 mutex_unlock(&rcu_gp_lock);
604 ret = pthread_sigmask(SIG_SETMASK, &oldmask, NULL);
605 assert(!ret);
606}
5e77fc1f 607
9b7981bb
MD
608void *rcu_dereference_sym_bp(void *p)
609{
610 return _rcu_dereference(p);
611}
612
5efd3cd2
MD
613void *rcu_set_pointer_sym_bp(void **p, void *v)
614{
615 cmm_wmb();
424d4ed5
MD
616 uatomic_set(p, v);
617 return v;
5efd3cd2
MD
618}
619
620void *rcu_xchg_pointer_sym_bp(void **p, void *v)
621{
622 cmm_wmb();
623 return uatomic_xchg(p, v);
624}
625
626void *rcu_cmpxchg_pointer_sym_bp(void **p, void *old, void *_new)
627{
628 cmm_wmb();
629 return uatomic_cmpxchg(p, old, _new);
630}
631
5e6b23a6 632DEFINE_RCU_FLAVOR(rcu_flavor);
541d828d 633
5e77fc1f 634#include "urcu-call-rcu-impl.h"
0376e7b2 635#include "urcu-defer-impl.h"
This page took 0.055858 seconds and 4 git commands to generate.