blob: 183e41bdcb69b5e05224cfe46dfaa427907482bf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001 Semantics and Behavior of Atomic and
2 Bitmask Operations
3
4 David S. Miller
5
6 This document is intended to serve as a guide to Linux port
7maintainers on how to implement atomic counter, bitops, and spinlock
8interfaces properly.
9
Paul E. McKenney1f7870d2014-10-19 12:05:22 -070010 The atomic_t type should be defined as a signed integer and
11the atomic_long_t type as a signed long integer. Also, they should
12be made opaque such that any kind of cast to a normal C integer type
13will fail. Something like the following should suffice:
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Nikanth Karthikesan72eef0f2011-05-26 16:25:13 -070015 typedef struct { int counter; } atomic_t;
Paul E. McKenney1f7870d2014-10-19 12:05:22 -070016 typedef struct { long counter; } atomic_long_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Matti Linnanvuori8d7b52d2007-10-16 23:30:08 -070018Historically, counter has been declared volatile. This is now discouraged.
19See Documentation/volatile-considered-harmful.txt for the complete rationale.
20
Grant Grundler1a2142b2007-10-16 23:29:28 -070021local_t is very similar to atomic_t. If the counter is per CPU and only
22updated by one CPU, local_t is probably more appropriate. Please see
23Documentation/local_ops.txt for the semantics of local_t.
24
Matti Linnanvuori8d7b52d2007-10-16 23:30:08 -070025The first operations to implement for atomic_t's are the initializers and
26plain reads.
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28 #define ATOMIC_INIT(i) { (i) }
29 #define atomic_set(v, i) ((v)->counter = (i))
30
31The first macro is used in definitions, such as:
32
33static atomic_t my_counter = ATOMIC_INIT(1);
34
Matti Linnanvuori8d7b52d2007-10-16 23:30:08 -070035The initializer is atomic in that the return values of the atomic operations
36are guaranteed to be correct reflecting the initialized value if the
37initializer is used before runtime. If the initializer is used at runtime, a
38proper implicit or explicit read memory barrier is needed before reading the
39value with atomic_read from another thread.
40
Paul E. McKenney1f7870d2014-10-19 12:05:22 -070041As with all of the atomic_ interfaces, replace the leading "atomic_"
42with "atomic_long_" to operate on atomic_long_t.
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044The second interface can be used at runtime, as in:
45
46 struct foo { atomic_t counter; };
47 ...
48
49 struct foo *k;
50
51 k = kmalloc(sizeof(*k), GFP_KERNEL);
52 if (!k)
53 return -ENOMEM;
54 atomic_set(&k->counter, 0);
55
Matti Linnanvuori8d7b52d2007-10-16 23:30:08 -070056The setting is atomic in that the return values of the atomic operations by
57all threads are guaranteed to be correct reflecting either the value that has
58been set with this operation or set with another operation. A proper implicit
59or explicit memory barrier is needed before the value set with the operation
60is guaranteed to be readable with atomic_read from another thread.
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062Next, we have:
63
64 #define atomic_read(v) ((v)->counter)
65
Matti Linnanvuori8d7b52d2007-10-16 23:30:08 -070066which simply reads the counter value currently visible to the calling thread.
67The read is atomic in that the return value is guaranteed to be one of the
68values initialized or modified with the interface operations if a proper
69implicit or explicit memory barrier is used after possible runtime
70initialization by any other thread and the value is modified only with the
71interface operations. atomic_read does not guarantee that the runtime
72initialization by any other thread is visible yet, so the user of the
73interface must take care of that with a proper implicit or explicit memory
74barrier.
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Matti Linnanvuori8d7b52d2007-10-16 23:30:08 -070076*** WARNING: atomic_read() and atomic_set() DO NOT IMPLY BARRIERS! ***
77
78Some architectures may choose to use the volatile keyword, barriers, or inline
79assembly to guarantee some degree of immediacy for atomic_read() and
80atomic_set(). This is not uniformly guaranteed, and may change in the future,
81so all users of atomic_t should treat atomic_read() and atomic_set() as simple
82C statements that may be reordered or optimized away entirely by the compiler
83or processor, and explicitly invoke the appropriate compiler and/or memory
84barrier for each use case. Failure to do so will result in code that may
85suddenly break when used with different architectures or compiler
86optimizations, or even changes in unrelated code which changes how the
87compiler optimizes the section accessing atomic_t variables.
88
89*** YOU HAVE BEEN WARNED! ***
90
Paul E. McKenney182dd4b2011-11-22 10:55:12 -080091Properly aligned pointers, longs, ints, and chars (and unsigned
92equivalents) may be atomically loaded from and stored to in the same
93sense as described for atomic_read() and atomic_set(). The ACCESS_ONCE()
94macro should be used to prevent the compiler from using optimizations
95that might otherwise optimize accesses out of existence on the one hand,
96or that might create unsolicited accesses on the other.
97
98For example consider the following code:
99
100 while (a > 0)
101 do_something();
102
103If the compiler can prove that do_something() does not store to the
104variable a, then the compiler is within its rights transforming this to
105the following:
106
107 tmp = a;
108 if (a > 0)
109 for (;;)
110 do_something();
111
112If you don't want the compiler to do this (and you probably don't), then
113you should use something like the following:
114
115 while (ACCESS_ONCE(a) < 0)
116 do_something();
117
118Alternatively, you could place a barrier() call in the loop.
119
120For another example, consider the following code:
121
122 tmp_a = a;
123 do_something_with(tmp_a);
124 do_something_else_with(tmp_a);
125
126If the compiler can prove that do_something_with() does not store to the
127variable a, then the compiler is within its rights to manufacture an
128additional load as follows:
129
130 tmp_a = a;
131 do_something_with(tmp_a);
132 tmp_a = a;
133 do_something_else_with(tmp_a);
134
135This could fatally confuse your code if it expected the same value
136to be passed to do_something_with() and do_something_else_with().
137
138The compiler would be likely to manufacture this additional load if
139do_something_with() was an inline function that made very heavy use
140of registers: reloading from variable a could save a flush to the
141stack and later reload. To prevent the compiler from attacking your
142code in this manner, write the following:
143
144 tmp_a = ACCESS_ONCE(a);
145 do_something_with(tmp_a);
146 do_something_else_with(tmp_a);
147
148For a final example, consider the following code, assuming that the
149variable a is set at boot time before the second CPU is brought online
150and never changed later, so that memory barriers are not needed:
151
152 if (a)
153 b = 9;
154 else
155 b = 42;
156
157The compiler is within its rights to manufacture an additional store
158by transforming the above code into the following:
159
160 b = 42;
161 if (a)
162 b = 9;
163
164This could come as a fatal surprise to other code running concurrently
165that expected b to never have the value 42 if a was zero. To prevent
166the compiler from doing this, write something like:
167
168 if (a)
169 ACCESS_ONCE(b) = 9;
170 else
171 ACCESS_ONCE(b) = 42;
172
173Don't even -think- about doing this without proper use of memory barriers,
174locks, or atomic operations if variable a can change at runtime!
175
176*** WARNING: ACCESS_ONCE() DOES NOT IMPLY A BARRIER! ***
177
Matti Linnanvuori8d7b52d2007-10-16 23:30:08 -0700178Now, we move onto the atomic operation interfaces typically implemented with
179the help of assembly code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 void atomic_add(int i, atomic_t *v);
182 void atomic_sub(int i, atomic_t *v);
183 void atomic_inc(atomic_t *v);
184 void atomic_dec(atomic_t *v);
185
186These four routines add and subtract integral values to/from the given
187atomic_t value. The first two routines pass explicit integers by
188which to make the adjustment, whereas the latter two use an implicit
189adjustment value of "1".
190
191One very important aspect of these two routines is that they DO NOT
192require any explicit memory barriers. They need only perform the
193atomic_t counter update in an SMP safe manner.
194
195Next, we have:
196
197 int atomic_inc_return(atomic_t *v);
198 int atomic_dec_return(atomic_t *v);
199
200These routines add 1 and subtract 1, respectively, from the given
201atomic_t and return the new counter value after the operation is
202performed.
203
204Unlike the above routines, it is required that explicit memory
205barriers are performed before and after the operation. It must be
206done such that all memory operations before and after the atomic
207operation calls are strongly ordered with respect to the atomic
208operation itself.
209
210For example, it should behave as if a smp_mb() call existed both
211before and after the atomic operation.
212
213If the atomic instructions used in an implementation provide explicit
214memory barrier semantics which satisfy the above requirements, that is
215fine as well.
216
217Let's move on:
218
219 int atomic_add_return(int i, atomic_t *v);
220 int atomic_sub_return(int i, atomic_t *v);
221
222These behave just like atomic_{inc,dec}_return() except that an
223explicit counter adjustment is given instead of the implicit "1".
224This means that like atomic_{inc,dec}_return(), the memory barrier
225semantics are required.
226
227Next:
228
229 int atomic_inc_and_test(atomic_t *v);
230 int atomic_dec_and_test(atomic_t *v);
231
232These two routines increment and decrement by 1, respectively, the
233given atomic counter. They return a boolean indicating whether the
234resulting counter value was zero or not.
235
236It requires explicit memory barrier semantics around the operation as
237above.
238
239 int atomic_sub_and_test(int i, atomic_t *v);
240
241This is identical to atomic_dec_and_test() except that an explicit
242decrement is given instead of the implicit "1". It requires explicit
243memory barrier semantics around the operation.
244
245 int atomic_add_negative(int i, atomic_t *v);
246
247The given increment is added to the given atomic counter value. A
248boolean is return which indicates whether the resulting counter value
249is negative. It requires explicit memory barrier semantics around the
250operation.
251
Nick Piggin8426e1f2005-11-13 16:07:25 -0800252Then:
Nick Piggin4a6dae62005-11-13 16:07:24 -0800253
Matti Linnanvuori8d7b52d2007-10-16 23:30:08 -0700254 int atomic_xchg(atomic_t *v, int new);
255
256This performs an atomic exchange operation on the atomic variable v, setting
257the given new value. It returns the old value that the atomic variable v had
258just before the operation.
259
Richard Braun7e8b1e72012-12-13 11:07:32 +0100260atomic_xchg requires explicit memory barriers around the operation.
261
Nick Piggin4a6dae62005-11-13 16:07:24 -0800262 int atomic_cmpxchg(atomic_t *v, int old, int new);
263
264This performs an atomic compare exchange operation on the atomic value v,
265with the given old and new values. Like all atomic_xxx operations,
266atomic_cmpxchg will only satisfy its atomicity semantics as long as all
267other accesses of *v are performed through atomic_xxx operations.
268
269atomic_cmpxchg requires explicit memory barriers around the operation.
270
271The semantics for atomic_cmpxchg are the same as those defined for 'cas'
272below.
273
Nick Piggin8426e1f2005-11-13 16:07:25 -0800274Finally:
275
276 int atomic_add_unless(atomic_t *v, int a, int u);
277
278If the atomic value v is not equal to u, this function adds a to v, and
279returns non zero. If v is equal to u then it returns zero. This is done as
280an atomic operation.
281
Oleg Nesterov02c608c2008-02-24 00:03:29 +0300282atomic_add_unless requires explicit memory barriers around the operation
283unless it fails (returns 0).
Nick Piggin8426e1f2005-11-13 16:07:25 -0800284
285atomic_inc_not_zero, equivalent to atomic_add_unless(v, 1, 0)
286
Nick Piggin4a6dae62005-11-13 16:07:24 -0800287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288If a caller requires memory barrier semantics around an atomic_t
289operation which does not return a value, a set of interfaces are
290defined which accomplish this:
291
Peter Zijlstra1b156112014-03-13 19:00:35 +0100292 void smp_mb__before_atomic(void);
293 void smp_mb__after_atomic(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Peter Zijlstra1b156112014-03-13 19:00:35 +0100295For example, smp_mb__before_atomic() can be used like so:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 obj->dead = 1;
Peter Zijlstra1b156112014-03-13 19:00:35 +0100298 smp_mb__before_atomic();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 atomic_dec(&obj->ref_count);
300
Michael Hayesa0ebb3f2006-06-26 18:27:35 +0200301It makes sure that all memory operations preceding the atomic_dec()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302call are strongly ordered with respect to the atomic counter
Michael Hayesa0ebb3f2006-06-26 18:27:35 +0200303operation. In the above example, it guarantees that the assignment of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304"1" to obj->dead will be globally visible to other cpus before the
305atomic counter decrement.
306
Peter Zijlstra1b156112014-03-13 19:00:35 +0100307Without the explicit smp_mb__before_atomic() call, the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308implementation could legally allow the atomic counter update visible
309to other cpus before the "obj->dead = 1;" assignment.
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311A missing memory barrier in the cases where they are required by the
Michael Hayesa0ebb3f2006-06-26 18:27:35 +0200312atomic_t implementation above can have disastrous results. Here is
313an example, which follows a pattern occurring frequently in the Linux
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314kernel. It is the use of atomic counters to implement reference
315counting, and it works such that once the counter falls to zero it can
Michael Hayesa0ebb3f2006-06-26 18:27:35 +0200316be guaranteed that no other entity can be accessing the object:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Figo.zhang4764e282009-06-16 15:33:51 -0700318static void obj_list_add(struct obj *obj, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
320 obj->active = 1;
Figo.zhang4764e282009-06-16 15:33:51 -0700321 list_add(&obj->list, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
324static void obj_list_del(struct obj *obj)
325{
326 list_del(&obj->list);
327 obj->active = 0;
328}
329
330static void obj_destroy(struct obj *obj)
331{
332 BUG_ON(obj->active);
333 kfree(obj);
334}
335
336struct obj *obj_list_peek(struct list_head *head)
337{
338 if (!list_empty(head)) {
339 struct obj *obj;
340
341 obj = list_entry(head->next, struct obj, list);
342 atomic_inc(&obj->refcnt);
343 return obj;
344 }
345 return NULL;
346}
347
348void obj_poke(void)
349{
350 struct obj *obj;
351
352 spin_lock(&global_list_lock);
353 obj = obj_list_peek(&global_list);
354 spin_unlock(&global_list_lock);
355
356 if (obj) {
357 obj->ops->poke(obj);
358 if (atomic_dec_and_test(&obj->refcnt))
359 obj_destroy(obj);
360 }
361}
362
363void obj_timeout(struct obj *obj)
364{
365 spin_lock(&global_list_lock);
366 obj_list_del(obj);
367 spin_unlock(&global_list_lock);
368
369 if (atomic_dec_and_test(&obj->refcnt))
370 obj_destroy(obj);
371}
372
373(This is a simplification of the ARP queue management in the
374 generic neighbour discover code of the networking. Olaf Kirch
375 found a bug wrt. memory barriers in kfree_skb() that exposed
376 the atomic_t memory barrier requirements quite clearly.)
377
378Given the above scheme, it must be the case that the obj->active
379update done by the obj list deletion be visible to other processors
380before the atomic counter decrement is performed.
381
382Otherwise, the counter could fall to zero, yet obj->active would still
383be set, thus triggering the assertion in obj_destroy(). The error
384sequence looks like this:
385
386 cpu 0 cpu 1
387 obj_poke() obj_timeout()
388 obj = obj_list_peek();
389 ... gains ref to obj, refcnt=2
390 obj_list_del(obj);
391 obj->active = 0 ...
392 ... visibility delayed ...
393 atomic_dec_and_test()
394 ... refcnt drops to 1 ...
395 atomic_dec_and_test()
396 ... refcount drops to 0 ...
397 obj_destroy()
398 BUG() triggers since obj->active
399 still seen as one
400 obj->active update visibility occurs
401
402With the memory barrier semantics required of the atomic_t operations
403which return values, the above sequence of memory visibility can never
404happen. Specifically, in the above case the atomic_dec_and_test()
405counter decrement would not become globally visible until the
406obj->active update does.
407
408As a historical note, 32-bit Sparc used to only allow usage of
Francis Galieguea33f3222010-04-23 00:08:02 +020040924-bits of its atomic_t type. This was because it used 8 bits
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410as a spinlock for SMP safety. Sparc32 lacked a "compare and swap"
411type instruction. However, 32-bit Sparc has since been moved over
412to a "hash table of spinlocks" scheme, that allows the full 32-bit
413counter to be realized. Essentially, an array of spinlocks are
414indexed into based upon the address of the atomic_t being operated
415on, and that lock protects the atomic operation. Parisc uses the
416same scheme.
417
418Another note is that the atomic_t operations returning values are
419extremely slow on an old 386.
420
421We will now cover the atomic bitmask operations. You will find that
422their SMP and memory barrier semantics are similar in shape and scope
423to the atomic_t ops above.
424
425Native atomic bit operations are defined to operate on objects aligned
426to the size of an "unsigned long" C data type, and are least of that
427size. The endianness of the bits within each "unsigned long" are the
428native endianness of the cpu.
429
Michael Hayesa0ebb3f2006-06-26 18:27:35 +0200430 void set_bit(unsigned long nr, volatile unsigned long *addr);
431 void clear_bit(unsigned long nr, volatile unsigned long *addr);
432 void change_bit(unsigned long nr, volatile unsigned long *addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434These routines set, clear, and change, respectively, the bit number
435indicated by "nr" on the bit mask pointed to by "ADDR".
436
437They must execute atomically, yet there are no implicit memory barrier
438semantics required of these interfaces.
439
Michael Hayesa0ebb3f2006-06-26 18:27:35 +0200440 int test_and_set_bit(unsigned long nr, volatile unsigned long *addr);
441 int test_and_clear_bit(unsigned long nr, volatile unsigned long *addr);
442 int test_and_change_bit(unsigned long nr, volatile unsigned long *addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444Like the above, except that these routines return a boolean which
445indicates whether the changed bit was set _BEFORE_ the atomic bit
446operation.
447
448WARNING! It is incredibly important that the value be a boolean,
449ie. "0" or "1". Do not try to be fancy and save a few instructions by
450declaring the above to return "long" and just returning something like
451"old_val & mask" because that will not work.
452
453For one thing, this return value gets truncated to int in many code
454paths using these interfaces, so on 64-bit if the bit is set in the
455upper 32-bits then testers will never see that.
456
457One great example of where this problem crops up are the thread_info
458flag operations. Routines such as test_and_set_ti_thread_flag() chop
459the return value into an int. There are other places where things
460like this occur as well.
461
462These routines, like the atomic_t counter operations returning values,
463require explicit memory barrier semantics around their execution. All
464memory operations before the atomic bit operation call must be made
465visible globally before the atomic bit operation is made visible.
466Likewise, the atomic bit operation must be visible globally before any
467subsequent memory operation is made visible. For example:
468
469 obj->dead = 1;
470 if (test_and_set_bit(0, &obj->flags))
471 /* ... */;
472 obj->killed = 1;
473
Michael Hayesa0ebb3f2006-06-26 18:27:35 +0200474The implementation of test_and_set_bit() must guarantee that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475"obj->dead = 1;" is visible to cpus before the atomic memory operation
476done by test_and_set_bit() becomes visible. Likewise, the atomic
477memory operation done by test_and_set_bit() must become visible before
478"obj->killed = 1;" is visible.
479
480Finally there is the basic operation:
481
482 int test_bit(unsigned long nr, __const__ volatile unsigned long *addr);
483
484Which returns a boolean indicating if bit "nr" is set in the bitmask
485pointed to by "addr".
486
Peter Zijlstra1b156112014-03-13 19:00:35 +0100487If explicit memory barriers are required around {set,clear}_bit() (which do
488not return a value, and thus does not need to provide memory barrier
489semantics), two interfaces are provided:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Peter Zijlstra1b156112014-03-13 19:00:35 +0100491 void smp_mb__before_atomic(void);
492 void smp_mb__after_atomic(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494They are used as follows, and are akin to their atomic_t operation
495brothers:
496
497 /* All memory operations before this call will
498 * be globally visible before the clear_bit().
499 */
Peter Zijlstra1b156112014-03-13 19:00:35 +0100500 smp_mb__before_atomic();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 clear_bit( ... );
502
503 /* The clear_bit() will be visible before all
504 * subsequent memory operations.
505 */
Peter Zijlstra1b156112014-03-13 19:00:35 +0100506 smp_mb__after_atomic();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Nick Piggin26333572007-10-18 03:06:39 -0700508There are two special bitops with lock barrier semantics (acquire/release,
509same as spinlocks). These operate in the same way as their non-_lock/unlock
510postfixed variants, except that they are to provide acquire/release semantics,
511respectively. This means they can be used for bit_spin_trylock and
512bit_spin_unlock type operations without specifying any more barriers.
513
514 int test_and_set_bit_lock(unsigned long nr, unsigned long *addr);
515 void clear_bit_unlock(unsigned long nr, unsigned long *addr);
516 void __clear_bit_unlock(unsigned long nr, unsigned long *addr);
517
518The __clear_bit_unlock version is non-atomic, however it still implements
519unlock barrier semantics. This can be useful if the lock itself is protecting
520the other bits in the word.
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522Finally, there are non-atomic versions of the bitmask operations
523provided. They are used in contexts where some other higher-level SMP
524locking scheme is being used to protect the bitmask, and thus less
525expensive non-atomic operations may be used in the implementation.
526They have names similar to the above bitmask operation interfaces,
527except that two underscores are prefixed to the interface name.
528
529 void __set_bit(unsigned long nr, volatile unsigned long *addr);
530 void __clear_bit(unsigned long nr, volatile unsigned long *addr);
531 void __change_bit(unsigned long nr, volatile unsigned long *addr);
532 int __test_and_set_bit(unsigned long nr, volatile unsigned long *addr);
533 int __test_and_clear_bit(unsigned long nr, volatile unsigned long *addr);
534 int __test_and_change_bit(unsigned long nr, volatile unsigned long *addr);
535
536These non-atomic variants also do not require any special memory
537barrier semantics.
538
539The routines xchg() and cmpxchg() need the same exact memory barriers
540as the atomic and bit operations returning values.
541
542Spinlocks and rwlocks have memory barrier expectations as well.
543The rule to follow is simple:
544
5451) When acquiring a lock, the implementation must make it globally
546 visible before any subsequent memory operation.
547
5482) When releasing a lock, the implementation must make it such that
549 all previous memory operations are globally visible before the
550 lock release.
551
552Which finally brings us to _atomic_dec_and_lock(). There is an
553architecture-neutral version implemented in lib/dec_and_lock.c,
554but most platforms will wish to optimize this in assembler.
555
556 int _atomic_dec_and_lock(atomic_t *atomic, spinlock_t *lock);
557
558Atomically decrement the given counter, and if will drop to zero
559atomically acquire the given spinlock and perform the decrement
560of the counter to zero. If it does not drop to zero, do nothing
561with the spinlock.
562
563It is actually pretty simple to get the memory barrier correct.
564Simply satisfy the spinlock grab requirements, which is make
565sure the spinlock operation is globally visible before any
566subsequent memory operation.
567
568We can demonstrate this operation more clearly if we define
569an abstract atomic operation:
570
571 long cas(long *mem, long old, long new);
572
573"cas" stands for "compare and swap". It atomically:
574
5751) Compares "old" with the value currently at "mem".
5762) If they are equal, "new" is written to "mem".
5773) Regardless, the current value at "mem" is returned.
578
579As an example usage, here is what an atomic counter update
580might look like:
581
582void example_atomic_inc(long *counter)
583{
584 long old, new, ret;
585
586 while (1) {
587 old = *counter;
588 new = old + 1;
589
590 ret = cas(counter, old, new);
591 if (ret == old)
592 break;
593 }
594}
595
596Let's use cas() in order to build a pseudo-C atomic_dec_and_lock():
597
598int _atomic_dec_and_lock(atomic_t *atomic, spinlock_t *lock)
599{
600 long old, new, ret;
601 int went_to_zero;
602
603 went_to_zero = 0;
604 while (1) {
605 old = atomic_read(atomic);
606 new = old - 1;
607 if (new == 0) {
608 went_to_zero = 1;
609 spin_lock(lock);
610 }
611 ret = cas(atomic, old, new);
612 if (ret == old)
613 break;
614 if (went_to_zero) {
615 spin_unlock(lock);
616 went_to_zero = 0;
617 }
618 }
619
620 return went_to_zero;
621}
622
623Now, as far as memory barriers go, as long as spin_lock()
624strictly orders all subsequent memory operations (including
625the cas()) with respect to itself, things will be fine.
626
Michael Hayesa0ebb3f2006-06-26 18:27:35 +0200627Said another way, _atomic_dec_and_lock() must guarantee that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628a counter dropping to zero is never made visible before the
629spinlock being acquired.
630
631Note that this also means that for the case where the counter
632is not dropping to zero, there are no memory ordering
633requirements.