Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Sasha Levin | 5634bd7 | 2013-06-13 18:41:17 -0400 | [diff] [blame] | 2 | #ifndef _LIBLOCKDEP_DEBUG_LOCKS_H_ |
| 3 | #define _LIBLOCKDEP_DEBUG_LOCKS_H_ |
| 4 | |
| 5 | #include <stddef.h> |
| 6 | #include <linux/compiler.h> |
Levin, Alexander (Sasha Levin) | e58e871 | 2017-05-31 00:38:09 +0000 | [diff] [blame] | 7 | #include <asm/bug.h> |
Sasha Levin | 5634bd7 | 2013-06-13 18:41:17 -0400 | [diff] [blame] | 8 | |
Ben Hutchings | bb7ea2a | 2017-05-25 12:58:37 +0000 | [diff] [blame] | 9 | #define DEBUG_LOCKS_WARN_ON(x) WARN_ON(x) |
Sasha Levin | 5634bd7 | 2013-06-13 18:41:17 -0400 | [diff] [blame] | 10 | |
| 11 | extern bool debug_locks; |
| 12 | extern bool debug_locks_silent; |
| 13 | |
| 14 | #endif |