diff options
Diffstat (limited to 'include/linux/rcutiny.h')
| -rw-r--r-- | include/linux/rcutiny.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/linux/rcutiny.h b/include/linux/rcutiny.h index e31005ee339e..09ebcbe9fd78 100644 --- a/include/linux/rcutiny.h +++ b/include/linux/rcutiny.h | |||
| @@ -132,4 +132,21 @@ static inline void rcu_scheduler_starting(void) | |||
| 132 | } | 132 | } |
| 133 | #endif /* #else #ifdef CONFIG_DEBUG_LOCK_ALLOC */ | 133 | #endif /* #else #ifdef CONFIG_DEBUG_LOCK_ALLOC */ |
| 134 | 134 | ||
| 135 | #if defined(CONFIG_DEBUG_LOCK_ALLOC) || defined(CONFIG_RCU_TRACE) | ||
| 136 | |||
| 137 | static inline bool rcu_is_watching(void) | ||
| 138 | { | ||
| 139 | return __rcu_is_watching(); | ||
| 140 | } | ||
| 141 | |||
| 142 | #else /* defined(CONFIG_DEBUG_LOCK_ALLOC) || defined(CONFIG_RCU_TRACE) */ | ||
| 143 | |||
| 144 | static inline bool rcu_is_watching(void) | ||
| 145 | { | ||
| 146 | return true; | ||
| 147 | } | ||
| 148 | |||
| 149 | |||
| 150 | #endif /* #else defined(CONFIG_DEBUG_LOCK_ALLOC) || defined(CONFIG_RCU_TRACE) */ | ||
| 151 | |||
| 135 | #endif /* __LINUX_RCUTINY_H */ | 152 | #endif /* __LINUX_RCUTINY_H */ |
