2006-07-03 15:24:33 +08:00
|
|
|
#ifndef __LINUX_DEBUG_LOCKING_H
|
|
|
|
#define __LINUX_DEBUG_LOCKING_H
|
|
|
|
|
2008-07-05 17:14:23 +08:00
|
|
|
#include <linux/kernel.h>
|
2011-07-27 07:09:06 +08:00
|
|
|
#include <linux/atomic.h>
|
2011-11-24 09:12:59 +08:00
|
|
|
#include <linux/bug.h>
|
2008-07-05 17:14:23 +08:00
|
|
|
|
2006-08-06 03:14:27 +08:00
|
|
|
struct task_struct;
|
|
|
|
|
2006-07-03 15:24:33 +08:00
|
|
|
extern int debug_locks;
|
|
|
|
extern int debug_locks_silent;
|
|
|
|
|
2009-04-11 09:17:17 +08:00
|
|
|
|
|
|
|
static inline int __debug_locks_off(void)
|
|
|
|
{
|
|
|
|
return xchg(&debug_locks, 0);
|
|
|
|
}
|
|
|
|
|
2006-07-03 15:24:33 +08:00
|
|
|
/*
|
|
|
|
* Generic 'turn off all lock debugging' function:
|
|
|
|
*/
|
|
|
|
extern int debug_locks_off(void);
|
|
|
|
|
|
|
|
#define DEBUG_LOCKS_WARN_ON(c) \
|
|
|
|
({ \
|
|
|
|
int __ret = 0; \
|
|
|
|
\
|
2008-09-12 08:02:58 +08:00
|
|
|
if (!oops_in_progress && unlikely(c)) { \
|
2006-12-22 17:08:52 +08:00
|
|
|
if (debug_locks_off() && !debug_locks_silent) \
|
2013-04-30 06:06:06 +08:00
|
|
|
WARN(1, "DEBUG_LOCKS_WARN_ON(%s)", #c); \
|
2006-07-03 15:24:33 +08:00
|
|
|
__ret = 1; \
|
|
|
|
} \
|
|
|
|
__ret; \
|
|
|
|
})
|
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
# define SMP_DEBUG_LOCKS_WARN_ON(c) DEBUG_LOCKS_WARN_ON(c)
|
|
|
|
#else
|
|
|
|
# define SMP_DEBUG_LOCKS_WARN_ON(c) do { } while (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_DEBUG_LOCKING_API_SELFTESTS
|
|
|
|
extern void locking_selftest(void);
|
|
|
|
#else
|
|
|
|
# define locking_selftest() do { } while (0)
|
|
|
|
#endif
|
|
|
|
|
2006-08-14 09:09:31 +08:00
|
|
|
struct task_struct;
|
|
|
|
|
2006-07-03 15:24:33 +08:00
|
|
|
#ifdef CONFIG_LOCKDEP
|
|
|
|
extern void debug_show_all_locks(void);
|
|
|
|
extern void debug_show_held_locks(struct task_struct *task);
|
|
|
|
extern void debug_check_no_locks_freed(const void *from, unsigned long len);
|
2013-05-07 07:50:08 +08:00
|
|
|
extern void debug_check_no_locks_held(void);
|
2006-07-03 15:24:33 +08:00
|
|
|
#else
|
|
|
|
static inline void debug_show_all_locks(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void debug_show_held_locks(struct task_struct *task)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
debug_check_no_locks_freed(const void *from, unsigned long len)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
2013-05-07 07:50:08 +08:00
|
|
|
debug_check_no_locks_held(void)
|
2006-07-03 15:24:33 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|