diff options
Diffstat (limited to 'include/linux/rcutiny.h')
-rw-r--r-- | include/linux/rcutiny.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/linux/rcutiny.h b/include/linux/rcutiny.h index a5195875480a..bbeb55b7709b 100644 --- a/include/linux/rcutiny.h +++ b/include/linux/rcutiny.h | |||
@@ -74,7 +74,17 @@ static inline void rcu_sched_force_quiescent_state(void) | |||
74 | { | 74 | { |
75 | } | 75 | } |
76 | 76 | ||
77 | #define synchronize_rcu synchronize_sched | 77 | extern void synchronize_sched(void); |
78 | |||
79 | static inline void synchronize_rcu(void) | ||
80 | { | ||
81 | synchronize_sched(); | ||
82 | } | ||
83 | |||
84 | static inline void synchronize_rcu_bh(void) | ||
85 | { | ||
86 | synchronize_sched(); | ||
87 | } | ||
78 | 88 | ||
79 | static inline void synchronize_rcu_expedited(void) | 89 | static inline void synchronize_rcu_expedited(void) |
80 | { | 90 | { |