Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 1 | #ifndef __LINUX_DEBUG_LOCKING_H |
| 2 | #define __LINUX_DEBUG_LOCKING_H |
| 3 | |
Eduard - Gabriel Munteanu | ca31e14 | 2008-07-05 12:14:23 +0300 | [diff] [blame] | 4 | #include <linux/kernel.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 5 | #include <linux/atomic.h> |
Paul Gortmaker | 187f188 | 2011-11-23 20:12:59 -0500 | [diff] [blame] | 6 | #include <linux/bug.h> |
Eduard - Gabriel Munteanu | ca31e14 | 2008-07-05 12:14:23 +0300 | [diff] [blame] | 7 | |
Alexey Dobriyan | 9b7f750 | 2006-08-05 12:14:27 -0700 | [diff] [blame] | 8 | struct task_struct; |
| 9 | |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 10 | extern int debug_locks; |
| 11 | extern int debug_locks_silent; |
| 12 | |
Frederic Weisbecker | 9eeba61 | 2009-04-11 03:17:17 +0200 | [diff] [blame] | 13 | |
| 14 | static inline int __debug_locks_off(void) |
| 15 | { |
| 16 | return xchg(&debug_locks, 0); |
| 17 | } |
| 18 | |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 19 | /* |
| 20 | * Generic 'turn off all lock debugging' function: |
| 21 | */ |
| 22 | extern int debug_locks_off(void); |
| 23 | |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 24 | #define DEBUG_LOCKS_WARN_ON(c) \ |
| 25 | ({ \ |
| 26 | int __ret = 0; \ |
| 27 | \ |
Andrew Morton | 53b9d87 | 2008-09-11 17:02:58 -0700 | [diff] [blame] | 28 | if (!oops_in_progress && unlikely(c)) { \ |
Ingo Molnar | 9127d4b | 2006-12-22 01:08:52 -0800 | [diff] [blame] | 29 | if (debug_locks_off() && !debug_locks_silent) \ |
James Hogan | 2c2fea1 | 2013-04-29 15:06:06 -0700 | [diff] [blame] | 30 | WARN(1, "DEBUG_LOCKS_WARN_ON(%s)", #c); \ |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 31 | __ret = 1; \ |
| 32 | } \ |
| 33 | __ret; \ |
| 34 | }) |
| 35 | |
| 36 | #ifdef CONFIG_SMP |
| 37 | # define SMP_DEBUG_LOCKS_WARN_ON(c) DEBUG_LOCKS_WARN_ON(c) |
| 38 | #else |
| 39 | # define SMP_DEBUG_LOCKS_WARN_ON(c) do { } while (0) |
| 40 | #endif |
| 41 | |
| 42 | #ifdef CONFIG_DEBUG_LOCKING_API_SELFTESTS |
| 43 | extern void locking_selftest(void); |
| 44 | #else |
| 45 | # define locking_selftest() do { } while (0) |
| 46 | #endif |
| 47 | |
Kyle McMartin | f86e451 | 2006-08-13 21:09:31 -0400 | [diff] [blame] | 48 | struct task_struct; |
| 49 | |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 50 | #ifdef CONFIG_LOCKDEP |
| 51 | extern void debug_show_all_locks(void); |
| 52 | extern void debug_show_held_locks(struct task_struct *task); |
| 53 | extern void debug_check_no_locks_freed(const void *from, unsigned long len); |
Colin Cross | 1b1d2fb | 2013-05-06 23:50:08 +0000 | [diff] [blame] | 54 | extern void debug_check_no_locks_held(void); |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 55 | #else |
| 56 | static inline void debug_show_all_locks(void) |
| 57 | { |
| 58 | } |
| 59 | |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 60 | static inline void debug_show_held_locks(struct task_struct *task) |
| 61 | { |
| 62 | } |
| 63 | |
| 64 | static inline void |
| 65 | debug_check_no_locks_freed(const void *from, unsigned long len) |
| 66 | { |
| 67 | } |
| 68 | |
| 69 | static inline void |
Colin Cross | 1b1d2fb | 2013-05-06 23:50:08 +0000 | [diff] [blame] | 70 | debug_check_no_locks_held(void) |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 71 | { |
| 72 | } |
| 73 | #endif |
| 74 | |
| 75 | #endif |