diff options
Diffstat (limited to 'include/linux/rcupdate.h')
-rw-r--r-- | include/linux/rcupdate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/rcupdate.h b/include/linux/rcupdate.h index 839d296a7ac0..1a4de31bd7b4 100644 --- a/include/linux/rcupdate.h +++ b/include/linux/rcupdate.h | |||
@@ -182,8 +182,8 @@ static inline int rcu_read_lock_sched_held(void) | |||
182 | */ | 182 | */ |
183 | #define rcu_dereference_check(p, c) \ | 183 | #define rcu_dereference_check(p, c) \ |
184 | ({ \ | 184 | ({ \ |
185 | if (debug_locks) \ | 185 | if (debug_locks && !(c)) \ |
186 | WARN_ON_ONCE(!(c)); \ | 186 | lockdep_rcu_dereference(__FILE__, __LINE__); \ |
187 | rcu_dereference_raw(p); \ | 187 | rcu_dereference_raw(p); \ |
188 | }) | 188 | }) |
189 | 189 | ||