]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - include/linux/debug_locks.h
Merge tag '5.15-rc1-smb3' of git://git.samba.org/sfrench/cifs-2.6
[mirror_ubuntu-jammy-kernel.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>
cbcebf5b 6#include <linux/cache.h>
ca31e146 7
9b7f750d
AD
8struct task_struct;
9
01a14bda
WL
10extern int debug_locks __read_mostly;
11extern int debug_locks_silent __read_mostly;
9a11b49a 12
9eeba613 13
6eebad1a 14static __always_inline int __debug_locks_off(void)
9eeba613
FW
15{
16 return xchg(&debug_locks, 0);
17}
18
9a11b49a
IM
19/*
20 * Generic 'turn off all lock debugging' function:
21 */
22extern int debug_locks_off(void);
23
9a11b49a
IM
24#define DEBUG_LOCKS_WARN_ON(c) \
25({ \
26 int __ret = 0; \
27 \
53b9d87f 28 if (!oops_in_progress && unlikely(c)) { \
49faa777 29 instrumentation_begin(); \
9127d4b1 30 if (debug_locks_off() && !debug_locks_silent) \
2c2fea11 31 WARN(1, "DEBUG_LOCKS_WARN_ON(%s)", #c); \
49faa777 32 instrumentation_end(); \
9a11b49a
IM
33 __ret = 1; \
34 } \
35 __ret; \
36})
37
38#ifdef CONFIG_SMP
39# define SMP_DEBUG_LOCKS_WARN_ON(c) DEBUG_LOCKS_WARN_ON(c)
40#else
41# define SMP_DEBUG_LOCKS_WARN_ON(c) do { } while (0)
42#endif
43
44#ifdef CONFIG_DEBUG_LOCKING_API_SELFTESTS
45 extern void locking_selftest(void);
46#else
47# define locking_selftest() do { } while (0)
48#endif
49
f86e4513
KM
50struct task_struct;
51
9a11b49a
IM
52#ifdef CONFIG_LOCKDEP
53extern void debug_show_all_locks(void);
54extern void debug_show_held_locks(struct task_struct *task);
55extern void debug_check_no_locks_freed(const void *from, unsigned long len);
1b1d2fb4 56extern void debug_check_no_locks_held(void);
9a11b49a
IM
57#else
58static inline void debug_show_all_locks(void)
59{
60}
61
62static inline void debug_show_held_locks(struct task_struct *task)
63{
64}
65
66static inline void
67debug_check_no_locks_freed(const void *from, unsigned long len)
68{
69}
70
71static inline void
1b1d2fb4 72debug_check_no_locks_held(void)
9a11b49a
IM
73{
74}
75#endif
76
77#endif