|
@@ -45,6 +45,12 @@ extern void __rcu_read_unlock(void);
|
|
|
extern void synchronize_rcu(void);
|
|
|
extern void exit_rcu(void);
|
|
|
|
|
|
+/*
|
|
|
+ * Defined as macro as it is a very low level header
|
|
|
+ * included from areas that don't even know about current
|
|
|
+ */
|
|
|
+#define rcu_preempt_depth() (current->rcu_read_lock_nesting)
|
|
|
+
|
|
|
#else /* #ifdef CONFIG_TREE_PREEMPT_RCU */
|
|
|
|
|
|
static inline void __rcu_read_lock(void)
|
|
@@ -63,6 +69,11 @@ static inline void exit_rcu(void)
|
|
|
{
|
|
|
}
|
|
|
|
|
|
+static inline int rcu_preempt_depth(void)
|
|
|
+{
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
#endif /* #else #ifdef CONFIG_TREE_PREEMPT_RCU */
|
|
|
|
|
|
static inline void __rcu_read_lock_bh(void)
|