diff options
author | Paul E. McKenney | 2010-02-23 02:04:47 +0100 |
---|---|---|
committer | Ingo Molnar | 2010-02-25 09:41:01 +0100 |
commit | 0632eb3d7563d6a76d49a3860b6352d800c92854 (patch) | |
tree | d998e6d4292a21a91ba1333ffdb1866daf1cfee2 /include/linux/lockdep.h | |
parent | rcu: Add lockdep-enabled variants of rcu_dereference() (diff) | |
download | kernel-qcow2-linux-0632eb3d7563d6a76d49a3860b6352d800c92854.tar.gz kernel-qcow2-linux-0632eb3d7563d6a76d49a3860b6352d800c92854.tar.xz kernel-qcow2-linux-0632eb3d7563d6a76d49a3860b6352d800c92854.zip |
rcu: Integrate rcu_dereference_check() message into lockdep
Make rcu_dereference_check() print the list of held locks in
addition to the stack dump to ease debugging.
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: laijs@cn.fujitsu.com
Cc: dipankar@in.ibm.com
Cc: mathieu.desnoyers@polymtl.ca
Cc: josh@joshtriplett.org
Cc: dvhltc@us.ibm.com
Cc: niv@us.ibm.com
Cc: peterz@infradead.org
Cc: rostedt@goodmis.org
Cc: Valdis.Kletnieks@vt.edu
Cc: dhowells@redhat.com
LKML-Reference: <1266887105-1528-3-git-send-email-paulmck@linux.vnet.ibm.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/lockdep.h')
-rw-r--r-- | include/linux/lockdep.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/lockdep.h b/include/linux/lockdep.h index 9ccf0e286b2a..10206a87da19 100644 --- a/include/linux/lockdep.h +++ b/include/linux/lockdep.h @@ -534,4 +534,8 @@ do { \ # define might_lock_read(lock) do { } while (0) #endif +#ifdef CONFIG_PROVE_RCU +extern void lockdep_rcu_dereference(const char *file, const int line); +#endif + #endif /* __LINUX_LOCKDEP_H */ |