percpu_ref: add PERCPU_REF_INIT_* flags
[linux-2.6-block.git] / lib / percpu-refcount.c
CommitLineData
215e262f
KO
1#define pr_fmt(fmt) "%s: " fmt "\n", __func__
2
3#include <linux/kernel.h>
490c79a6
TH
4#include <linux/sched.h>
5#include <linux/wait.h>
215e262f
KO
6#include <linux/percpu-refcount.h>
7
8/*
9 * Initially, a percpu refcount is just a set of percpu counters. Initially, we
10 * don't try to detect the ref hitting 0 - which means that get/put can just
11 * increment or decrement the local counter. Note that the counter on a
12 * particular cpu can (and will) wrap - this is fine, when we go to shutdown the
13 * percpu counters will all sum to the correct value
14 *
15 * (More precisely: because moduler arithmatic is commutative the sum of all the
eecc16ba
TH
16 * percpu_count vars will be equal to what it would have been if all the gets
17 * and puts were done to a single integer, even if some of the percpu integers
215e262f
KO
18 * overflow or underflow).
19 *
20 * The real trick to implementing percpu refcounts is shutdown. We can't detect
21 * the ref hitting 0 on every put - this would require global synchronization
22 * and defeat the whole purpose of using percpu refs.
23 *
24 * What we do is require the user to keep track of the initial refcount; we know
25 * the ref can't hit 0 before the user drops the initial ref, so as long as we
26 * convert to non percpu mode before the initial ref is dropped everything
27 * works.
28 *
29 * Converting to non percpu mode is done with some RCUish stuff in
e625305b
TH
30 * percpu_ref_kill. Additionally, we need a bias value so that the
31 * atomic_long_t can't hit 0 before we've added up all the percpu refs.
215e262f
KO
32 */
33
eecc16ba 34#define PERCPU_COUNT_BIAS (1LU << (BITS_PER_LONG - 1))
215e262f 35
490c79a6
TH
36static DECLARE_WAIT_QUEUE_HEAD(percpu_ref_switch_waitq);
37
eecc16ba 38static unsigned long __percpu *percpu_count_ptr(struct percpu_ref *ref)
eae7975d 39{
eecc16ba 40 return (unsigned long __percpu *)
27344a90 41 (ref->percpu_count_ptr & ~__PERCPU_REF_ATOMIC_DEAD);
eae7975d
TH
42}
43
215e262f
KO
44/**
45 * percpu_ref_init - initialize a percpu refcount
ac899061
TH
46 * @ref: percpu_ref to initialize
47 * @release: function which will be called when refcount hits 0
2aad2a86 48 * @flags: PERCPU_REF_INIT_* flags
a34375ef 49 * @gfp: allocation mask to use
215e262f 50 *
2aad2a86
TH
51 * Initializes @ref. If @flags is zero, @ref starts in percpu mode with a
52 * refcount of 1; analagous to atomic_long_set(ref, 1). See the
53 * definitions of PERCPU_REF_INIT_* flags for flag behaviors.
215e262f
KO
54 *
55 * Note that @release must not sleep - it may potentially be called from RCU
56 * callback context by percpu_ref_kill().
57 */
a34375ef 58int percpu_ref_init(struct percpu_ref *ref, percpu_ref_func_t *release,
2aad2a86 59 unsigned int flags, gfp_t gfp)
215e262f 60{
27344a90
TH
61 size_t align = max_t(size_t, 1 << __PERCPU_REF_FLAG_BITS,
62 __alignof__(unsigned long));
2aad2a86 63 unsigned long start_count = 0;
215e262f 64
27344a90
TH
65 ref->percpu_count_ptr = (unsigned long)
66 __alloc_percpu_gfp(sizeof(unsigned long), align, gfp);
eecc16ba 67 if (!ref->percpu_count_ptr)
215e262f
KO
68 return -ENOMEM;
69
2aad2a86
TH
70 if (flags & (PERCPU_REF_INIT_ATOMIC | PERCPU_REF_INIT_DEAD))
71 ref->percpu_count_ptr |= __PERCPU_REF_ATOMIC;
72 else
73 start_count += PERCPU_COUNT_BIAS;
74
75 if (flags & PERCPU_REF_INIT_DEAD)
76 ref->percpu_count_ptr |= __PERCPU_REF_DEAD;
77 else
78 start_count++;
79
80 atomic_long_set(&ref->count, start_count);
81
215e262f
KO
82 ref->release = release;
83 return 0;
84}
5e9dd373 85EXPORT_SYMBOL_GPL(percpu_ref_init);
215e262f 86
bc497bd3 87/**
9a1049da
TH
88 * percpu_ref_exit - undo percpu_ref_init()
89 * @ref: percpu_ref to exit
bc497bd3 90 *
9a1049da
TH
91 * This function exits @ref. The caller is responsible for ensuring that
92 * @ref is no longer in active use. The usual places to invoke this
93 * function from are the @ref->release() callback or in init failure path
94 * where percpu_ref_init() succeeded but other parts of the initialization
95 * of the embedding object failed.
bc497bd3 96 */
9a1049da 97void percpu_ref_exit(struct percpu_ref *ref)
bc497bd3 98{
eecc16ba 99 unsigned long __percpu *percpu_count = percpu_count_ptr(ref);
bc497bd3 100
eecc16ba
TH
101 if (percpu_count) {
102 free_percpu(percpu_count);
27344a90 103 ref->percpu_count_ptr = __PERCPU_REF_ATOMIC_DEAD;
bc497bd3
TH
104 }
105}
9a1049da 106EXPORT_SYMBOL_GPL(percpu_ref_exit);
bc497bd3 107
490c79a6
TH
108static void percpu_ref_call_confirm_rcu(struct rcu_head *rcu)
109{
110 struct percpu_ref *ref = container_of(rcu, struct percpu_ref, rcu);
111
112 ref->confirm_switch(ref);
113 ref->confirm_switch = NULL;
114 wake_up_all(&percpu_ref_switch_waitq);
115
116 /* drop ref from percpu_ref_switch_to_atomic() */
117 percpu_ref_put(ref);
118}
119
120static void percpu_ref_switch_to_atomic_rcu(struct rcu_head *rcu)
215e262f
KO
121{
122 struct percpu_ref *ref = container_of(rcu, struct percpu_ref, rcu);
eecc16ba 123 unsigned long __percpu *percpu_count = percpu_count_ptr(ref);
e625305b 124 unsigned long count = 0;
215e262f
KO
125 int cpu;
126
215e262f 127 for_each_possible_cpu(cpu)
eecc16ba 128 count += *per_cpu_ptr(percpu_count, cpu);
215e262f 129
eecc16ba 130 pr_debug("global %ld percpu %ld",
e625305b 131 atomic_long_read(&ref->count), (long)count);
215e262f
KO
132
133 /*
134 * It's crucial that we sum the percpu counters _before_ adding the sum
135 * to &ref->count; since gets could be happening on one cpu while puts
136 * happen on another, adding a single cpu's count could cause
137 * @ref->count to hit 0 before we've got a consistent value - but the
138 * sum of all the counts will be consistent and correct.
139 *
140 * Subtracting the bias value then has to happen _after_ adding count to
141 * &ref->count; we need the bias value to prevent &ref->count from
142 * reaching 0 before we add the percpu counts. But doing it at the same
143 * time is equivalent and saves us atomic operations:
144 */
eecc16ba 145 atomic_long_add((long)count - PERCPU_COUNT_BIAS, &ref->count);
215e262f 146
e625305b 147 WARN_ONCE(atomic_long_read(&ref->count) <= 0,
490c79a6 148 "percpu ref (%pf) <= 0 (%ld) after switching to atomic",
e625305b 149 ref->release, atomic_long_read(&ref->count));
687b0ad2 150
490c79a6
TH
151 /* @ref is viewed as dead on all CPUs, send out switch confirmation */
152 percpu_ref_call_confirm_rcu(rcu);
153}
dbece3a0 154
490c79a6
TH
155static void percpu_ref_noop_confirm_switch(struct percpu_ref *ref)
156{
157}
158
159static void __percpu_ref_switch_to_atomic(struct percpu_ref *ref,
160 percpu_ref_func_t *confirm_switch)
161{
162 if (!(ref->percpu_count_ptr & __PERCPU_REF_ATOMIC)) {
163 /* switching from percpu to atomic */
164 ref->percpu_count_ptr |= __PERCPU_REF_ATOMIC;
165
166 /*
167 * Non-NULL ->confirm_switch is used to indicate that
168 * switching is in progress. Use noop one if unspecified.
169 */
170 WARN_ON_ONCE(ref->confirm_switch);
171 ref->confirm_switch =
172 confirm_switch ?: percpu_ref_noop_confirm_switch;
173
174 percpu_ref_get(ref); /* put after confirmation */
175 call_rcu_sched(&ref->rcu, percpu_ref_switch_to_atomic_rcu);
176 } else if (confirm_switch) {
177 /*
178 * Somebody already set ATOMIC. Switching may still be in
179 * progress. @confirm_switch must be invoked after the
180 * switching is complete and a full sched RCU grace period
181 * has passed. Wait synchronously for the previous
182 * switching and schedule @confirm_switch invocation.
183 */
184 wait_event(percpu_ref_switch_waitq, !ref->confirm_switch);
185 ref->confirm_switch = confirm_switch;
186
187 percpu_ref_get(ref); /* put after confirmation */
188 call_rcu_sched(&ref->rcu, percpu_ref_call_confirm_rcu);
189 }
215e262f
KO
190}
191
192/**
490c79a6
TH
193 * percpu_ref_switch_to_atomic - switch a percpu_ref to atomic mode
194 * @ref: percpu_ref to switch to atomic mode
195 * @confirm_switch: optional confirmation callback
215e262f 196 *
490c79a6
TH
197 * There's no reason to use this function for the usual reference counting.
198 * Use percpu_ref_kill[_and_confirm]().
199 *
200 * Schedule switching of @ref to atomic mode. All its percpu counts will
201 * be collected to the main atomic counter. On completion, when all CPUs
202 * are guaraneed to be in atomic mode, @confirm_switch, which may not
203 * block, is invoked. This function may be invoked concurrently with all
204 * the get/put operations and can safely be mixed with kill and reinit
205 * operations.
215e262f 206 *
490c79a6
TH
207 * This function normally doesn't block and can be called from any context
208 * but it may block if @confirm_kill is specified and @ref is already in
209 * the process of switching to atomic mode. In such cases, @confirm_switch
210 * will be invoked after the switching is complete.
211 *
212 * Due to the way percpu_ref is implemented, @confirm_switch will be called
213 * after at least one full sched RCU grace period has passed but this is an
214 * implementation detail and must not be depended upon.
215e262f 215 */
490c79a6
TH
216void percpu_ref_switch_to_atomic(struct percpu_ref *ref,
217 percpu_ref_func_t *confirm_switch)
215e262f 218{
490c79a6 219 __percpu_ref_switch_to_atomic(ref, confirm_switch);
215e262f 220}
a2237370 221
f47ad457 222static void __percpu_ref_switch_to_percpu(struct percpu_ref *ref)
a2237370 223{
eecc16ba 224 unsigned long __percpu *percpu_count = percpu_count_ptr(ref);
a2237370
TH
225 int cpu;
226
eecc16ba 227 BUG_ON(!percpu_count);
a2237370 228
f47ad457
TH
229 if (!(ref->percpu_count_ptr & __PERCPU_REF_ATOMIC))
230 return;
231
232 wait_event(percpu_ref_switch_waitq, !ref->confirm_switch);
233
234 atomic_long_add(PERCPU_COUNT_BIAS, &ref->count);
a2237370
TH
235
236 /*
237 * Restore per-cpu operation. smp_store_release() is paired with
9e804d1f
TH
238 * smp_read_barrier_depends() in __ref_is_percpu() and guarantees
239 * that the zeroing is visible to all percpu accesses which can see
f47ad457 240 * the following __PERCPU_REF_ATOMIC clearing.
a2237370
TH
241 */
242 for_each_possible_cpu(cpu)
eecc16ba 243 *per_cpu_ptr(percpu_count, cpu) = 0;
a2237370 244
eecc16ba 245 smp_store_release(&ref->percpu_count_ptr,
f47ad457
TH
246 ref->percpu_count_ptr & ~__PERCPU_REF_ATOMIC);
247}
248
249/**
250 * percpu_ref_switch_to_percpu - switch a percpu_ref to percpu mode
251 * @ref: percpu_ref to switch to percpu mode
252 *
253 * There's no reason to use this function for the usual reference counting.
254 * To re-use an expired ref, use percpu_ref_reinit().
255 *
256 * Switch @ref to percpu mode. This function may be invoked concurrently
257 * with all the get/put operations and can safely be mixed with kill and
258 * reinit operations.
259 *
260 * This function normally doesn't block and can be called from any context
261 * but it may block if @ref is in the process of switching to atomic mode
262 * by percpu_ref_switch_atomic().
263 */
264void percpu_ref_switch_to_percpu(struct percpu_ref *ref)
265{
266 /* a dying or dead ref can't be switched to percpu mode w/o reinit */
267 if (!(ref->percpu_count_ptr & __PERCPU_REF_DEAD))
268 __percpu_ref_switch_to_percpu(ref);
a2237370 269}
490c79a6
TH
270
271/**
272 * percpu_ref_kill_and_confirm - drop the initial ref and schedule confirmation
273 * @ref: percpu_ref to kill
274 * @confirm_kill: optional confirmation callback
275 *
276 * Equivalent to percpu_ref_kill() but also schedules kill confirmation if
277 * @confirm_kill is not NULL. @confirm_kill, which may not block, will be
278 * called after @ref is seen as dead from all CPUs at which point all
279 * further invocations of percpu_ref_tryget_live() will fail. See
280 * percpu_ref_tryget_live() for details.
281 *
282 * This function normally doesn't block and can be called from any context
f47ad457
TH
283 * but it may block if @confirm_kill is specified and @ref is in the
284 * process of switching to atomic mode by percpu_ref_switch_atomic().
490c79a6
TH
285 *
286 * Due to the way percpu_ref is implemented, @confirm_switch will be called
287 * after at least one full sched RCU grace period has passed but this is an
288 * implementation detail and must not be depended upon.
289 */
290void percpu_ref_kill_and_confirm(struct percpu_ref *ref,
291 percpu_ref_func_t *confirm_kill)
292{
293 WARN_ONCE(ref->percpu_count_ptr & __PERCPU_REF_DEAD,
294 "%s called more than once on %pf!", __func__, ref->release);
295
296 ref->percpu_count_ptr |= __PERCPU_REF_DEAD;
297 __percpu_ref_switch_to_atomic(ref, confirm_kill);
298 percpu_ref_put(ref);
299}
300EXPORT_SYMBOL_GPL(percpu_ref_kill_and_confirm);
f47ad457
TH
301
302/**
303 * percpu_ref_reinit - re-initialize a percpu refcount
304 * @ref: perpcu_ref to re-initialize
305 *
306 * Re-initialize @ref so that it's in the same state as when it finished
307 * percpu_ref_init(). @ref must have been initialized successfully and
308 * reached 0 but not exited.
309 *
310 * Note that percpu_ref_tryget[_live]() are safe to perform on @ref while
311 * this function is in progress.
312 */
313void percpu_ref_reinit(struct percpu_ref *ref)
314{
315 WARN_ON_ONCE(!percpu_ref_is_zero(ref));
316
317 ref->percpu_count_ptr &= ~__PERCPU_REF_DEAD;
318 percpu_ref_get(ref);
319 __percpu_ref_switch_to_percpu(ref);
320}
321EXPORT_SYMBOL_GPL(percpu_ref_reinit);