blob: d605dc268e798b5bb9e0a5df36de3e5aa88d0e5f [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_ATOMIC_64_H
2#define _ASM_X86_ATOMIC_64_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
Matthew Wilcoxea4354672009-01-06 14:40:39 -08004#include <linux/types.h>
Gerd Hoffmannd167a512006-06-26 13:56:16 +02005#include <asm/alternative.h>
Jeff Dikea436ed92007-05-08 00:35:02 -07006#include <asm/cmpxchg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
Linus Torvalds1da177e2005-04-16 15:20:36 -07008/*
9 * Atomic operations that C can't guarantee us. Useful for
10 * resource counting etc..
11 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#define ATOMIC_INIT(i) { (i) }
14
15/**
16 * atomic_read - read atomic variable
17 * @v: pointer of type atomic_t
Joe Perches7edb3cd2008-03-23 01:01:42 -070018 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * Atomically reads the value of @v.
Joe Perches7edb3cd2008-03-23 01:01:42 -070020 */
Paul Mackerras8e049ef2009-07-02 08:57:12 +100021static inline int atomic_read(const atomic_t *v)
22{
23 return v->counter;
24}
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26/**
27 * atomic_set - set atomic variable
28 * @v: pointer of type atomic_t
29 * @i: required value
Joe Perches7edb3cd2008-03-23 01:01:42 -070030 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 * Atomically sets the value of @v to @i.
Joe Perches7edb3cd2008-03-23 01:01:42 -070032 */
Paul Mackerras8e049ef2009-07-02 08:57:12 +100033static inline void atomic_set(atomic_t *v, int i)
34{
35 v->counter = i;
36}
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/**
39 * atomic_add - add integer to atomic variable
40 * @i: integer value to add
41 * @v: pointer of type atomic_t
Joe Perches7edb3cd2008-03-23 01:01:42 -070042 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * Atomically adds @i to @v.
44 */
Joe Perches7edb3cd2008-03-23 01:01:42 -070045static inline void atomic_add(int i, atomic_t *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
Joe Perches7edb3cd2008-03-23 01:01:42 -070047 asm volatile(LOCK_PREFIX "addl %1,%0"
48 : "=m" (v->counter)
49 : "ir" (i), "m" (v->counter));
Linus Torvalds1da177e2005-04-16 15:20:36 -070050}
51
52/**
53 * atomic_sub - subtract the atomic variable
54 * @i: integer value to subtract
55 * @v: pointer of type atomic_t
Joe Perches7edb3cd2008-03-23 01:01:42 -070056 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 * Atomically subtracts @i from @v.
58 */
Joe Perches7edb3cd2008-03-23 01:01:42 -070059static inline void atomic_sub(int i, atomic_t *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
Joe Perches7edb3cd2008-03-23 01:01:42 -070061 asm volatile(LOCK_PREFIX "subl %1,%0"
62 : "=m" (v->counter)
63 : "ir" (i), "m" (v->counter));
Linus Torvalds1da177e2005-04-16 15:20:36 -070064}
65
66/**
67 * atomic_sub_and_test - subtract value from variable and test result
68 * @i: integer value to subtract
69 * @v: pointer of type atomic_t
Joe Perches7edb3cd2008-03-23 01:01:42 -070070 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 * Atomically subtracts @i from @v and returns
72 * true if the result is zero, or false for all
73 * other cases.
74 */
Joe Perches7edb3cd2008-03-23 01:01:42 -070075static inline int atomic_sub_and_test(int i, atomic_t *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
77 unsigned char c;
78
Joe Perches7edb3cd2008-03-23 01:01:42 -070079 asm volatile(LOCK_PREFIX "subl %2,%0; sete %1"
80 : "=m" (v->counter), "=qm" (c)
81 : "ir" (i), "m" (v->counter) : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 return c;
83}
84
85/**
86 * atomic_inc - increment atomic variable
87 * @v: pointer of type atomic_t
Joe Perches7edb3cd2008-03-23 01:01:42 -070088 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 * Atomically increments @v by 1.
Joe Perches7edb3cd2008-03-23 01:01:42 -070090 */
91static inline void atomic_inc(atomic_t *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Joe Perches7edb3cd2008-03-23 01:01:42 -070093 asm volatile(LOCK_PREFIX "incl %0"
94 : "=m" (v->counter)
95 : "m" (v->counter));
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
98/**
99 * atomic_dec - decrement atomic variable
100 * @v: pointer of type atomic_t
Joe Perches7edb3cd2008-03-23 01:01:42 -0700101 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 * Atomically decrements @v by 1.
Joe Perches7edb3cd2008-03-23 01:01:42 -0700103 */
104static inline void atomic_dec(atomic_t *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
Joe Perches7edb3cd2008-03-23 01:01:42 -0700106 asm volatile(LOCK_PREFIX "decl %0"
107 : "=m" (v->counter)
108 : "m" (v->counter));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109}
110
111/**
112 * atomic_dec_and_test - decrement and test
113 * @v: pointer of type atomic_t
Joe Perches7edb3cd2008-03-23 01:01:42 -0700114 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * Atomically decrements @v by 1 and
116 * returns true if the result is 0, or false for all other
117 * cases.
Joe Perches7edb3cd2008-03-23 01:01:42 -0700118 */
119static inline int atomic_dec_and_test(atomic_t *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
121 unsigned char c;
122
Joe Perches7edb3cd2008-03-23 01:01:42 -0700123 asm volatile(LOCK_PREFIX "decl %0; sete %1"
124 : "=m" (v->counter), "=qm" (c)
125 : "m" (v->counter) : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return c != 0;
127}
128
129/**
Joe Perches7edb3cd2008-03-23 01:01:42 -0700130 * atomic_inc_and_test - increment and test
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 * @v: pointer of type atomic_t
Joe Perches7edb3cd2008-03-23 01:01:42 -0700132 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * Atomically increments @v by 1
134 * and returns true if the result is zero, or false for all
135 * other cases.
Joe Perches7edb3cd2008-03-23 01:01:42 -0700136 */
137static inline int atomic_inc_and_test(atomic_t *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
139 unsigned char c;
140
Joe Perches7edb3cd2008-03-23 01:01:42 -0700141 asm volatile(LOCK_PREFIX "incl %0; sete %1"
142 : "=m" (v->counter), "=qm" (c)
143 : "m" (v->counter) : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return c != 0;
145}
146
147/**
148 * atomic_add_negative - add and test if negative
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 * @i: integer value to add
Hugh Dickins7c72aaf2005-11-23 13:37:40 -0800150 * @v: pointer of type atomic_t
Joe Perches7edb3cd2008-03-23 01:01:42 -0700151 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 * Atomically adds @i to @v and returns true
153 * if the result is negative, or false when
154 * result is greater than or equal to zero.
Joe Perches7edb3cd2008-03-23 01:01:42 -0700155 */
156static inline int atomic_add_negative(int i, atomic_t *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
158 unsigned char c;
159
Joe Perches7edb3cd2008-03-23 01:01:42 -0700160 asm volatile(LOCK_PREFIX "addl %2,%0; sets %1"
161 : "=m" (v->counter), "=qm" (c)
162 : "ir" (i), "m" (v->counter) : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 return c;
164}
165
Hugh Dickins7c72aaf2005-11-23 13:37:40 -0800166/**
167 * atomic_add_return - add and return
168 * @i: integer value to add
169 * @v: pointer of type atomic_t
170 *
171 * Atomically adds @i to @v and returns @i + @v
172 */
Joe Perches7edb3cd2008-03-23 01:01:42 -0700173static inline int atomic_add_return(int i, atomic_t *v)
Hugh Dickins7c72aaf2005-11-23 13:37:40 -0800174{
175 int __i = i;
Joe Perches7edb3cd2008-03-23 01:01:42 -0700176 asm volatile(LOCK_PREFIX "xaddl %0, %1"
177 : "+r" (i), "+m" (v->counter)
178 : : "memory");
Hugh Dickins7c72aaf2005-11-23 13:37:40 -0800179 return i + __i;
180}
181
Joe Perches7edb3cd2008-03-23 01:01:42 -0700182static inline int atomic_sub_return(int i, atomic_t *v)
Hugh Dickins7c72aaf2005-11-23 13:37:40 -0800183{
Joe Perches7edb3cd2008-03-23 01:01:42 -0700184 return atomic_add_return(-i, v);
Hugh Dickins7c72aaf2005-11-23 13:37:40 -0800185}
186
Joe Perches7edb3cd2008-03-23 01:01:42 -0700187#define atomic_inc_return(v) (atomic_add_return(1, v))
188#define atomic_dec_return(v) (atomic_sub_return(1, v))
Hugh Dickins7c72aaf2005-11-23 13:37:40 -0800189
Matthew Wilcoxea4354672009-01-06 14:40:39 -0800190/* The 64-bit atomic type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192#define ATOMIC64_INIT(i) { (i) }
193
194/**
195 * atomic64_read - read atomic64 variable
196 * @v: pointer of type atomic64_t
197 *
198 * Atomically reads the value of @v.
199 * Doesn't imply a read memory barrier.
200 */
Paul Mackerras8e049ef2009-07-02 08:57:12 +1000201static inline long atomic64_read(const atomic64_t *v)
202{
203 return v->counter;
204}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206/**
207 * atomic64_set - set atomic64 variable
208 * @v: pointer to type atomic64_t
209 * @i: required value
210 *
211 * Atomically sets the value of @v to @i.
212 */
Paul Mackerras8e049ef2009-07-02 08:57:12 +1000213static inline void atomic64_set(atomic64_t *v, long i)
214{
215 v->counter = i;
216}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218/**
219 * atomic64_add - add integer to atomic64 variable
220 * @i: integer value to add
221 * @v: pointer to type atomic64_t
222 *
223 * Atomically adds @i to @v.
224 */
Joe Perches7edb3cd2008-03-23 01:01:42 -0700225static inline void atomic64_add(long i, atomic64_t *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Joe Perches7edb3cd2008-03-23 01:01:42 -0700227 asm volatile(LOCK_PREFIX "addq %1,%0"
228 : "=m" (v->counter)
Mathieu Desnoyers3c3b5c32008-08-16 03:39:26 -0400229 : "er" (i), "m" (v->counter));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231
232/**
233 * atomic64_sub - subtract the atomic64 variable
234 * @i: integer value to subtract
235 * @v: pointer to type atomic64_t
236 *
237 * Atomically subtracts @i from @v.
238 */
Joe Perches7edb3cd2008-03-23 01:01:42 -0700239static inline void atomic64_sub(long i, atomic64_t *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Joe Perches7edb3cd2008-03-23 01:01:42 -0700241 asm volatile(LOCK_PREFIX "subq %1,%0"
242 : "=m" (v->counter)
Mathieu Desnoyers3c3b5c32008-08-16 03:39:26 -0400243 : "er" (i), "m" (v->counter));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
245
246/**
247 * atomic64_sub_and_test - subtract value from variable and test result
248 * @i: integer value to subtract
249 * @v: pointer to type atomic64_t
250 *
251 * Atomically subtracts @i from @v and returns
252 * true if the result is zero, or false for all
253 * other cases.
254 */
Joe Perches7edb3cd2008-03-23 01:01:42 -0700255static inline int atomic64_sub_and_test(long i, atomic64_t *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
257 unsigned char c;
258
Joe Perches7edb3cd2008-03-23 01:01:42 -0700259 asm volatile(LOCK_PREFIX "subq %2,%0; sete %1"
260 : "=m" (v->counter), "=qm" (c)
Mathieu Desnoyers3c3b5c32008-08-16 03:39:26 -0400261 : "er" (i), "m" (v->counter) : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return c;
263}
264
265/**
266 * atomic64_inc - increment atomic64 variable
267 * @v: pointer to type atomic64_t
268 *
269 * Atomically increments @v by 1.
270 */
Joe Perches7edb3cd2008-03-23 01:01:42 -0700271static inline void atomic64_inc(atomic64_t *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Joe Perches7edb3cd2008-03-23 01:01:42 -0700273 asm volatile(LOCK_PREFIX "incq %0"
274 : "=m" (v->counter)
275 : "m" (v->counter));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
278/**
279 * atomic64_dec - decrement atomic64 variable
280 * @v: pointer to type atomic64_t
281 *
282 * Atomically decrements @v by 1.
283 */
Joe Perches7edb3cd2008-03-23 01:01:42 -0700284static inline void atomic64_dec(atomic64_t *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Joe Perches7edb3cd2008-03-23 01:01:42 -0700286 asm volatile(LOCK_PREFIX "decq %0"
287 : "=m" (v->counter)
288 : "m" (v->counter));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
291/**
292 * atomic64_dec_and_test - decrement and test
293 * @v: pointer to type atomic64_t
294 *
295 * Atomically decrements @v by 1 and
296 * returns true if the result is 0, or false for all other
297 * cases.
298 */
Joe Perches7edb3cd2008-03-23 01:01:42 -0700299static inline int atomic64_dec_and_test(atomic64_t *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
301 unsigned char c;
302
Joe Perches7edb3cd2008-03-23 01:01:42 -0700303 asm volatile(LOCK_PREFIX "decq %0; sete %1"
304 : "=m" (v->counter), "=qm" (c)
305 : "m" (v->counter) : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return c != 0;
307}
308
309/**
310 * atomic64_inc_and_test - increment and test
311 * @v: pointer to type atomic64_t
312 *
313 * Atomically increments @v by 1
314 * and returns true if the result is zero, or false for all
315 * other cases.
316 */
Joe Perches7edb3cd2008-03-23 01:01:42 -0700317static inline int atomic64_inc_and_test(atomic64_t *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 unsigned char c;
320
Joe Perches7edb3cd2008-03-23 01:01:42 -0700321 asm volatile(LOCK_PREFIX "incq %0; sete %1"
322 : "=m" (v->counter), "=qm" (c)
323 : "m" (v->counter) : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return c != 0;
325}
326
327/**
328 * atomic64_add_negative - add and test if negative
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 * @i: integer value to add
Hugh Dickins7c72aaf2005-11-23 13:37:40 -0800330 * @v: pointer to type atomic64_t
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 *
332 * Atomically adds @i to @v and returns true
333 * if the result is negative, or false when
334 * result is greater than or equal to zero.
335 */
Joe Perches7edb3cd2008-03-23 01:01:42 -0700336static inline int atomic64_add_negative(long i, atomic64_t *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 unsigned char c;
339
Joe Perches7edb3cd2008-03-23 01:01:42 -0700340 asm volatile(LOCK_PREFIX "addq %2,%0; sets %1"
341 : "=m" (v->counter), "=qm" (c)
Mathieu Desnoyers3c3b5c32008-08-16 03:39:26 -0400342 : "er" (i), "m" (v->counter) : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return c;
344}
345
346/**
Hugh Dickins7c72aaf2005-11-23 13:37:40 -0800347 * atomic64_add_return - add and return
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 * @i: integer value to add
Hugh Dickins7c72aaf2005-11-23 13:37:40 -0800349 * @v: pointer to type atomic64_t
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 *
351 * Atomically adds @i to @v and returns @i + @v
352 */
Joe Perches7edb3cd2008-03-23 01:01:42 -0700353static inline long atomic64_add_return(long i, atomic64_t *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Hugh Dickins7c72aaf2005-11-23 13:37:40 -0800355 long __i = i;
Joe Perches7edb3cd2008-03-23 01:01:42 -0700356 asm volatile(LOCK_PREFIX "xaddq %0, %1;"
357 : "+r" (i), "+m" (v->counter)
358 : : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return i + __i;
360}
361
Joe Perches7edb3cd2008-03-23 01:01:42 -0700362static inline long atomic64_sub_return(long i, atomic64_t *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Joe Perches7edb3cd2008-03-23 01:01:42 -0700364 return atomic64_add_return(-i, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
Joe Perches7edb3cd2008-03-23 01:01:42 -0700367#define atomic64_inc_return(v) (atomic64_add_return(1, (v)))
368#define atomic64_dec_return(v) (atomic64_sub_return(1, (v)))
Hugh Dickins7c72aaf2005-11-23 13:37:40 -0800369
Paul Mackerras8e049ef2009-07-02 08:57:12 +1000370static inline long atomic64_cmpxchg(atomic64_t *v, long old, long new)
371{
372 return cmpxchg(&v->counter, old, new);
373}
Mathieu Desnoyers79d365a2007-05-08 00:34:36 -0700374
Paul Mackerras8e049ef2009-07-02 08:57:12 +1000375static inline long atomic64_xchg(atomic64_t *v, long new)
376{
377 return xchg(&v->counter, new);
378}
379
380static inline long atomic_cmpxchg(atomic_t *v, int old, int new)
381{
382 return cmpxchg(&v->counter, old, new);
383}
384
385static inline long atomic_xchg(atomic_t *v, int new)
386{
387 return xchg(&v->counter, new);
388}
Nick Piggin4a6dae62005-11-13 16:07:24 -0800389
Nick Piggin8426e1f2005-11-13 16:07:25 -0800390/**
391 * atomic_add_unless - add unless the number is a given value
392 * @v: pointer of type atomic_t
393 * @a: the amount to add to v...
394 * @u: ...unless v is equal to u.
395 *
396 * Atomically adds @a to @v, so long as it was not @u.
397 * Returns non-zero if @v was not @u, and zero otherwise.
398 */
Joe Perches7edb3cd2008-03-23 01:01:42 -0700399static inline int atomic_add_unless(atomic_t *v, int a, int u)
Mathieu Desnoyers2856f5e2007-05-08 00:34:38 -0700400{
401 int c, old;
402 c = atomic_read(v);
403 for (;;) {
404 if (unlikely(c == (u)))
405 break;
406 old = atomic_cmpxchg((v), c, c + (a));
407 if (likely(old == c))
408 break;
409 c = old;
410 }
411 return c != (u);
412}
413
Nick Piggin8426e1f2005-11-13 16:07:25 -0800414#define atomic_inc_not_zero(v) atomic_add_unless((v), 1, 0)
415
Mathieu Desnoyers79d365a2007-05-08 00:34:36 -0700416/**
417 * atomic64_add_unless - add unless the number is a given value
418 * @v: pointer of type atomic64_t
419 * @a: the amount to add to v...
420 * @u: ...unless v is equal to u.
421 *
422 * Atomically adds @a to @v, so long as it was not @u.
423 * Returns non-zero if @v was not @u, and zero otherwise.
424 */
Joe Perches7edb3cd2008-03-23 01:01:42 -0700425static inline int atomic64_add_unless(atomic64_t *v, long a, long u)
Mathieu Desnoyers2856f5e2007-05-08 00:34:38 -0700426{
427 long c, old;
428 c = atomic64_read(v);
429 for (;;) {
430 if (unlikely(c == (u)))
431 break;
432 old = atomic64_cmpxchg((v), c, c + (a));
433 if (likely(old == c))
434 break;
435 c = old;
436 }
437 return c != (u);
438}
439
Cliff Wickman73e991f2008-06-04 15:33:17 -0500440/**
441 * atomic_inc_short - increment of a short integer
442 * @v: pointer to type int
443 *
444 * Atomically adds 1 to @v
445 * Returns the new value of @u
446 */
447static inline short int atomic_inc_short(short int *v)
448{
449 asm(LOCK_PREFIX "addw $1, %0" : "+m" (*v));
450 return *v;
451}
452
453/**
454 * atomic_or_long - OR of two long integers
455 * @v1: pointer to type unsigned long
456 * @v2: pointer to type unsigned long
457 *
458 * Atomically ORs @v1 and @v2
459 * Returns the result of the OR
460 */
461static inline void atomic_or_long(unsigned long *v1, unsigned long v2)
462{
463 asm(LOCK_PREFIX "orq %1, %0" : "+m" (*v1) : "r" (v2));
464}
465
Mathieu Desnoyers79d365a2007-05-08 00:34:36 -0700466#define atomic64_inc_not_zero(v) atomic64_add_unless((v), 1, 0)
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468/* These are x86-specific, used by some header files */
Joe Perches7edb3cd2008-03-23 01:01:42 -0700469#define atomic_clear_mask(mask, addr) \
470 asm volatile(LOCK_PREFIX "andl %0,%1" \
471 : : "r" (~(mask)), "m" (*(addr)) : "memory")
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Joe Perches7edb3cd2008-03-23 01:01:42 -0700473#define atomic_set_mask(mask, addr) \
474 asm volatile(LOCK_PREFIX "orl %0,%1" \
475 : : "r" ((unsigned)(mask)), "m" (*(addr)) \
476 : "memory")
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478/* Atomic operations are already serializing on x86 */
479#define smp_mb__before_atomic_dec() barrier()
480#define smp_mb__after_atomic_dec() barrier()
481#define smp_mb__before_atomic_inc() barrier()
482#define smp_mb__after_atomic_inc() barrier()
483
Arnd Bergmann72099ed2009-05-13 22:56:29 +0000484#include <asm-generic/atomic-long.h>
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700485#endif /* _ASM_X86_ATOMIC_64_H */