debug_locks.h 1.6 KB
Newer Older
1 2 3
#ifndef __LINUX_DEBUG_LOCKING_H
#define __LINUX_DEBUG_LOCKING_H

4
#include <linux/kernel.h>
5
#include <asm/atomic.h>
6

7 8
struct task_struct;

9 10 11
extern int debug_locks;
extern int debug_locks_silent;

12 13 14 15 16 17

static inline int __debug_locks_off(void)
{
	return xchg(&debug_locks, 0);
}

18 19 20 21 22 23 24 25 26
/*
 * Generic 'turn off all lock debugging' function:
 */
extern int debug_locks_off(void);

#define DEBUG_LOCKS_WARN_ON(c)						\
({									\
	int __ret = 0;							\
									\
27
	if (!oops_in_progress && unlikely(c)) {				\
28
		if (debug_locks_off() && !debug_locks_silent)		\
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
			WARN_ON(1);					\
		__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

47 48
struct task_struct;

49 50
#ifdef CONFIG_LOCKDEP
extern void debug_show_all_locks(void);
51
extern void __debug_show_held_locks(struct task_struct *task);
52 53 54 55 56 57 58 59
extern void debug_show_held_locks(struct task_struct *task);
extern void debug_check_no_locks_freed(const void *from, unsigned long len);
extern void debug_check_no_locks_held(struct task_struct *task);
#else
static inline void debug_show_all_locks(void)
{
}

60 61 62 63
static inline void __debug_show_held_locks(struct task_struct *task)
{
}

64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
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
debug_check_no_locks_held(struct task_struct *task)
{
}
#endif

#endif