percpu.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. #ifndef _ASM_GENERIC_PERCPU_H_
  2. #define _ASM_GENERIC_PERCPU_H_
  3. #include <linux/compiler.h>
  4. #include <linux/threads.h>
  5. /*
  6. * Determine the real variable name from the name visible in the
  7. * kernel sources.
  8. */
  9. #define per_cpu_var(var) per_cpu__##var
  10. #ifdef CONFIG_SMP
  11. /*
  12. * per_cpu_offset() is the offset that has to be added to a
  13. * percpu variable to get to the instance for a certain processor.
  14. *
  15. * Most arches use the __per_cpu_offset array for those offsets but
  16. * some arches have their own ways of determining the offset (x86_64, s390).
  17. */
  18. #ifndef __per_cpu_offset
  19. extern unsigned long __per_cpu_offset[NR_CPUS];
  20. #define per_cpu_offset(x) (__per_cpu_offset[x])
  21. #endif
  22. /*
  23. * Determine the offset for the currently active processor.
  24. * An arch may define __my_cpu_offset to provide a more effective
  25. * means of obtaining the offset to the per cpu variables of the
  26. * current processor.
  27. */
  28. #ifndef __my_cpu_offset
  29. #define __my_cpu_offset per_cpu_offset(raw_smp_processor_id())
  30. #endif
  31. #ifdef CONFIG_DEBUG_PREEMPT
  32. #define my_cpu_offset per_cpu_offset(smp_processor_id())
  33. #else
  34. #define my_cpu_offset __my_cpu_offset
  35. #endif
  36. /*
  37. * Add a offset to a pointer but keep the pointer as is.
  38. *
  39. * Only S390 provides its own means of moving the pointer.
  40. */
  41. #ifndef SHIFT_PERCPU_PTR
  42. #define SHIFT_PERCPU_PTR(__p, __offset) RELOC_HIDE((__p), (__offset))
  43. #endif
  44. /*
  45. * A percpu variable may point to a discarded regions. The following are
  46. * established ways to produce a usable pointer from the percpu variable
  47. * offset.
  48. */
  49. #define per_cpu(var, cpu) \
  50. (*SHIFT_PERCPU_PTR(&per_cpu_var(var), per_cpu_offset(cpu)))
  51. #define __get_cpu_var(var) \
  52. (*SHIFT_PERCPU_PTR(&per_cpu_var(var), my_cpu_offset))
  53. #define __raw_get_cpu_var(var) \
  54. (*SHIFT_PERCPU_PTR(&per_cpu_var(var), __my_cpu_offset))
  55. #ifdef CONFIG_HAVE_SETUP_PER_CPU_AREA
  56. extern void setup_per_cpu_areas(void);
  57. #endif
  58. #else /* ! SMP */
  59. #define per_cpu(var, cpu) (*((void)(cpu), &per_cpu_var(var)))
  60. #define __get_cpu_var(var) per_cpu_var(var)
  61. #define __raw_get_cpu_var(var) per_cpu_var(var)
  62. #endif /* SMP */
  63. #ifndef PER_CPU_ATTRIBUTES
  64. #define PER_CPU_ATTRIBUTES
  65. #endif
  66. #define DECLARE_PER_CPU(type, name) extern PER_CPU_ATTRIBUTES \
  67. __typeof__(type) per_cpu_var(name)
  68. /*
  69. * Optional methods for optimized non-lvalue per-cpu variable access.
  70. *
  71. * @var can be a percpu variable or a field of it and its size should
  72. * equal char, int or long. percpu_read() evaluates to a lvalue and
  73. * all others to void.
  74. *
  75. * These operations are guaranteed to be atomic w.r.t. preemption.
  76. * The generic versions use plain get/put_cpu_var(). Archs are
  77. * encouraged to implement single-instruction alternatives which don't
  78. * require preemption protection.
  79. */
  80. #ifndef percpu_read
  81. # define percpu_read(var) \
  82. ({ \
  83. typeof(per_cpu_var(var)) __tmp_var__; \
  84. __tmp_var__ = get_cpu_var(var); \
  85. put_cpu_var(var); \
  86. __tmp_var__; \
  87. })
  88. #endif
  89. #define __percpu_generic_to_op(var, val, op) \
  90. do { \
  91. get_cpu_var(var) op val; \
  92. put_cpu_var(var); \
  93. } while (0)
  94. #ifndef percpu_write
  95. # define percpu_write(var, val) __percpu_generic_to_op(var, (val), =)
  96. #endif
  97. #ifndef percpu_add
  98. # define percpu_add(var, val) __percpu_generic_to_op(var, (val), +=)
  99. #endif
  100. #ifndef percpu_sub
  101. # define percpu_sub(var, val) __percpu_generic_to_op(var, (val), -=)
  102. #endif
  103. #ifndef percpu_and
  104. # define percpu_and(var, val) __percpu_generic_to_op(var, (val), &=)
  105. #endif
  106. #ifndef percpu_or
  107. # define percpu_or(var, val) __percpu_generic_to_op(var, (val), |=)
  108. #endif
  109. #ifndef percpu_xor
  110. # define percpu_xor(var, val) __percpu_generic_to_op(var, (val), ^=)
  111. #endif
  112. #endif /* _ASM_GENERIC_PERCPU_H_ */