rcutiny.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /*
  2. * Read-Copy Update mechanism for mutual exclusion, the Bloatwatch edition.
  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, you can access it online at
  16. * http://www.gnu.org/licenses/gpl-2.0.html.
  17. *
  18. * Copyright IBM Corporation, 2008
  19. *
  20. * Author: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
  21. *
  22. * For detailed explanation of Read-Copy Update mechanism see -
  23. * Documentation/RCU
  24. */
  25. #ifndef __LINUX_TINY_H
  26. #define __LINUX_TINY_H
  27. #include <linux/ktime.h>
  28. struct rcu_dynticks;
  29. static inline int rcu_dynticks_snap(struct rcu_dynticks *rdtp)
  30. {
  31. return 0;
  32. }
  33. /* Never flag non-existent other CPUs! */
  34. static inline bool rcu_eqs_special_set(int cpu) { return false; }
  35. static inline unsigned long get_state_synchronize_rcu(void)
  36. {
  37. return 0;
  38. }
  39. static inline void cond_synchronize_rcu(unsigned long oldstate)
  40. {
  41. might_sleep();
  42. }
  43. static inline unsigned long get_state_synchronize_sched(void)
  44. {
  45. return 0;
  46. }
  47. static inline void cond_synchronize_sched(unsigned long oldstate)
  48. {
  49. might_sleep();
  50. }
  51. extern void rcu_barrier_bh(void);
  52. extern void rcu_barrier_sched(void);
  53. static inline void synchronize_rcu_expedited(void)
  54. {
  55. synchronize_sched(); /* Only one CPU, so pretty fast anyway!!! */
  56. }
  57. static inline void rcu_barrier(void)
  58. {
  59. rcu_barrier_sched(); /* Only one CPU, so only one list of callbacks! */
  60. }
  61. static inline void synchronize_rcu_bh(void)
  62. {
  63. synchronize_sched();
  64. }
  65. static inline void synchronize_rcu_bh_expedited(void)
  66. {
  67. synchronize_sched();
  68. }
  69. static inline void synchronize_sched_expedited(void)
  70. {
  71. synchronize_sched();
  72. }
  73. static inline void kfree_call_rcu(struct rcu_head *head,
  74. rcu_callback_t func)
  75. {
  76. call_rcu(head, func);
  77. }
  78. #define rcu_note_context_switch(preempt) \
  79. do { \
  80. rcu_sched_qs(); \
  81. rcu_tasks_qs(current); \
  82. } while (0)
  83. static inline int rcu_needs_cpu(u64 basemono, u64 *nextevt)
  84. {
  85. *nextevt = KTIME_MAX;
  86. return 0;
  87. }
  88. /*
  89. * Take advantage of the fact that there is only one CPU, which
  90. * allows us to ignore virtualization-based context switches.
  91. */
  92. static inline void rcu_virt_note_context_switch(int cpu) { }
  93. static inline void rcu_cpu_stall_reset(void) { }
  94. static inline void rcu_idle_enter(void) { }
  95. static inline void rcu_idle_exit(void) { }
  96. static inline void rcu_irq_enter(void) { }
  97. static inline void rcu_irq_exit_irqson(void) { }
  98. static inline void rcu_irq_enter_irqson(void) { }
  99. static inline void rcu_irq_exit(void) { }
  100. static inline void exit_rcu(void) { }
  101. #ifdef CONFIG_SRCU
  102. void rcu_scheduler_starting(void);
  103. #else /* #ifndef CONFIG_SRCU */
  104. static inline void rcu_scheduler_starting(void) { }
  105. #endif /* #else #ifndef CONFIG_SRCU */
  106. static inline void rcu_end_inkernel_boot(void) { }
  107. static inline bool rcu_is_watching(void) { return true; }
  108. /* Avoid RCU read-side critical sections leaking across. */
  109. static inline void rcu_all_qs(void) { barrier(); }
  110. /* RCUtree hotplug events */
  111. #define rcutree_prepare_cpu NULL
  112. #define rcutree_online_cpu NULL
  113. #define rcutree_offline_cpu NULL
  114. #define rcutree_dead_cpu NULL
  115. #define rcutree_dying_cpu NULL
  116. static inline void rcu_cpu_starting(unsigned int cpu) { }
  117. #endif /* __LINUX_RCUTINY_H */