blob: a75ee30b77cb8dd70d792d36e17ec74b0385852f [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002/*
3 * lib/debug_locks.c
4 *
5 * Generic place for common debugging facilities for various locks:
6 * spinlocks, rwlocks, mutexes and rwsems.
7 *
8 * Started by Ingo Molnar:
9 *
10 * Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
11 */
12#include <linux/rwsem.h>
13#include <linux/mutex.h>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -050014#include <linux/export.h>
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070015#include <linux/spinlock.h>
16#include <linux/debug_locks.h>
17
18/*
19 * We want to turn all lock-debugging facilities on/off at once,
20 * via a global flag. The reason is that once a single bug has been
21 * detected and reported, there might be cascade of followup bugs
22 * that would just muddy the log. So we report the first one and
23 * shut up after that.
24 */
Waiman Long01a14bd2018-10-18 21:45:18 -040025int debug_locks __read_mostly = 1;
Paul E. McKenney632ee202010-02-22 17:04:45 -080026EXPORT_SYMBOL_GPL(debug_locks);
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070027
28/*
29 * The locking-testsuite uses <debug_locks_silent> to get a
30 * 'silent failure': nothing is printed to the console when
31 * a locking bug is detected.
32 */
Waiman Long01a14bd2018-10-18 21:45:18 -040033int debug_locks_silent __read_mostly;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +020034EXPORT_SYMBOL_GPL(debug_locks_silent);
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070035
36/*
37 * Generic 'turn off all lock debugging' function:
38 */
Peter Zijlstra49faa772021-06-21 13:12:38 +020039int debug_locks_off(void)
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070040{
Waiman Long9506a742018-10-18 21:45:17 -040041 if (debug_locks && __debug_locks_off()) {
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070042 if (!debug_locks_silent) {
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070043 console_verbose();
44 return 1;
45 }
46 }
47 return 0;
48}
Maarten Lankhorst040a0a32013-06-24 10:30:04 +020049EXPORT_SYMBOL_GPL(debug_locks_off);