2010-05-18 02:18:00 +04:00
|
|
|
/*****************************************************************************\
|
|
|
|
* Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
|
|
|
|
* Copyright (C) 2007 The Regents of the University of California.
|
|
|
|
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
|
|
|
|
* Written by Brian Behlendorf <behlendorf1@llnl.gov>.
|
2008-05-26 08:38:26 +04:00
|
|
|
* UCRL-CODE-235197
|
|
|
|
*
|
2010-05-18 02:18:00 +04:00
|
|
|
* This file is part of the SPL, Solaris Porting Layer.
|
|
|
|
* For details, see <http://github.com/behlendorf/spl/>.
|
|
|
|
*
|
|
|
|
* The SPL is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
|
|
* option) any later version.
|
2008-05-26 08:38:26 +04:00
|
|
|
*
|
2010-05-18 02:18:00 +04:00
|
|
|
* The SPL is distributed in the hope that it will be useful, but WITHOUT
|
2008-05-26 08:38:26 +04:00
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
2010-05-18 02:18:00 +04:00
|
|
|
* with the SPL. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*****************************************************************************
|
|
|
|
* Solaris Porting Layer (SPL) Credential Implementation.
|
|
|
|
\*****************************************************************************/
|
2008-05-26 08:38:26 +04:00
|
|
|
|
2008-05-15 21:10:30 +04:00
|
|
|
#include <sys/condvar.h>
|
2010-07-20 01:16:05 +04:00
|
|
|
#include <spl-debug.h>
|
2008-05-15 21:10:30 +04:00
|
|
|
|
2010-07-20 22:55:37 +04:00
|
|
|
#ifdef SS_DEBUG_SUBSYS
|
|
|
|
#undef SS_DEBUG_SUBSYS
|
2008-05-15 21:10:30 +04:00
|
|
|
#endif
|
|
|
|
|
2010-07-20 22:55:37 +04:00
|
|
|
#define SS_DEBUG_SUBSYS SS_CONDVAR
|
2008-05-15 21:10:30 +04:00
|
|
|
|
|
|
|
void
|
|
|
|
__cv_init(kcondvar_t *cvp, char *name, kcv_type_t type, void *arg)
|
|
|
|
{
|
|
|
|
int flags = KM_SLEEP;
|
|
|
|
|
2010-07-20 22:55:37 +04:00
|
|
|
SENTRY;
|
2008-05-15 21:10:30 +04:00
|
|
|
ASSERT(cvp);
|
2012-04-06 22:29:23 +04:00
|
|
|
ASSERT(name == NULL);
|
2008-05-15 21:10:30 +04:00
|
|
|
ASSERT(type == CV_DEFAULT);
|
|
|
|
ASSERT(arg == NULL);
|
|
|
|
|
|
|
|
cvp->cv_magic = CV_MAGIC;
|
|
|
|
init_waitqueue_head(&cvp->cv_event);
|
2011-02-05 01:09:08 +03:00
|
|
|
init_waitqueue_head(&cvp->cv_destroy);
|
2008-05-15 21:10:30 +04:00
|
|
|
atomic_set(&cvp->cv_waiters, 0);
|
|
|
|
cvp->cv_mutex = NULL;
|
|
|
|
|
|
|
|
/* We may be called when there is a non-zero preempt_count or
|
|
|
|
* interrupts are disabled is which case we must not sleep.
|
|
|
|
*/
|
|
|
|
if (current_thread_info()->preempt_count || irqs_disabled())
|
|
|
|
flags = KM_NOSLEEP;
|
|
|
|
|
2010-07-20 22:55:37 +04:00
|
|
|
SEXIT;
|
2008-05-15 21:10:30 +04:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(__cv_init);
|
|
|
|
|
2011-02-05 01:09:08 +03:00
|
|
|
static int
|
|
|
|
cv_destroy_wakeup(kcondvar_t *cvp)
|
|
|
|
{
|
2012-09-07 22:05:46 +04:00
|
|
|
if ((cvp->cv_mutex != NULL) ||
|
|
|
|
(waitqueue_active(&cvp->cv_event)) ||
|
2011-02-05 01:09:08 +03:00
|
|
|
(atomic_read(&cvp->cv_waiters) > 0))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-05-15 21:10:30 +04:00
|
|
|
void
|
|
|
|
__cv_destroy(kcondvar_t *cvp)
|
|
|
|
{
|
2010-07-20 22:55:37 +04:00
|
|
|
SENTRY;
|
2008-05-15 21:10:30 +04:00
|
|
|
ASSERT(cvp);
|
|
|
|
ASSERT(cvp->cv_magic == CV_MAGIC);
|
2011-02-05 01:09:08 +03:00
|
|
|
|
|
|
|
/* Block until all waiters have woken */
|
|
|
|
while (cv_destroy_wakeup(cvp) == 0)
|
|
|
|
wait_event_timeout(cvp->cv_destroy, cv_destroy_wakeup(cvp), 1);
|
|
|
|
|
2012-09-07 22:05:46 +04:00
|
|
|
ASSERT3P(cvp->cv_mutex, ==, NULL);
|
|
|
|
ASSERT3S(atomic_read(&cvp->cv_waiters), ==, 0);
|
|
|
|
ASSERT3S(waitqueue_active(&cvp->cv_event), ==, 0);
|
2008-05-15 21:10:30 +04:00
|
|
|
|
2010-07-20 22:55:37 +04:00
|
|
|
SEXIT;
|
2008-05-15 21:10:30 +04:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(__cv_destroy);
|
|
|
|
|
2010-05-14 20:24:51 +04:00
|
|
|
static void
|
|
|
|
cv_wait_common(kcondvar_t *cvp, kmutex_t *mp, int state)
|
2008-05-15 21:10:30 +04:00
|
|
|
{
|
|
|
|
DEFINE_WAIT(wait);
|
2010-07-20 22:55:37 +04:00
|
|
|
SENTRY;
|
2008-05-15 21:10:30 +04:00
|
|
|
|
|
|
|
ASSERT(cvp);
|
|
|
|
ASSERT(mp);
|
|
|
|
ASSERT(cvp->cv_magic == CV_MAGIC);
|
|
|
|
ASSERT(mutex_owned(mp));
|
|
|
|
|
|
|
|
if (cvp->cv_mutex == NULL)
|
|
|
|
cvp->cv_mutex = mp;
|
|
|
|
|
|
|
|
/* Ensure the same mutex is used by all callers */
|
|
|
|
ASSERT(cvp->cv_mutex == mp);
|
|
|
|
|
2010-05-14 20:24:51 +04:00
|
|
|
prepare_to_wait_exclusive(&cvp->cv_event, &wait, state);
|
2008-05-15 21:10:30 +04:00
|
|
|
atomic_inc(&cvp->cv_waiters);
|
|
|
|
|
|
|
|
/* Mutex should be dropped after prepare_to_wait() this
|
|
|
|
* ensures we're linked in to the waiters list and avoids the
|
|
|
|
* race where 'cvp->cv_waiters > 0' but the list is empty. */
|
|
|
|
mutex_exit(mp);
|
|
|
|
schedule();
|
|
|
|
mutex_enter(mp);
|
|
|
|
|
2010-11-23 21:56:55 +03:00
|
|
|
/* No more waiters a different mutex could be used */
|
2011-02-05 01:09:08 +03:00
|
|
|
if (atomic_dec_and_test(&cvp->cv_waiters)) {
|
2010-11-23 21:56:55 +03:00
|
|
|
cvp->cv_mutex = NULL;
|
2011-02-05 01:09:08 +03:00
|
|
|
wake_up(&cvp->cv_destroy);
|
|
|
|
}
|
2010-11-23 21:56:55 +03:00
|
|
|
|
2008-05-15 21:10:30 +04:00
|
|
|
finish_wait(&cvp->cv_event, &wait);
|
2011-02-05 01:09:08 +03:00
|
|
|
|
2010-07-20 22:55:37 +04:00
|
|
|
SEXIT;
|
2008-05-15 21:10:30 +04:00
|
|
|
}
|
2010-05-14 20:24:51 +04:00
|
|
|
|
|
|
|
void
|
|
|
|
__cv_wait(kcondvar_t *cvp, kmutex_t *mp)
|
|
|
|
{
|
|
|
|
cv_wait_common(cvp, mp, TASK_UNINTERRUPTIBLE);
|
|
|
|
}
|
2008-05-15 21:10:30 +04:00
|
|
|
EXPORT_SYMBOL(__cv_wait);
|
|
|
|
|
2010-05-14 20:24:51 +04:00
|
|
|
void
|
|
|
|
__cv_wait_interruptible(kcondvar_t *cvp, kmutex_t *mp)
|
|
|
|
{
|
|
|
|
cv_wait_common(cvp, mp, TASK_INTERRUPTIBLE);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(__cv_wait_interruptible);
|
|
|
|
|
2008-05-15 21:10:30 +04:00
|
|
|
/* 'expire_time' argument is an absolute wall clock time in jiffies.
|
|
|
|
* Return value is time left (expire_time - now) or -1 if timeout occurred.
|
|
|
|
*/
|
2010-12-06 14:35:58 +03:00
|
|
|
static clock_t
|
|
|
|
__cv_timedwait_common(kcondvar_t *cvp, kmutex_t *mp,
|
|
|
|
clock_t expire_time, int state)
|
2008-05-15 21:10:30 +04:00
|
|
|
{
|
|
|
|
DEFINE_WAIT(wait);
|
|
|
|
clock_t time_left;
|
2010-07-20 22:55:37 +04:00
|
|
|
SENTRY;
|
2008-05-15 21:10:30 +04:00
|
|
|
|
|
|
|
ASSERT(cvp);
|
|
|
|
ASSERT(mp);
|
|
|
|
ASSERT(cvp->cv_magic == CV_MAGIC);
|
|
|
|
ASSERT(mutex_owned(mp));
|
|
|
|
|
|
|
|
if (cvp->cv_mutex == NULL)
|
|
|
|
cvp->cv_mutex = mp;
|
|
|
|
|
|
|
|
/* Ensure the same mutex is used by all callers */
|
|
|
|
ASSERT(cvp->cv_mutex == mp);
|
|
|
|
|
|
|
|
/* XXX - Does not handle jiffie wrap properly */
|
|
|
|
time_left = expire_time - jiffies;
|
|
|
|
if (time_left <= 0)
|
2010-07-20 22:55:37 +04:00
|
|
|
SRETURN(-1);
|
2008-05-15 21:10:30 +04:00
|
|
|
|
2010-12-06 14:35:58 +03:00
|
|
|
prepare_to_wait_exclusive(&cvp->cv_event, &wait, state);
|
2008-05-15 21:10:30 +04:00
|
|
|
atomic_inc(&cvp->cv_waiters);
|
|
|
|
|
|
|
|
/* Mutex should be dropped after prepare_to_wait() this
|
|
|
|
* ensures we're linked in to the waiters list and avoids the
|
|
|
|
* race where 'cvp->cv_waiters > 0' but the list is empty. */
|
|
|
|
mutex_exit(mp);
|
|
|
|
time_left = schedule_timeout(time_left);
|
|
|
|
mutex_enter(mp);
|
|
|
|
|
2010-11-23 21:56:55 +03:00
|
|
|
/* No more waiters a different mutex could be used */
|
2011-02-05 01:09:08 +03:00
|
|
|
if (atomic_dec_and_test(&cvp->cv_waiters)) {
|
2010-11-23 21:56:55 +03:00
|
|
|
cvp->cv_mutex = NULL;
|
2011-02-05 01:09:08 +03:00
|
|
|
wake_up(&cvp->cv_destroy);
|
|
|
|
}
|
2010-11-23 21:56:55 +03:00
|
|
|
|
2008-05-15 21:10:30 +04:00
|
|
|
finish_wait(&cvp->cv_event, &wait);
|
|
|
|
|
2010-07-20 22:55:37 +04:00
|
|
|
SRETURN(time_left > 0 ? time_left : -1);
|
2008-05-15 21:10:30 +04:00
|
|
|
}
|
2010-12-06 14:35:58 +03:00
|
|
|
|
|
|
|
clock_t
|
|
|
|
__cv_timedwait(kcondvar_t *cvp, kmutex_t *mp, clock_t exp_time)
|
|
|
|
{
|
|
|
|
return __cv_timedwait_common(cvp, mp, exp_time, TASK_UNINTERRUPTIBLE);
|
|
|
|
}
|
2008-05-15 21:10:30 +04:00
|
|
|
EXPORT_SYMBOL(__cv_timedwait);
|
|
|
|
|
2010-12-06 14:35:58 +03:00
|
|
|
clock_t
|
|
|
|
__cv_timedwait_interruptible(kcondvar_t *cvp, kmutex_t *mp, clock_t exp_time)
|
|
|
|
{
|
|
|
|
return __cv_timedwait_common(cvp, mp, exp_time, TASK_INTERRUPTIBLE);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(__cv_timedwait_interruptible);
|
|
|
|
|
2008-05-15 21:10:30 +04:00
|
|
|
void
|
|
|
|
__cv_signal(kcondvar_t *cvp)
|
|
|
|
{
|
2010-07-20 22:55:37 +04:00
|
|
|
SENTRY;
|
2008-05-15 21:10:30 +04:00
|
|
|
ASSERT(cvp);
|
|
|
|
ASSERT(cvp->cv_magic == CV_MAGIC);
|
|
|
|
|
|
|
|
/* All waiters are added with WQ_FLAG_EXCLUSIVE so only one
|
|
|
|
* waiter will be set runable with each call to wake_up().
|
|
|
|
* Additionally wake_up() holds a spin_lock assoicated with
|
|
|
|
* the wait queue to ensure we don't race waking up processes. */
|
|
|
|
if (atomic_read(&cvp->cv_waiters) > 0)
|
|
|
|
wake_up(&cvp->cv_event);
|
|
|
|
|
2010-07-20 22:55:37 +04:00
|
|
|
SEXIT;
|
2008-05-15 21:10:30 +04:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(__cv_signal);
|
|
|
|
|
|
|
|
void
|
|
|
|
__cv_broadcast(kcondvar_t *cvp)
|
|
|
|
{
|
|
|
|
ASSERT(cvp);
|
|
|
|
ASSERT(cvp->cv_magic == CV_MAGIC);
|
2010-07-20 22:55:37 +04:00
|
|
|
SENTRY;
|
2008-05-15 21:10:30 +04:00
|
|
|
|
|
|
|
/* Wake_up_all() will wake up all waiters even those which
|
|
|
|
* have the WQ_FLAG_EXCLUSIVE flag set. */
|
|
|
|
if (atomic_read(&cvp->cv_waiters) > 0)
|
|
|
|
wake_up_all(&cvp->cv_event);
|
|
|
|
|
2010-07-20 22:55:37 +04:00
|
|
|
SEXIT;
|
2008-05-15 21:10:30 +04:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(__cv_broadcast);
|