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