rcu.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /*
  2. * Read-Copy Update definitions shared among RCU implementations.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. *
  18. * Copyright IBM Corporation, 2011
  19. *
  20. * Author: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
  21. */
  22. #ifndef __LINUX_RCU_H
  23. #define __LINUX_RCU_H
  24. #ifdef CONFIG_RCU_TRACE
  25. #define RCU_TRACE(stmt) stmt
  26. #else /* #ifdef CONFIG_RCU_TRACE */
  27. #define RCU_TRACE(stmt)
  28. #endif /* #else #ifdef CONFIG_RCU_TRACE */
  29. /*
  30. * Process-level increment to ->dynticks_nesting field. This allows for
  31. * architectures that use half-interrupts and half-exceptions from
  32. * process context.
  33. *
  34. * DYNTICK_TASK_NEST_MASK defines a field of width DYNTICK_TASK_NEST_WIDTH
  35. * that counts the number of process-based reasons why RCU cannot
  36. * consider the corresponding CPU to be idle, and DYNTICK_TASK_NEST_VALUE
  37. * is the value used to increment or decrement this field.
  38. *
  39. * The rest of the bits could in principle be used to count interrupts,
  40. * but this would mean that a negative-one value in the interrupt
  41. * field could incorrectly zero out the DYNTICK_TASK_NEST_MASK field.
  42. * We therefore provide a two-bit guard field defined by DYNTICK_TASK_MASK
  43. * that is set to DYNTICK_TASK_FLAG upon initial exit from idle.
  44. * The DYNTICK_TASK_EXIT_IDLE value is thus the combined value used upon
  45. * initial exit from idle.
  46. */
  47. #define DYNTICK_TASK_NEST_WIDTH 7
  48. #define DYNTICK_TASK_NEST_VALUE ((LLONG_MAX >> DYNTICK_TASK_NEST_WIDTH) + 1)
  49. #define DYNTICK_TASK_NEST_MASK (LLONG_MAX - DYNTICK_TASK_NEST_VALUE + 1)
  50. #define DYNTICK_TASK_FLAG ((DYNTICK_TASK_NEST_VALUE / 8) * 2)
  51. #define DYNTICK_TASK_MASK ((DYNTICK_TASK_NEST_VALUE / 8) * 3)
  52. #define DYNTICK_TASK_EXIT_IDLE (DYNTICK_TASK_NEST_VALUE + \
  53. DYNTICK_TASK_FLAG)
  54. /*
  55. * debug_rcu_head_queue()/debug_rcu_head_unqueue() are used internally
  56. * by call_rcu() and rcu callback execution, and are therefore not part of the
  57. * RCU API. Leaving in rcupdate.h because they are used by all RCU flavors.
  58. */
  59. #ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD
  60. # define STATE_RCU_HEAD_READY 0
  61. # define STATE_RCU_HEAD_QUEUED 1
  62. extern struct debug_obj_descr rcuhead_debug_descr;
  63. static inline void debug_rcu_head_queue(struct rcu_head *head)
  64. {
  65. debug_object_activate(head, &rcuhead_debug_descr);
  66. debug_object_active_state(head, &rcuhead_debug_descr,
  67. STATE_RCU_HEAD_READY,
  68. STATE_RCU_HEAD_QUEUED);
  69. }
  70. static inline void debug_rcu_head_unqueue(struct rcu_head *head)
  71. {
  72. debug_object_active_state(head, &rcuhead_debug_descr,
  73. STATE_RCU_HEAD_QUEUED,
  74. STATE_RCU_HEAD_READY);
  75. debug_object_deactivate(head, &rcuhead_debug_descr);
  76. }
  77. #else /* !CONFIG_DEBUG_OBJECTS_RCU_HEAD */
  78. static inline void debug_rcu_head_queue(struct rcu_head *head)
  79. {
  80. }
  81. static inline void debug_rcu_head_unqueue(struct rcu_head *head)
  82. {
  83. }
  84. #endif /* #else !CONFIG_DEBUG_OBJECTS_RCU_HEAD */
  85. extern void kfree(const void *);
  86. static inline bool __rcu_reclaim(char *rn, struct rcu_head *head)
  87. {
  88. unsigned long offset = (unsigned long)head->func;
  89. if (__is_kfree_rcu_offset(offset)) {
  90. RCU_TRACE(trace_rcu_invoke_kfree_callback(rn, head, offset));
  91. kfree((void *)head - offset);
  92. return 1;
  93. } else {
  94. RCU_TRACE(trace_rcu_invoke_callback(rn, head));
  95. head->func(head);
  96. return 0;
  97. }
  98. }
  99. extern int rcu_expedited;
  100. #endif /* __LINUX_RCU_H */