Merge tag 'amd-drm-next-5.15-2021-07-29' of https://gitlab.freedesktop.org/agd5f...
[linux-block.git] / include / linux / debug_locks.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
9a11b49a
IM
2#ifndef __LINUX_DEBUG_LOCKING_H
3#define __LINUX_DEBUG_LOCKING_H
4
60063497 5#include <linux/atomic.h>
187f1882 6#include <linux/bug.h>
36d818f6 7#include <linux/printk.h>
ca31e146 8
9b7f750d
AD
9struct task_struct;
10
01a14bda
WL
11extern int debug_locks __read_mostly;
12extern int debug_locks_silent __read_mostly;
9a11b49a 13
9eeba613 14
6eebad1a 15static __always_inline int __debug_locks_off(void)
9eeba613
FW
16{
17 return xchg(&debug_locks, 0);
18}
19
9a11b49a
IM
20/*
21 * Generic 'turn off all lock debugging' function:
22 */
23extern int debug_locks_off(void);
24
9a11b49a
IM
25#define DEBUG_LOCKS_WARN_ON(c) \
26({ \
27 int __ret = 0; \
28 \
53b9d87f 29 if (!oops_in_progress && unlikely(c)) { \
49faa777 30 instrumentation_begin(); \
9127d4b1 31 if (debug_locks_off() && !debug_locks_silent) \
2c2fea11 32 WARN(1, "DEBUG_LOCKS_WARN_ON(%s)", #c); \
49faa777 33 instrumentation_end(); \
9a11b49a
IM
34 __ret = 1; \
35 } \
36 __ret; \
37})
38
39#ifdef CONFIG_SMP
40# define SMP_DEBUG_LOCKS_WARN_ON(c) DEBUG_LOCKS_WARN_ON(c)
41#else
42# define SMP_DEBUG_LOCKS_WARN_ON(c) do { } while (0)
43#endif
44
45#ifdef CONFIG_DEBUG_LOCKING_API_SELFTESTS
46 extern void locking_selftest(void);
47#else
48# define locking_selftest() do { } while (0)
49#endif
50
f86e4513
KM
51struct task_struct;
52
9a11b49a
IM
53#ifdef CONFIG_LOCKDEP
54extern void debug_show_all_locks(void);
55extern void debug_show_held_locks(struct task_struct *task);
56extern void debug_check_no_locks_freed(const void *from, unsigned long len);
1b1d2fb4 57extern void debug_check_no_locks_held(void);
9a11b49a
IM
58#else
59static inline void debug_show_all_locks(void)
60{
61}
62
63static inline void debug_show_held_locks(struct task_struct *task)
64{
65}
66
67static inline void
68debug_check_no_locks_freed(const void *from, unsigned long len)
69{
70}
71
72static inline void
1b1d2fb4 73debug_check_no_locks_held(void)
9a11b49a
IM
74{
75}
76#endif
77
78#endif