local64.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. #ifndef _ASM_GENERIC_LOCAL64_H
  2. #define _ASM_GENERIC_LOCAL64_H
  3. #include <linux/percpu.h>
  4. #include <asm/types.h>
  5. /*
  6. * A signed long type for operations which are atomic for a single CPU.
  7. * Usually used in combination with per-cpu variables.
  8. *
  9. * This is the default implementation, which uses atomic64_t. Which is
  10. * rather pointless. The whole point behind local64_t is that some processors
  11. * can perform atomic adds and subtracts in a manner which is atomic wrt IRQs
  12. * running on this CPU. local64_t allows exploitation of such capabilities.
  13. */
  14. /* Implement in terms of atomics. */
  15. #if BITS_PER_LONG == 64
  16. #include <asm/local.h>
  17. typedef struct {
  18. local_t a;
  19. } local64_t;
  20. #define LOCAL64_INIT(i) { LOCAL_INIT(i) }
  21. #define local64_read(l) local_read(&(l)->a)
  22. #define local64_set(l,i) local_set((&(l)->a),(i))
  23. #define local64_inc(l) local_inc(&(l)->a)
  24. #define local64_dec(l) local_dec(&(l)->a)
  25. #define local64_add(i,l) local_add((i),(&(l)->a))
  26. #define local64_sub(i,l) local_sub((i),(&(l)->a))
  27. #define local64_sub_and_test(i, l) local_sub_and_test((i), (&(l)->a))
  28. #define local64_dec_and_test(l) local_dec_and_test(&(l)->a)
  29. #define local64_inc_and_test(l) local_inc_and_test(&(l)->a)
  30. #define local64_add_negative(i, l) local_add_negative((i), (&(l)->a))
  31. #define local64_add_return(i, l) local_add_return((i), (&(l)->a))
  32. #define local64_sub_return(i, l) local_sub_return((i), (&(l)->a))
  33. #define local64_inc_return(l) local_inc_return(&(l)->a)
  34. #define local64_cmpxchg(l, o, n) local_cmpxchg((&(l)->a), (o), (n))
  35. #define local64_xchg(l, n) local_xchg((&(l)->a), (n))
  36. #define local64_add_unless(l, _a, u) local_add_unless((&(l)->a), (_a), (u))
  37. #define local64_inc_not_zero(l) local_inc_not_zero(&(l)->a)
  38. /* Non-atomic variants, ie. preemption disabled and won't be touched
  39. * in interrupt, etc. Some archs can optimize this case well. */
  40. #define __local64_inc(l) local64_set((l), local64_read(l) + 1)
  41. #define __local64_dec(l) local64_set((l), local64_read(l) - 1)
  42. #define __local64_add(i,l) local64_set((l), local64_read(l) + (i))
  43. #define __local64_sub(i,l) local64_set((l), local64_read(l) - (i))
  44. #else /* BITS_PER_LONG != 64 */
  45. #include <linux/atomic.h>
  46. /* Don't use typedef: don't want them to be mixed with atomic_t's. */
  47. typedef struct {
  48. atomic64_t a;
  49. } local64_t;
  50. #define LOCAL64_INIT(i) { ATOMIC_LONG_INIT(i) }
  51. #define local64_read(l) atomic64_read(&(l)->a)
  52. #define local64_set(l,i) atomic64_set((&(l)->a),(i))
  53. #define local64_inc(l) atomic64_inc(&(l)->a)
  54. #define local64_dec(l) atomic64_dec(&(l)->a)
  55. #define local64_add(i,l) atomic64_add((i),(&(l)->a))
  56. #define local64_sub(i,l) atomic64_sub((i),(&(l)->a))
  57. #define local64_sub_and_test(i, l) atomic64_sub_and_test((i), (&(l)->a))
  58. #define local64_dec_and_test(l) atomic64_dec_and_test(&(l)->a)
  59. #define local64_inc_and_test(l) atomic64_inc_and_test(&(l)->a)
  60. #define local64_add_negative(i, l) atomic64_add_negative((i), (&(l)->a))
  61. #define local64_add_return(i, l) atomic64_add_return((i), (&(l)->a))
  62. #define local64_sub_return(i, l) atomic64_sub_return((i), (&(l)->a))
  63. #define local64_inc_return(l) atomic64_inc_return(&(l)->a)
  64. #define local64_cmpxchg(l, o, n) atomic64_cmpxchg((&(l)->a), (o), (n))
  65. #define local64_xchg(l, n) atomic64_xchg((&(l)->a), (n))
  66. #define local64_add_unless(l, _a, u) atomic64_add_unless((&(l)->a), (_a), (u))
  67. #define local64_inc_not_zero(l) atomic64_inc_not_zero(&(l)->a)
  68. /* Non-atomic variants, ie. preemption disabled and won't be touched
  69. * in interrupt, etc. Some archs can optimize this case well. */
  70. #define __local64_inc(l) local64_set((l), local64_read(l) + 1)
  71. #define __local64_dec(l) local64_set((l), local64_read(l) - 1)
  72. #define __local64_add(i,l) local64_set((l), local64_read(l) + (i))
  73. #define __local64_sub(i,l) local64_set((l), local64_read(l) - (i))
  74. #endif /* BITS_PER_LONG != 64 */
  75. #endif /* _ASM_GENERIC_LOCAL64_H */