blob: 6cd6b8e9efd7f73175be41f46d062650da821af8 [file] [log] [blame]
Ingo Molnar6053ee32006-01-09 15:59:19 -08001/*
2 * Mutexes: blocking mutual exclusion locks
3 *
4 * started by Ingo Molnar:
5 *
6 * Copyright (C) 2004, 2005, 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
7 *
8 * This file contains mutex debugging related internal prototypes, for the
9 * !CONFIG_DEBUG_MUTEXES case. Most of them are NOPs:
10 */
11
Ingo Molnar1fb00c62006-06-26 00:24:31 -070012#define spin_lock_mutex(lock, flags) \
13 do { spin_lock(lock); (void)(flags); } while (0)
14#define spin_unlock_mutex(lock, flags) \
15 do { spin_unlock(lock); (void)(flags); } while (0)
Linus Torvalds6720a302016-06-23 12:11:17 -070016#define mutex_remove_waiter(lock, waiter, task) \
Ingo Molnar6053ee32006-01-09 15:59:19 -080017 __list_del((waiter)->list.prev, (waiter)->list.next)
18
Davidlohr Bueso7608a432014-07-30 13:41:54 -070019#ifdef CONFIG_MUTEX_SPIN_ON_OWNER
Jason Low6e281472016-05-20 15:19:36 -070020/*
21 * The mutex owner can get read and written to locklessly.
22 * We should use WRITE_ONCE when writing the owner value to
23 * avoid store tearing, otherwise, a thread could potentially
24 * read a partially written and incomplete owner value.
25 */
Peter Zijlstra0d66bf62009-01-12 14:01:47 +010026static inline void mutex_set_owner(struct mutex *lock)
27{
Jason Low6e281472016-05-20 15:19:36 -070028 WRITE_ONCE(lock->owner, current);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +010029}
30
31static inline void mutex_clear_owner(struct mutex *lock)
32{
Jason Low6e281472016-05-20 15:19:36 -070033 WRITE_ONCE(lock->owner, NULL);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +010034}
35#else
36static inline void mutex_set_owner(struct mutex *lock)
37{
38}
39
40static inline void mutex_clear_owner(struct mutex *lock)
41{
42}
43#endif
44
Ingo Molnar6053ee32006-01-09 15:59:19 -080045#define debug_mutex_wake_waiter(lock, waiter) do { } while (0)
46#define debug_mutex_free_waiter(waiter) do { } while (0)
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070047#define debug_mutex_add_waiter(lock, waiter, ti) do { } while (0)
Ingo Molnar6053ee32006-01-09 15:59:19 -080048#define debug_mutex_unlock(lock) do { } while (0)
Ingo Molnaref5d4702006-07-03 00:24:55 -070049#define debug_mutex_init(lock, name, key) do { } while (0)
Ingo Molnar6053ee32006-01-09 15:59:19 -080050
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070051static inline void
52debug_mutex_lock_common(struct mutex *lock, struct mutex_waiter *waiter)
53{
54}