]> git.proxmox.com Git - mirror_spl.git/blame - module/spl/spl-condvar.c
Linux Compat: inode->i_mutex/i_sem
[mirror_spl.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
BB
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.
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);
43 ASSERT(name);
44 ASSERT(type == CV_DEFAULT);
45 ASSERT(arg == NULL);
46
47 cvp->cv_magic = CV_MAGIC;
48 init_waitqueue_head(&cvp->cv_event);
4efd4118 49 atomic_set(&cvp->cv_waiters, 0);
50 cvp->cv_mutex = NULL;
51 cvp->cv_name = NULL;
52 cvp->cv_name_size = strlen(name) + 1;
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
60 cvp->cv_name = kmem_alloc(cvp->cv_name_size, flags);
61 if (cvp->cv_name)
62 strcpy(cvp->cv_name, name);
63
b17edc10 64 SEXIT;
4efd4118 65}
66EXPORT_SYMBOL(__cv_init);
67
68void
69__cv_destroy(kcondvar_t *cvp)
70{
b17edc10 71 SENTRY;
4efd4118 72 ASSERT(cvp);
73 ASSERT(cvp->cv_magic == CV_MAGIC);
058de03c 74 ASSERT(cvp->cv_mutex == NULL);
4efd4118 75 ASSERT(atomic_read(&cvp->cv_waiters) == 0);
76 ASSERT(!waitqueue_active(&cvp->cv_event));
77
78 if (cvp->cv_name)
79 kmem_free(cvp->cv_name, cvp->cv_name_size);
80
058de03c 81 ASSERT3P(memset(cvp, CV_POISON, sizeof(*cvp)), ==, cvp);
b17edc10 82 SEXIT;
4efd4118 83}
84EXPORT_SYMBOL(__cv_destroy);
85
f752b46e
BB
86static void
87cv_wait_common(kcondvar_t *cvp, kmutex_t *mp, int state)
4efd4118 88{
89 DEFINE_WAIT(wait);
b17edc10 90 SENTRY;
4efd4118 91
92 ASSERT(cvp);
93 ASSERT(mp);
94 ASSERT(cvp->cv_magic == CV_MAGIC);
4efd4118 95 ASSERT(mutex_owned(mp));
96
97 if (cvp->cv_mutex == NULL)
98 cvp->cv_mutex = mp;
99
100 /* Ensure the same mutex is used by all callers */
101 ASSERT(cvp->cv_mutex == mp);
4efd4118 102
f752b46e 103 prepare_to_wait_exclusive(&cvp->cv_event, &wait, state);
4efd4118 104 atomic_inc(&cvp->cv_waiters);
105
106 /* Mutex should be dropped after prepare_to_wait() this
107 * ensures we're linked in to the waiters list and avoids the
108 * race where 'cvp->cv_waiters > 0' but the list is empty. */
109 mutex_exit(mp);
110 schedule();
111 mutex_enter(mp);
112
058de03c
BB
113 /* No more waiters a different mutex could be used */
114 if (atomic_dec_and_test(&cvp->cv_waiters))
115 cvp->cv_mutex = NULL;
116
4efd4118 117 finish_wait(&cvp->cv_event, &wait);
b17edc10 118 SEXIT;
4efd4118 119}
f752b46e
BB
120
121void
122__cv_wait(kcondvar_t *cvp, kmutex_t *mp)
123{
124 cv_wait_common(cvp, mp, TASK_UNINTERRUPTIBLE);
125}
4efd4118 126EXPORT_SYMBOL(__cv_wait);
127
f752b46e
BB
128void
129__cv_wait_interruptible(kcondvar_t *cvp, kmutex_t *mp)
130{
131 cv_wait_common(cvp, mp, TASK_INTERRUPTIBLE);
132}
133EXPORT_SYMBOL(__cv_wait_interruptible);
134
4efd4118 135/* 'expire_time' argument is an absolute wall clock time in jiffies.
136 * Return value is time left (expire_time - now) or -1 if timeout occurred.
137 */
138clock_t
139__cv_timedwait(kcondvar_t *cvp, kmutex_t *mp, clock_t expire_time)
140{
141 DEFINE_WAIT(wait);
142 clock_t time_left;
b17edc10 143 SENTRY;
4efd4118 144
145 ASSERT(cvp);
146 ASSERT(mp);
147 ASSERT(cvp->cv_magic == CV_MAGIC);
4efd4118 148 ASSERT(mutex_owned(mp));
149
150 if (cvp->cv_mutex == NULL)
151 cvp->cv_mutex = mp;
152
153 /* Ensure the same mutex is used by all callers */
154 ASSERT(cvp->cv_mutex == mp);
4efd4118 155
156 /* XXX - Does not handle jiffie wrap properly */
157 time_left = expire_time - jiffies;
158 if (time_left <= 0)
b17edc10 159 SRETURN(-1);
4efd4118 160
161 prepare_to_wait_exclusive(&cvp->cv_event, &wait,
162 TASK_UNINTERRUPTIBLE);
163 atomic_inc(&cvp->cv_waiters);
164
165 /* Mutex should be dropped after prepare_to_wait() this
166 * ensures we're linked in to the waiters list and avoids the
167 * race where 'cvp->cv_waiters > 0' but the list is empty. */
168 mutex_exit(mp);
169 time_left = schedule_timeout(time_left);
170 mutex_enter(mp);
171
058de03c
BB
172 /* No more waiters a different mutex could be used */
173 if (atomic_dec_and_test(&cvp->cv_waiters))
174 cvp->cv_mutex = NULL;
175
4efd4118 176 finish_wait(&cvp->cv_event, &wait);
177
b17edc10 178 SRETURN(time_left > 0 ? time_left : -1);
4efd4118 179}
180EXPORT_SYMBOL(__cv_timedwait);
181
182void
183__cv_signal(kcondvar_t *cvp)
184{
b17edc10 185 SENTRY;
4efd4118 186 ASSERT(cvp);
187 ASSERT(cvp->cv_magic == CV_MAGIC);
188
189 /* All waiters are added with WQ_FLAG_EXCLUSIVE so only one
190 * waiter will be set runable with each call to wake_up().
191 * Additionally wake_up() holds a spin_lock assoicated with
192 * the wait queue to ensure we don't race waking up processes. */
193 if (atomic_read(&cvp->cv_waiters) > 0)
194 wake_up(&cvp->cv_event);
195
b17edc10 196 SEXIT;
4efd4118 197}
198EXPORT_SYMBOL(__cv_signal);
199
200void
201__cv_broadcast(kcondvar_t *cvp)
202{
203 ASSERT(cvp);
204 ASSERT(cvp->cv_magic == CV_MAGIC);
b17edc10 205 SENTRY;
4efd4118 206
207 /* Wake_up_all() will wake up all waiters even those which
208 * have the WQ_FLAG_EXCLUSIVE flag set. */
209 if (atomic_read(&cvp->cv_waiters) > 0)
210 wake_up_all(&cvp->cv_event);
211
b17edc10 212 SEXIT;
4efd4118 213}
214EXPORT_SYMBOL(__cv_broadcast);