Skip to content

Commit ee84b82

Browse files
committed
rcu: create rcu_my_thread_group_empty() wrapper
Some RCU-lockdep splat repairs need to know whether they are running in a single-threaded process. Unfortunately, the thread_group_empty() primitive is defined in sched.h, and can induce #include hell. This commit therefore introduces a rcu_my_thread_group_empty() wrapper that is defined in rcupdate.c, thus avoiding the need to include sched.h everywhere. Signed-off-by: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
1 parent ad4ba37 commit ee84b82

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

include/linux/rcupdate.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,8 @@ static inline int rcu_read_lock_sched_held(void)
190190

191191
#ifdef CONFIG_PROVE_RCU
192192

193+
extern int rcu_my_thread_group_empty(void);
194+
193195
/**
194196
* rcu_dereference_check - rcu_dereference with debug checking
195197
* @p: The pointer to read, prior to dereferencing

kernel/rcupdate.c

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,3 +122,14 @@ void wakeme_after_rcu(struct rcu_head *head)
122122
rcu = container_of(head, struct rcu_synchronize, head);
123123
complete(&rcu->completion);
124124
}
125+
126+
#ifdef CONFIG_PROVE_RCU
127+
/*
128+
* wrapper function to avoid #include problems.
129+
*/
130+
int rcu_my_thread_group_empty(void)
131+
{
132+
return thread_group_empty(current);
133+
}
134+
EXPORT_SYMBOL_GPL(rcu_my_thread_group_empty);
135+
#endif /* #ifdef CONFIG_PROVE_RCU */

0 commit comments

Comments
 (0)