blob: 1c2287d3fa7191589c6d8f0d5f4e67c3282f8dfe [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Ingo Molnar6053ee32006-01-09 15:59:19 -08002/*
3 * Mutexes: blocking mutual exclusion locks
4 *
5 * started by Ingo Molnar:
6 *
7 * Copyright (C) 2004, 2005, 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
8 *
9 * This file contains mutex debugging related internal prototypes, for the
10 * !CONFIG_DEBUG_MUTEXES case. Most of them are NOPs:
11 */
12
Linus Torvalds6720a302016-06-23 12:11:17 -070013#define mutex_remove_waiter(lock, waiter, task) \
Ingo Molnar6053ee32006-01-09 15:59:19 -080014 __list_del((waiter)->list.prev, (waiter)->list.next)
15
Ingo Molnar6053ee32006-01-09 15:59:19 -080016#define debug_mutex_wake_waiter(lock, waiter) do { } while (0)
17#define debug_mutex_free_waiter(waiter) do { } while (0)
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070018#define debug_mutex_add_waiter(lock, waiter, ti) do { } while (0)
Ingo Molnar6053ee32006-01-09 15:59:19 -080019#define debug_mutex_unlock(lock) do { } while (0)
Ingo Molnaref5d4702006-07-03 00:24:55 -070020#define debug_mutex_init(lock, name, key) do { } while (0)
Ingo Molnar6053ee32006-01-09 15:59:19 -080021
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070022static inline void
23debug_mutex_lock_common(struct mutex *lock, struct mutex_waiter *waiter)
24{
25}