]> git.proxmox.com Git - mirror_zfs.git/blob - include/sys/mutex.h
213bc247786afac742e4e31d3e7afb3d92ddc5ed
[mirror_zfs.git] / include / sys / mutex.h
1 /*****************************************************************************\
2 * Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
3 * Copyright (C) 2007 The Regents of the University of California.
4 * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
5 * Written by Brian Behlendorf <behlendorf1@llnl.gov>.
6 * UCRL-CODE-235197
7 *
8 * This file is part of the SPL, Solaris Porting Layer.
9 * For details, see <http://github.com/behlendorf/spl/>.
10 *
11 * The SPL is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
15 *
16 * The SPL is distributed in the hope that it will be useful, but WITHOUT
17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
23 \*****************************************************************************/
24
25 #ifndef _SPL_MUTEX_H
26 #define _SPL_MUTEX_H
27
28 #include <sys/types.h>
29 #include <linux/mutex.h>
30 #include <linux/compiler_compat.h>
31
32 typedef enum {
33 MUTEX_DEFAULT = 0,
34 MUTEX_SPIN = 1,
35 MUTEX_ADAPTIVE = 2
36 } kmutex_type_t;
37
38 #if defined(HAVE_MUTEX_OWNER) && defined(CONFIG_SMP) && !defined(CONFIG_DEBUG_MUTEXES)
39
40 /*
41 * We define a 1-field struct rather than a straight typedef to enforce type
42 * safety.
43 */
44 typedef struct {
45 struct mutex m;
46 } kmutex_t;
47
48 static inline kthread_t *
49 mutex_owner(kmutex_t *mp)
50 {
51 #if defined(HAVE_MUTEX_OWNER_TASK_STRUCT)
52 return ACCESS_ONCE(mp->m.owner);
53 #else
54 struct thread_info *owner = ACCESS_ONCE(mp->m.owner);
55 if (owner)
56 return owner->task;
57
58 return NULL;
59 #endif
60 }
61
62 #define mutex_owned(mp) (mutex_owner(mp) == current)
63 #define MUTEX_HELD(mp) mutex_owned(mp)
64 #define MUTEX_NOT_HELD(mp) (!MUTEX_HELD(mp))
65 #undef mutex_init
66 #define mutex_init(mp, name, type, ibc) \
67 ({ \
68 static struct lock_class_key __key; \
69 ASSERT(type == MUTEX_DEFAULT); \
70 \
71 __mutex_init(&(mp)->m, #mp, &__key); \
72 })
73
74 #undef mutex_destroy
75 #define mutex_destroy(mp) \
76 ({ \
77 VERIFY3P(mutex_owner(mp), ==, NULL); \
78 })
79
80 #define mutex_tryenter(mp) mutex_trylock(&(mp)->m)
81 #define mutex_enter(mp) mutex_lock(&(mp)->m)
82 #define mutex_exit(mp) mutex_unlock(&(mp)->m)
83
84 #ifdef HAVE_GPL_ONLY_SYMBOLS
85 # define mutex_enter_nested(mp, sc) mutex_lock_nested(&(mp)->m, sc)
86 #else
87 # define mutex_enter_nested(mp, sc) mutex_enter(mp)
88 #endif /* HAVE_GPL_ONLY_SYMBOLS */
89
90 #else /* HAVE_MUTEX_OWNER */
91
92 typedef struct {
93 struct mutex m_mutex;
94 kthread_t *m_owner;
95 } kmutex_t;
96
97 #ifdef HAVE_TASK_CURR
98 extern int spl_mutex_spin_max(void);
99 #else /* HAVE_TASK_CURR */
100 # define task_curr(owner) 0
101 # define spl_mutex_spin_max() 0
102 #endif /* HAVE_TASK_CURR */
103
104 #define MUTEX(mp) (&((mp)->m_mutex))
105
106 static inline void
107 spl_mutex_set_owner(kmutex_t *mp)
108 {
109 mp->m_owner = current;
110 }
111
112 static inline void
113 spl_mutex_clear_owner(kmutex_t *mp)
114 {
115 mp->m_owner = NULL;
116 }
117
118 #define mutex_owner(mp) (ACCESS_ONCE((mp)->m_owner))
119 #define mutex_owned(mp) (mutex_owner(mp) == current)
120 #define MUTEX_HELD(mp) mutex_owned(mp)
121 #define MUTEX_NOT_HELD(mp) (!MUTEX_HELD(mp))
122
123 /*
124 * The following functions must be a #define and not static inline.
125 * This ensures that the native linux mutex functions (lock/unlock)
126 * will be correctly located in the users code which is important
127 * for the built in kernel lock analysis tools
128 */
129 #undef mutex_init
130 #define mutex_init(mp, name, type, ibc) \
131 ({ \
132 static struct lock_class_key __key; \
133 ASSERT(type == MUTEX_DEFAULT); \
134 \
135 __mutex_init(MUTEX(mp), #mp, &__key); \
136 spl_mutex_clear_owner(mp); \
137 })
138
139 #undef mutex_destroy
140 #define mutex_destroy(mp) \
141 ({ \
142 VERIFY3P(mutex_owner(mp), ==, NULL); \
143 })
144
145 #define mutex_tryenter(mp) \
146 ({ \
147 int _rc_; \
148 \
149 if ((_rc_ = mutex_trylock(MUTEX(mp))) == 1) \
150 spl_mutex_set_owner(mp); \
151 \
152 _rc_; \
153 })
154
155 /*
156 * Adaptive mutexs assume that the lock may be held by a task running
157 * on a different cpu. The expectation is that the task will drop the
158 * lock before leaving the head of the run queue. So the ideal thing
159 * to do is spin until we acquire the lock and avoid a context switch.
160 * However it is also possible the task holding the lock yields the
161 * processor with out dropping lock. In this case, we know it's going
162 * to be a while so we stop spinning and go to sleep waiting for the
163 * lock to be available. This should strike the optimum balance
164 * between spinning and sleeping waiting for a lock.
165 */
166 #define mutex_enter(mp) \
167 ({ \
168 kthread_t *_owner_; \
169 int _rc_, _count_; \
170 \
171 _rc_ = 0; \
172 _count_ = 0; \
173 _owner_ = mutex_owner(mp); \
174 \
175 while (_owner_ && task_curr(_owner_) && \
176 _count_ <= spl_mutex_spin_max()) { \
177 if ((_rc_ = mutex_trylock(MUTEX(mp)))) \
178 break; \
179 \
180 _count_++; \
181 } \
182 \
183 if (!_rc_) \
184 mutex_lock(MUTEX(mp)); \
185 \
186 spl_mutex_set_owner(mp); \
187 })
188
189 #define mutex_exit(mp) \
190 ({ \
191 spl_mutex_clear_owner(mp); \
192 mutex_unlock(MUTEX(mp)); \
193 })
194
195 #ifdef HAVE_GPL_ONLY_SYMBOLS
196 # define mutex_enter_nested(mp, sc) \
197 ({ \
198 mutex_lock_nested(MUTEX(mp), sc); \
199 spl_mutex_set_owner(mp); \
200 })
201 #else
202 # define mutex_enter_nested(mp, sc) \
203 ({ \
204 mutex_enter(mp); \
205 })
206 #endif
207
208 #endif /* HAVE_MUTEX_OWNER */
209
210 int spl_mutex_init(void);
211 void spl_mutex_fini(void);
212
213 #endif /* _SPL_MUTEX_H */