Coding style fix
[urcu.git] / urcu / rcuwfstack.h
CommitLineData
c3f74cb2
MD
1#ifndef _URCU_RCUWFSTACK_H
2#define _URCU_RCUWFSTACK_H
3
a5eb5ffc
MD
4/*
5 * rcuwfstack.h
6 *
7 * Userspace RCU library - RCU Stack with Wait-Free push, Blocking pop.
8 *
9 * Copyright 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10 *
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
15 *
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
20 *
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 */
25
4a2f213c
MD
26#include <assert.h>
27
a5eb5ffc
MD
28#if (!defined(_GNU_SOURCE) && !defined(_LGPL_SOURCE))
29#error "Dynamic loader LGPL wrappers not implemented yet"
30#endif
31
7ab587e2 32#define RCU_WF_STACK_END ((void *)0x1UL)
4a2f213c 33
a5eb5ffc
MD
34struct rcu_wfs_node {
35 struct rcu_wfs_node *next;
36};
37
38struct rcu_wfs_stack {
39 struct rcu_wfs_node *head;
a5eb5ffc
MD
40};
41
42void rcu_wfs_node_init(struct rcu_wfs_node *node)
43{
44 node->next = NULL;
45}
46
47void rcu_wfs_init(struct rcu_wfs_stack *s)
48{
4a2f213c 49 s->head = RCU_WF_STACK_END;
a5eb5ffc
MD
50}
51
52void rcu_wfs_push(struct rcu_wfs_stack *s, struct rcu_wfs_node *node)
53{
54 struct rcu_wfs_node *old_head;
55
4a2f213c 56 assert(node->next == NULL);
a5eb5ffc
MD
57 /*
58 * uatomic_xchg() implicit memory barrier orders earlier stores to node
59 * (setting it to NULL) before publication.
60 */
61 old_head = uatomic_xchg(&s->head, node);
62 /*
63 * At this point, dequeuers see a NULL node->next, they should busy-wait
64 * until node->next is set to old_head.
65 */
66 STORE_SHARED(node->next, old_head);
67}
68
69/*
4a2f213c
MD
70 * The caller must wait for a grace period before:
71 * - freeing the returned node.
72 * - modifying the ->next pointer of the returned node. (be careful with unions)
73 * - passing the returned node back to push() on the same stack they got it
74 * from.
75 *
a5eb5ffc
MD
76 * Returns NULL if stack is empty.
77 *
78 * cmpxchg is protected from ABA races by holding a RCU read lock between
79 * s->head read and cmpxchg modifying s->head and requiring that dequeuers wait
80 * for a grace period before freeing the returned node.
81 *
82 * TODO: implement adaptative busy-wait and wait/wakeup scheme rather than busy
83 * loops. Better for UP.
84 */
85struct rcu_wfs_node *
7ab587e2 86rcu_wfs_pop_blocking(struct rcu_wfs_stack *s)
a5eb5ffc 87{
a5eb5ffc 88 for (;;) {
4a2f213c 89 struct rcu_wfs_node *head;
a5eb5ffc 90
4a2f213c
MD
91 rcu_read_lock();
92 head = rcu_dereference(s->head);
93 if (head != RCU_WF_STACK_END) {
a5eb5ffc
MD
94 struct rcu_wfs_node *next = rcu_dereference(head->next);
95
96 /* Retry while head is being set by push(). */
4a2f213c
MD
97 if (!next) {
98 rcu_read_unlock();
a5eb5ffc 99 continue;
4a2f213c 100 }
a5eb5ffc
MD
101 if (uatomic_cmpxchg(&s->head, head, next) == head) {
102 rcu_read_unlock();
103 return head;
104 } else {
105 /* Concurrent modification. Retry. */
4a2f213c 106 rcu_read_unlock();
a5eb5ffc
MD
107 continue;
108 }
109 } else {
110 /* Empty stack */
111 rcu_read_unlock();
112 return NULL;
113 }
114 }
115}
c3f74cb2
MD
116
117#endif /* _URCU_RCUWFSTACK_H */
This page took 0.026413 seconds and 4 git commands to generate.