2006-07-03 07:24:33 +00:00
|
|
|
#ifndef __LINUX_DEBUG_LOCKING_H
|
|
|
|
#define __LINUX_DEBUG_LOCKING_H
|
|
|
|
|
2008-07-05 09:14:23 +00:00
|
|
|
#include <linux/kernel.h>
|
2011-07-26 23:09:06 +00:00
|
|
|
#include <linux/atomic.h>
|
2011-11-24 01:12:59 +00:00
|
|
|
#include <linux/bug.h>
|
2008-07-05 09:14:23 +00:00
|
|
|
|
2006-08-05 19:14:27 +00:00
|
|
|
struct task_struct;
|
|
|
|
|
2006-07-03 07:24:33 +00:00
|
|
|
extern int debug_locks;
|
|
|
|
extern int debug_locks_silent;
|
|
|
|
|
2009-04-11 01:17:17 +00:00
|
|
|
|
|
|
|
static inline int __debug_locks_off(void)
|
|
|
|
{
|
|
|
|
return xchg(&debug_locks, 0);
|
|
|
|
}
|
|
|
|
|
2006-07-03 07:24:33 +00: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 00:02:58 +00:00
|
|
|
if (!oops_in_progress && unlikely(c)) { \
|
2006-12-22 09:08:52 +00:00
|
|
|
if (debug_locks_off() && !debug_locks_silent) \
|
2013-04-29 22:06:06 +00:00
|
|
|
WARN(1, "DEBUG_LOCKS_WARN_ON(%s)", #c); \
|
2006-07-03 07:24:33 +00: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 01:09:31 +00:00
|
|
|
struct task_struct;
|
|
|
|
|
2006-07-03 07:24:33 +00: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-06 23:50:08 +00:00
|
|
|
extern void debug_check_no_locks_held(void);
|
2006-07-03 07:24:33 +00: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-06 23:50:08 +00:00
|
|
|
debug_check_no_locks_held(void)
|
2006-07-03 07:24:33 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|