blob: 96c4c633d95e687d1c658dfa433273bbb3f81a66 [file] [log] [blame]
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07001/*
2 * lib/debug_locks.c
3 *
4 * Generic place for common debugging facilities for various locks:
5 * spinlocks, rwlocks, mutexes and rwsems.
6 *
7 * Started by Ingo Molnar:
8 *
9 * Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
10 */
11#include <linux/rwsem.h>
12#include <linux/mutex.h>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -050013#include <linux/export.h>
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070014#include <linux/spinlock.h>
15#include <linux/debug_locks.h>
16
17/*
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.
23 */
24int debug_locks = 1;
Paul E. McKenney632ee202010-02-22 17:04:45 -080025EXPORT_SYMBOL_GPL(debug_locks);
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070026
27/*
28 * The locking-testsuite uses <debug_locks_silent> to get a
29 * 'silent failure': nothing is printed to the console when
30 * a locking bug is detected.
31 */
32int debug_locks_silent;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +020033EXPORT_SYMBOL_GPL(debug_locks_silent);
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070034
35/*
36 * Generic 'turn off all lock debugging' function:
37 */
38int debug_locks_off(void)
39{
Frederic Weisbecker9eeba612009-04-11 03:17:17 +020040 if (__debug_locks_off()) {
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070041 if (!debug_locks_silent) {
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070042 console_verbose();
43 return 1;
44 }
45 }
46 return 0;
47}
Maarten Lankhorst040a0a32013-06-24 10:30:04 +020048EXPORT_SYMBOL_GPL(debug_locks_off);