diff options
author | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2010-10-05 17:03:02 -0400 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2010-10-05 17:03:02 -0400 |
commit | 773e3f93577ffb493fb7c39b1a6ecf39b5748e87 (patch) | |
tree | 78340c40e26e3dbcbde66b013710b6c916ecc05b /kernel/rcupdate.c | |
parent | b3a084b9b684622b149e8dcf03855bf0d5fb588b (diff) |
rcu: move check from rcu_dereference_bh to rcu_read_lock_bh_held
As suggested by Linus, push the irqs_disabled() down to the
rcu_read_lock_bh_held() level so that all callers get the benefit
of the correct check.
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Diffstat (limited to 'kernel/rcupdate.c')
-rw-r--r-- | kernel/rcupdate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rcupdate.c b/kernel/rcupdate.c index 4d169835fb36..0af1dc70fece 100644 --- a/kernel/rcupdate.c +++ b/kernel/rcupdate.c | |||
@@ -86,7 +86,7 @@ int rcu_read_lock_bh_held(void) | |||
86 | { | 86 | { |
87 | if (!debug_lockdep_rcu_enabled()) | 87 | if (!debug_lockdep_rcu_enabled()) |
88 | return 1; | 88 | return 1; |
89 | return in_softirq(); | 89 | return in_softirq() || irqs_disabled(); |
90 | } | 90 | } |
91 | EXPORT_SYMBOL_GPL(rcu_read_lock_bh_held); | 91 | EXPORT_SYMBOL_GPL(rcu_read_lock_bh_held); |
92 | 92 | ||