Add lock-free RCU queue and stack
[urcu.git] / urcu / rculfstack.h
CommitLineData
453629a9
MD
1/*
2 * rculfstack.h
3 *
4 * Userspace RCU library - Lock-Free RCU Stack
5 *
6 * Copyright 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.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
23#if (!defined(_GNU_SOURCE) && !defined(_LGPL_SOURCE))
24#error "Dynamic loader LGPL wrappers not implemented yet"
25#endif
26
27struct rcu_lfs_node {
28 struct rcu_lfs_node *next;
29};
30
31struct rcu_lfs_stack {
32 struct rcu_lfs_node *head;
33};
34
35void rcu_lfs_node_init(struct rcu_lfs_node *node)
36{
37}
38
39void rcu_lfs_init(struct rcu_lfs_stack *s)
40{
41 s->head = NULL;
42}
43
44void rcu_lfs_push(struct rcu_lfs_stack *s, struct rcu_lfs_node *node)
45{
46 rcu_read_lock();
47 for (;;) {
48 struct rcu_lfs_node *head = rcu_dereference(s->head);
49
50 node->next = head;
51 /*
52 * uatomic_cmpxchg() implicit memory barrier orders earlier
53 * stores to node before publication.
54 */
55 if (uatomic_cmpxchg(&s->head, head, node) == head) {
56 rcu_read_unlock();
57 return;
58 } else {
59 /* Failure to prepend. Retry. */
60 continue;
61 }
62 }
63}
64
65struct rcu_lfs_node *
66rcu_lfs_pop(struct rcu_lfs_stack *s)
67{
68 rcu_read_lock();
69 for (;;) {
70 struct rcu_lfs_node *head = rcu_dereference(s->head);
71
72 if (head) {
73 struct rcu_lfs_node *next = rcu_dereference(head->next);
74
75 if (uatomic_cmpxchg(&s->head, head, next) == head) {
76 rcu_read_unlock();
77 return head;
78 } else {
79 /* Concurrent modification. Retry. */
80 continue;
81 }
82 } else {
83 /* Empty stack */
84 rcu_read_unlock();
85 return NULL;
86 }
87 }
88}
This page took 0.025244 seconds and 4 git commands to generate.