qsbr: portability fixes: use unsigned long for the gp counters.
[urcu.git] / urcu-qsbr-static.h
CommitLineData
7ac06cef
MD
1#ifndef _URCU_QSBR_STATIC_H
2#define _URCU_QSBR_STATIC_H
3
4/*
5 * urcu-qsbr-static.h
6 *
7 * Userspace RCU QSBR header.
8 *
9 * TO BE INCLUDED ONLY IN LGPL-COMPATIBLE CODE. See urcu-qsbr.h for linking
10 * dynamically with the userspace rcu QSBR library.
11 *
12 * Copyright (c) 2009 Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
13 * Copyright (c) 2009 Paul E. McKenney, IBM Corporation.
14 *
15 * This library is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU Lesser General Public
17 * License as published by the Free Software Foundation; either
18 * version 2.1 of the License, or (at your option) any later version.
19 *
20 * This library is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 * Lesser General Public License for more details.
24 *
25 * You should have received a copy of the GNU Lesser General Public
26 * License along with this library; if not, write to the Free Software
27 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
28 *
29 * IBM's contributions to this file may be relicensed under LGPLv2 or later.
30 */
31
32#include <stdlib.h>
33#include <pthread.h>
34#include <assert.h>
f0f7dbdd 35#include <limits.h>
7ac06cef
MD
36
37#include <compiler.h>
38#include <arch.h>
39
40/*
41 * Identify a shared load. A smp_rmc() or smp_mc() should come before the load.
42 */
43#define _LOAD_SHARED(p) ACCESS_ONCE(p)
44
45/*
46 * Load a data from shared memory, doing a cache flush if required.
47 */
48#define LOAD_SHARED(p) \
49 ({ \
50 smp_rmc(); \
51 _LOAD_SHARED(p); \
52 })
53
54/*
55 * Identify a shared store. A smp_wmc() or smp_mc() should follow the store.
56 */
57#define _STORE_SHARED(x, v) ({ ACCESS_ONCE(x) = (v); })
58
59/*
60 * Store v into x, where x is located in shared memory. Performs the required
61 * cache flush after writing. Returns v.
62 */
63#define STORE_SHARED(x, v) \
64 ({ \
65 _STORE_SHARED(x, v); \
66 smp_wmc(); \
67 (v); \
68 })
69
70/**
71 * _rcu_dereference - reads (copy) a RCU-protected pointer to a local variable
72 * into a RCU read-side critical section. The pointer can later be safely
73 * dereferenced within the critical section.
74 *
75 * This ensures that the pointer copy is invariant thorough the whole critical
76 * section.
77 *
78 * Inserts memory barriers on architectures that require them (currently only
79 * Alpha) and documents which pointers are protected by RCU.
80 *
81 * Should match rcu_assign_pointer() or rcu_xchg_pointer().
82 */
83
84#define _rcu_dereference(p) ({ \
85 typeof(p) _________p1 = LOAD_SHARED(p); \
86 smp_read_barrier_depends(); \
87 (_________p1); \
88 })
89
90/*
91 * This code section can only be included in LGPL 2.1 compatible source code.
92 * See below for the function call wrappers which can be used in code meant to
93 * be only linked with the Userspace RCU library. This comes with a small
94 * performance degradation on the read-side due to the added function calls.
95 * This is required to permit relinking with newer versions of the library.
96 */
97
98/*
99 * If a reader is really non-cooperative and refuses to commit its
100 * rcu_reader_qs_gp count to memory (there is no barrier in the reader
101 * per-se), kick it after a few loops waiting for it.
102 */
103#define KICK_READER_LOOPS 10000
104
105#ifdef DEBUG_RCU
106#define rcu_assert(args...) assert(args)
107#else
108#define rcu_assert(args...)
109#endif
110
111#ifdef DEBUG_YIELD
112#include <sched.h>
113#include <time.h>
114#include <pthread.h>
115#include <unistd.h>
116
117#define YIELD_READ (1 << 0)
118#define YIELD_WRITE (1 << 1)
119
120/* maximum sleep delay, in us */
121#define MAX_SLEEP 50
122
123extern unsigned int yield_active;
124extern unsigned int __thread rand_yield;
125
126static inline void debug_yield_read(void)
127{
128 if (yield_active & YIELD_READ)
129 if (rand_r(&rand_yield) & 0x1)
130 usleep(rand_r(&rand_yield) % MAX_SLEEP);
131}
132
133static inline void debug_yield_write(void)
134{
135 if (yield_active & YIELD_WRITE)
136 if (rand_r(&rand_yield) & 0x1)
137 usleep(rand_r(&rand_yield) % MAX_SLEEP);
138}
139
140static inline void debug_yield_init(void)
141{
142 rand_yield = time(NULL) ^ pthread_self();
143}
144#else
145static inline void debug_yield_read(void)
146{
147}
148
149static inline void debug_yield_write(void)
150{
151}
152
153static inline void debug_yield_init(void)
154{
155
156}
157#endif
158
159static inline void reader_barrier()
160{
161 smp_mb();
162}
163
164/*
165 * Global quiescent period counter with low-order bits unused.
166 * Using a int rather than a char to eliminate false register dependencies
167 * causing stalls on some architectures.
168 */
f0f7dbdd 169extern unsigned long urcu_gp_ctr;
7ac06cef 170
f0f7dbdd 171extern unsigned long __thread rcu_reader_qs_gp;
7ac06cef 172
f0f7dbdd 173static inline int rcu_gp_ongoing(unsigned long *value)
7ac06cef 174{
f0f7dbdd 175 unsigned long reader_gp;
4e560c17 176
7ac06cef
MD
177 if (value == NULL)
178 return 0;
4e560c17 179 reader_gp = LOAD_SHARED(*value);
f0f7dbdd 180 return reader_gp && (reader_gp - urcu_gp_ctr > ULONG_MAX / 2);
7ac06cef
MD
181}
182
183static inline void _rcu_read_lock(void)
184{
185 rcu_assert(rcu_reader_qs_gp & 1);
186}
187
188static inline void _rcu_read_unlock(void)
189{
190}
191
192static inline void _rcu_quiescent_state(void)
193{
194 smp_mb();
ab179a17 195 _STORE_SHARED(rcu_reader_qs_gp, _LOAD_SHARED(urcu_gp_ctr));
7ac06cef
MD
196 smp_mb();
197}
198
199static inline void _rcu_thread_offline(void)
200{
201 smp_mb();
4e560c17 202 STORE_SHARED(rcu_reader_qs_gp, 0);
7ac06cef
MD
203}
204
205static inline void _rcu_thread_online(void)
206{
ab179a17 207 _STORE_SHARED(rcu_reader_qs_gp, LOAD_SHARED(urcu_gp_ctr));
7ac06cef
MD
208 smp_mb();
209}
210
211/**
212 * _rcu_assign_pointer - assign (publicize) a pointer to a new data structure
213 * meant to be read by RCU read-side critical sections. Returns the assigned
214 * value.
215 *
216 * Documents which pointers will be dereferenced by RCU read-side critical
217 * sections and adds the required memory barriers on architectures requiring
218 * them. It also makes sure the compiler does not reorder code initializing the
219 * data structure before its publication.
220 *
221 * Should match rcu_dereference_pointer().
222 */
223
224#define _rcu_assign_pointer(p, v) \
225 ({ \
226 if (!__builtin_constant_p(v) || \
227 ((v) != NULL)) \
228 wmb(); \
229 STORE_SHARED(p, v); \
230 })
231
232/**
233 * _rcu_xchg_pointer - same as rcu_assign_pointer, but returns the previous
234 * pointer to the data structure, which can be safely freed after waiting for a
235 * quiescent state using synchronize_rcu().
236 */
237
238#define _rcu_xchg_pointer(p, v) \
239 ({ \
240 if (!__builtin_constant_p(v) || \
241 ((v) != NULL)) \
242 wmb(); \
243 xchg(p, v); \
244 })
245
246/*
247 * Exchanges the pointer and waits for quiescent state.
248 * The pointer returned can be freed.
249 */
250#define _rcu_publish_content(p, v) \
251 ({ \
252 void *oldptr; \
253 oldptr = _rcu_xchg_pointer(p, v); \
254 synchronize_rcu(); \
255 oldptr; \
256 })
257
258#endif /* _URCU_QSBR_STATIC_H */
This page took 0.031829 seconds and 4 git commands to generate.