local.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ASM_GENERIC_LOCAL_H
  2. #define _ASM_GENERIC_LOCAL_H
  3. #include <linux/config.h>
  4. #include <linux/percpu.h>
  5. #include <linux/hardirq.h>
  6. #include <asm/types.h>
  7. /* An unsigned long type for operations which are atomic for a single
  8.  * CPU.  Usually used in combination with per-cpu variables. */
  9. #if BITS_PER_LONG == 32
  10. /* Implement in terms of atomics. */
  11. /* Don't use typedef: don't want them to be mixed with atomic_t's. */
  12. typedef struct
  13. {
  14. atomic_t a;
  15. } local_t;
  16. #define LOCAL_INIT(i) { ATOMIC_INIT(i) }
  17. #define local_read(l) ((unsigned long)atomic_read(&(l)->a))
  18. #define local_set(l,i) atomic_set((&(l)->a),(i))
  19. #define local_inc(l) atomic_inc(&(l)->a)
  20. #define local_dec(l) atomic_dec(&(l)->a)
  21. #define local_add(i,l) atomic_add((i),(&(l)->a))
  22. #define local_sub(i,l) atomic_sub((i),(&(l)->a))
  23. /* Non-atomic variants, ie. preemption disabled and won't be touched
  24.  * in interrupt, etc.  Some archs can optimize this case well. */
  25. #define __local_inc(l) local_set((l), local_read(l) + 1)
  26. #define __local_dec(l) local_set((l), local_read(l) - 1)
  27. #define __local_add(i,l) local_set((l), local_read(l) + (i))
  28. #define __local_sub(i,l) local_set((l), local_read(l) - (i))
  29. #else /* ... can't use atomics. */
  30. /* Implement in terms of three variables.
  31.    Another option would be to use local_irq_save/restore. */
  32. typedef struct
  33. {
  34. /* 0 = in hardirq, 1 = in softirq, 2 = usermode. */
  35. unsigned long v[3];
  36. } local_t;
  37. #define _LOCAL_VAR(l) ((l)->v[!in_interrupt() + !in_irq()])
  38. #define LOCAL_INIT(i) { { (i), 0, 0 } }
  39. static inline unsigned long local_read(local_t *l)
  40. {
  41. return l->v[0] + l->v[1] + l->v[2];
  42. }
  43. static inline void local_set(local_t *l, unsigned long v)
  44. {
  45. l->v[0] = v;
  46. l->v[1] = l->v[2] = 0;
  47. }
  48. static inline void local_inc(local_t *l)
  49. {
  50. preempt_disable();
  51. _LOCAL_VAR(l)++;
  52. preempt_enable();
  53. }
  54. static inline void local_dec(local_t *l)
  55. {
  56. preempt_disable();
  57. _LOCAL_VAR(l)--;
  58. preempt_enable();
  59. }
  60. static inline void local_add(unsigned long v, local_t *l)
  61. {
  62. preempt_disable();
  63. _LOCAL_VAR(l) += v;
  64. preempt_enable();
  65. }
  66. static inline void local_sub(unsigned long v, local_t *l)
  67. {
  68. preempt_disable();
  69. _LOCAL_VAR(l) -= v;
  70. preempt_enable();
  71. }
  72. /* Non-atomic variants, ie. preemption disabled and won't be touched
  73.  * in interrupt, etc.  Some archs can optimize this case well. */
  74. #define __local_inc(l) ((l)->v[0]++)
  75. #define __local_dec(l) ((l)->v[0]--)
  76. #define __local_add(i,l) ((l)->v[0] += (i))
  77. #define __local_sub(i,l) ((l)->v[0] -= (i))
  78. #endif /* Non-atomic implementation */
  79. /* Use these for per-cpu local_t variables: on some archs they are
  80.  * much more efficient than these naive implementations.  Note they take
  81.  * a variable (eg. mystruct.foo), not an address.
  82.  */
  83. #define cpu_local_read(v) local_read(&__get_cpu_var(v))
  84. #define cpu_local_set(v, i) local_set(&__get_cpu_var(v), (i))
  85. #define cpu_local_inc(v) local_inc(&__get_cpu_var(v))
  86. #define cpu_local_dec(v) local_dec(&__get_cpu_var(v))
  87. #define cpu_local_add(i, v) local_add((i), &__get_cpu_var(v))
  88. #define cpu_local_sub(i, v) local_sub((i), &__get_cpu_var(v))
  89. /* Non-atomic increments, ie. preemption disabled and won't be touched
  90.  * in interrupt, etc.  Some archs can optimize this case well.
  91.  */
  92. #define __cpu_local_inc(v) __local_inc(&__get_cpu_var(v))
  93. #define __cpu_local_dec(v) __local_dec(&__get_cpu_var(v))
  94. #define __cpu_local_add(i, v) __local_add((i), &__get_cpu_var(v))
  95. #define __cpu_local_sub(i, v) __local_sub((i), &__get_cpu_var(v))
  96. #endif /* _ASM_GENERIC_LOCAL_H */