USB: Obscure Maxon BP3-USB Device Support 16d8:6280 for option driver
[linux-2.6/s3c2410-cpufreq.git] / lib / debug_locks.c
blob0ef01d14727c03c9861175e010e6f7c75c0d693f
1 /*
2 * lib/debug_locks.c
4 * Generic place for common debugging facilities for various locks:
5 * spinlocks, rwlocks, mutexes and rwsems.
7 * Started by Ingo Molnar:
9 * Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
11 #include <linux/rwsem.h>
12 #include <linux/mutex.h>
13 #include <linux/module.h>
14 #include <linux/spinlock.h>
15 #include <linux/debug_locks.h>
18 * We want to turn all lock-debugging facilities on/off at once,
19 * via a global flag. The reason is that once a single bug has been
20 * detected and reported, there might be cascade of followup bugs
21 * that would just muddy the log. So we report the first one and
22 * shut up after that.
24 int debug_locks = 1;
27 * The locking-testsuite uses <debug_locks_silent> to get a
28 * 'silent failure': nothing is printed to the console when
29 * a locking bug is detected.
31 int debug_locks_silent;
34 * Generic 'turn off all lock debugging' function:
36 int debug_locks_off(void)
38 if (xchg(&debug_locks, 0)) {
39 if (!debug_locks_silent) {
40 console_verbose();
41 return 1;
44 return 0;