]> git.proxmox.com Git - mirror_spl-debian.git/blame - module/spl/spl-condvar.c
Imported Upstream version 0.6.1
[mirror_spl-debian.git] / module / spl / spl-condvar.c
CommitLineData
716154c5
BB
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>.
715f6251 6 * UCRL-CODE-235197
7 *
716154c5 8 * This file is part of the SPL, Solaris Porting Layer.
d956cfac 9 * For details, see <http://zfsonlinux.org/>.
716154c5
BB
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.
715f6251 15 *
716154c5 16 * The SPL is distributed in the hope that it will be useful, but WITHOUT
715f6251 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
716154c5
BB
22 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
23 *****************************************************************************
24 * Solaris Porting Layer (SPL) Credential Implementation.
25\*****************************************************************************/
715f6251 26
4efd4118 27#include <sys/condvar.h>
55abb092 28#include <spl-debug.h>
4efd4118 29
b17edc10
BB
30#ifdef SS_DEBUG_SUBSYS
31#undef SS_DEBUG_SUBSYS
4efd4118 32#endif
33
b17edc10 34#define SS_DEBUG_SUBSYS SS_CONDVAR
4efd4118 35
36void
37__cv_init(kcondvar_t *cvp, char *name, kcv_type_t type, void *arg)
38{
39 int flags = KM_SLEEP;
40
b17edc10 41 SENTRY;
4efd4118 42 ASSERT(cvp);
b29012b9 43 ASSERT(name == NULL);
4efd4118 44 ASSERT(type == CV_DEFAULT);
45 ASSERT(arg == NULL);
46
47 cvp->cv_magic = CV_MAGIC;
48 init_waitqueue_head(&cvp->cv_event);
d599e4fa 49 init_waitqueue_head(&cvp->cv_destroy);
4efd4118 50 atomic_set(&cvp->cv_waiters, 0);
d2733258 51 atomic_set(&cvp->cv_refs, 1);
4efd4118 52 cvp->cv_mutex = NULL;
4efd4118 53
54 /* We may be called when there is a non-zero preempt_count or
55 * interrupts are disabled is which case we must not sleep.
56 */
57 if (current_thread_info()->preempt_count || irqs_disabled())
58 flags = KM_NOSLEEP;
59
b17edc10 60 SEXIT;
4efd4118 61}
62EXPORT_SYMBOL(__cv_init);
63
d599e4fa
BB
64static int
65cv_destroy_wakeup(kcondvar_t *cvp)
66{
d2733258
BB
67 if (!atomic_read(&cvp->cv_waiters) && !atomic_read(&cvp->cv_refs)) {
68 ASSERT(cvp->cv_mutex == NULL);
69 ASSERT(!waitqueue_active(&cvp->cv_event));
70 return 1;
71 }
d599e4fa 72
d2733258 73 return 0;
d599e4fa
BB
74}
75
4efd4118 76void
77__cv_destroy(kcondvar_t *cvp)
78{
b17edc10 79 SENTRY;
4efd4118 80 ASSERT(cvp);
81 ASSERT(cvp->cv_magic == CV_MAGIC);
d599e4fa 82
d2733258
BB
83 cvp->cv_magic = CV_DESTROY;
84 atomic_dec(&cvp->cv_refs);
85
86 /* Block until all waiters are woken and references dropped. */
d599e4fa
BB
87 while (cv_destroy_wakeup(cvp) == 0)
88 wait_event_timeout(cvp->cv_destroy, cv_destroy_wakeup(cvp), 1);
89
3c60f505 90 ASSERT3P(cvp->cv_mutex, ==, NULL);
d2733258 91 ASSERT3S(atomic_read(&cvp->cv_refs), ==, 0);
3c60f505
BB
92 ASSERT3S(atomic_read(&cvp->cv_waiters), ==, 0);
93 ASSERT3S(waitqueue_active(&cvp->cv_event), ==, 0);
4efd4118 94
b17edc10 95 SEXIT;
4efd4118 96}
97EXPORT_SYMBOL(__cv_destroy);
98
f752b46e 99static void
46a75aad 100cv_wait_common(kcondvar_t *cvp, kmutex_t *mp, int state, int io)
4efd4118 101{
102 DEFINE_WAIT(wait);
b17edc10 103 SENTRY;
4efd4118 104
105 ASSERT(cvp);
106 ASSERT(mp);
107 ASSERT(cvp->cv_magic == CV_MAGIC);
4efd4118 108 ASSERT(mutex_owned(mp));
d2733258 109 atomic_inc(&cvp->cv_refs);
4efd4118 110
111 if (cvp->cv_mutex == NULL)
112 cvp->cv_mutex = mp;
113
114 /* Ensure the same mutex is used by all callers */
115 ASSERT(cvp->cv_mutex == mp);
4efd4118 116
f752b46e 117 prepare_to_wait_exclusive(&cvp->cv_event, &wait, state);
4efd4118 118 atomic_inc(&cvp->cv_waiters);
119
120 /* Mutex should be dropped after prepare_to_wait() this
121 * ensures we're linked in to the waiters list and avoids the
122 * race where 'cvp->cv_waiters > 0' but the list is empty. */
123 mutex_exit(mp);
46a75aad
MJ
124 if (io)
125 io_schedule();
126 else
127 schedule();
4efd4118 128 mutex_enter(mp);
129
058de03c 130 /* No more waiters a different mutex could be used */
d599e4fa 131 if (atomic_dec_and_test(&cvp->cv_waiters)) {
058de03c 132 cvp->cv_mutex = NULL;
d599e4fa
BB
133 wake_up(&cvp->cv_destroy);
134 }
058de03c 135
4efd4118 136 finish_wait(&cvp->cv_event, &wait);
d2733258 137 atomic_dec(&cvp->cv_refs);
d599e4fa 138
b17edc10 139 SEXIT;
4efd4118 140}
f752b46e
BB
141
142void
143__cv_wait(kcondvar_t *cvp, kmutex_t *mp)
144{
46a75aad 145 cv_wait_common(cvp, mp, TASK_UNINTERRUPTIBLE, 0);
f752b46e 146}
4efd4118 147EXPORT_SYMBOL(__cv_wait);
148
f752b46e
BB
149void
150__cv_wait_interruptible(kcondvar_t *cvp, kmutex_t *mp)
151{
46a75aad 152 cv_wait_common(cvp, mp, TASK_INTERRUPTIBLE, 0);
f752b46e
BB
153}
154EXPORT_SYMBOL(__cv_wait_interruptible);
155
46a75aad
MJ
156void
157__cv_wait_io(kcondvar_t *cvp, kmutex_t *mp)
158{
159 cv_wait_common(cvp, mp, TASK_UNINTERRUPTIBLE, 1);
160}
161EXPORT_SYMBOL(__cv_wait_io);
162
4efd4118 163/* 'expire_time' argument is an absolute wall clock time in jiffies.
164 * Return value is time left (expire_time - now) or -1 if timeout occurred.
165 */
3f688a8c
NK
166static clock_t
167__cv_timedwait_common(kcondvar_t *cvp, kmutex_t *mp,
168 clock_t expire_time, int state)
4efd4118 169{
170 DEFINE_WAIT(wait);
171 clock_t time_left;
b17edc10 172 SENTRY;
4efd4118 173
174 ASSERT(cvp);
175 ASSERT(mp);
176 ASSERT(cvp->cv_magic == CV_MAGIC);
4efd4118 177 ASSERT(mutex_owned(mp));
d2733258 178 atomic_inc(&cvp->cv_refs);
4efd4118 179
180 if (cvp->cv_mutex == NULL)
181 cvp->cv_mutex = mp;
182
183 /* Ensure the same mutex is used by all callers */
184 ASSERT(cvp->cv_mutex == mp);
4efd4118 185
186 /* XXX - Does not handle jiffie wrap properly */
187 time_left = expire_time - jiffies;
d2733258
BB
188 if (time_left <= 0) {
189 atomic_dec(&cvp->cv_refs);
b17edc10 190 SRETURN(-1);
d2733258 191 }
4efd4118 192
3f688a8c 193 prepare_to_wait_exclusive(&cvp->cv_event, &wait, state);
4efd4118 194 atomic_inc(&cvp->cv_waiters);
195
196 /* Mutex should be dropped after prepare_to_wait() this
197 * ensures we're linked in to the waiters list and avoids the
198 * race where 'cvp->cv_waiters > 0' but the list is empty. */
199 mutex_exit(mp);
200 time_left = schedule_timeout(time_left);
201 mutex_enter(mp);
202
058de03c 203 /* No more waiters a different mutex could be used */
d599e4fa 204 if (atomic_dec_and_test(&cvp->cv_waiters)) {
058de03c 205 cvp->cv_mutex = NULL;
d599e4fa
BB
206 wake_up(&cvp->cv_destroy);
207 }
058de03c 208
4efd4118 209 finish_wait(&cvp->cv_event, &wait);
d2733258 210 atomic_dec(&cvp->cv_refs);
4efd4118 211
b17edc10 212 SRETURN(time_left > 0 ? time_left : -1);
4efd4118 213}
3f688a8c
NK
214
215clock_t
216__cv_timedwait(kcondvar_t *cvp, kmutex_t *mp, clock_t exp_time)
217{
218 return __cv_timedwait_common(cvp, mp, exp_time, TASK_UNINTERRUPTIBLE);
219}
4efd4118 220EXPORT_SYMBOL(__cv_timedwait);
221
3f688a8c
NK
222clock_t
223__cv_timedwait_interruptible(kcondvar_t *cvp, kmutex_t *mp, clock_t exp_time)
224{
225 return __cv_timedwait_common(cvp, mp, exp_time, TASK_INTERRUPTIBLE);
226}
227EXPORT_SYMBOL(__cv_timedwait_interruptible);
228
4efd4118 229void
230__cv_signal(kcondvar_t *cvp)
231{
b17edc10 232 SENTRY;
4efd4118 233 ASSERT(cvp);
234 ASSERT(cvp->cv_magic == CV_MAGIC);
d2733258 235 atomic_inc(&cvp->cv_refs);
4efd4118 236
237 /* All waiters are added with WQ_FLAG_EXCLUSIVE so only one
238 * waiter will be set runable with each call to wake_up().
239 * Additionally wake_up() holds a spin_lock assoicated with
240 * the wait queue to ensure we don't race waking up processes. */
241 if (atomic_read(&cvp->cv_waiters) > 0)
242 wake_up(&cvp->cv_event);
243
d2733258 244 atomic_dec(&cvp->cv_refs);
b17edc10 245 SEXIT;
4efd4118 246}
247EXPORT_SYMBOL(__cv_signal);
248
249void
250__cv_broadcast(kcondvar_t *cvp)
251{
d2733258 252 SENTRY;
4efd4118 253 ASSERT(cvp);
254 ASSERT(cvp->cv_magic == CV_MAGIC);
d2733258 255 atomic_inc(&cvp->cv_refs);
4efd4118 256
257 /* Wake_up_all() will wake up all waiters even those which
258 * have the WQ_FLAG_EXCLUSIVE flag set. */
259 if (atomic_read(&cvp->cv_waiters) > 0)
260 wake_up_all(&cvp->cv_event);
261
d2733258 262 atomic_dec(&cvp->cv_refs);
b17edc10 263 SEXIT;
4efd4118 264}
265EXPORT_SYMBOL(__cv_broadcast);