local.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. #ifndef _ARCH_X8664_LOCAL_H
  2. #define _ARCH_X8664_LOCAL_H
  3. #include <linux/percpu.h>
  4. typedef struct
  5. {
  6. volatile long counter;
  7. } local_t;
  8. #define LOCAL_INIT(i) { (i) }
  9. #define local_read(v) ((v)->counter)
  10. #define local_set(v,i) (((v)->counter) = (i))
  11. static inline void local_inc(local_t *v)
  12. {
  13. __asm__ __volatile__(
  14. "incq %0"
  15. :"=m" (v->counter)
  16. :"m" (v->counter));
  17. }
  18. static inline void local_dec(local_t *v)
  19. {
  20. __asm__ __volatile__(
  21. "decq %0"
  22. :"=m" (v->counter)
  23. :"m" (v->counter));
  24. }
  25. static inline void local_add(long i, local_t *v)
  26. {
  27. __asm__ __volatile__(
  28. "addq %1,%0"
  29. :"=m" (v->counter)
  30. :"ir" (i), "m" (v->counter));
  31. }
  32. static inline void local_sub(long i, local_t *v)
  33. {
  34. __asm__ __volatile__(
  35. "subq %1,%0"
  36. :"=m" (v->counter)
  37. :"ir" (i), "m" (v->counter));
  38. }
  39. /* On x86-64 these are better than the atomic variants on SMP kernels
  40. because they dont use a lock prefix. */
  41. #define __local_inc(l) local_inc(l)
  42. #define __local_dec(l) local_dec(l)
  43. #define __local_add(i,l) local_add((i),(l))
  44. #define __local_sub(i,l) local_sub((i),(l))
  45. /* Use these for per-cpu local_t variables: on some archs they are
  46. * much more efficient than these naive implementations. Note they take
  47. * a variable, not an address.
  48. *
  49. * This could be done better if we moved the per cpu data directly
  50. * after GS.
  51. */
  52. /* Need to disable preemption for the cpu local counters otherwise we could
  53. still access a variable of a previous CPU in a non atomic way. */
  54. #define cpu_local_wrap_v(v) \
  55. ({ local_t res__; \
  56. preempt_disable(); \
  57. res__ = (v); \
  58. preempt_enable(); \
  59. res__; })
  60. #define cpu_local_wrap(v) \
  61. ({ preempt_disable(); \
  62. v; \
  63. preempt_enable(); }) \
  64. #define cpu_local_read(v) cpu_local_wrap_v(local_read(&__get_cpu_var(v)))
  65. #define cpu_local_set(v, i) cpu_local_wrap(local_set(&__get_cpu_var(v), (i)))
  66. #define cpu_local_inc(v) cpu_local_wrap(local_inc(&__get_cpu_var(v)))
  67. #define cpu_local_dec(v) cpu_local_wrap(local_dec(&__get_cpu_var(v)))
  68. #define cpu_local_add(i, v) cpu_local_wrap(local_add((i), &__get_cpu_var(v)))
  69. #define cpu_local_sub(i, v) cpu_local_wrap(local_sub((i), &__get_cpu_var(v)))
  70. #define __cpu_local_inc(v) cpu_local_inc(v)
  71. #define __cpu_local_dec(v) cpu_local_dec(v)
  72. #define __cpu_local_add(i, v) cpu_local_add((i), (v))
  73. #define __cpu_local_sub(i, v) cpu_local_sub((i), (v))
  74. #endif /* _ARCH_I386_LOCAL_H */