Home | History | Annotate | Line # | Download | only in kern
kern_turnstile.c revision 1.31
      1  1.30  uebayasi /*	$NetBSD: kern_turnstile.c,v 1.31 2011/12/02 12:31:53 yamt Exp $	*/
      2   1.2        ad 
      3   1.2        ad /*-
      4  1.24        ad  * Copyright (c) 2002, 2006, 2007, 2009 The NetBSD Foundation, Inc.
      5   1.2        ad  * All rights reserved.
      6   1.2        ad  *
      7   1.2        ad  * This code is derived from software contributed to The NetBSD Foundation
      8   1.2        ad  * by Jason R. Thorpe and Andrew Doran.
      9   1.2        ad  *
     10   1.2        ad  * Redistribution and use in source and binary forms, with or without
     11   1.2        ad  * modification, are permitted provided that the following conditions
     12   1.2        ad  * are met:
     13   1.2        ad  * 1. Redistributions of source code must retain the above copyright
     14   1.2        ad  *    notice, this list of conditions and the following disclaimer.
     15   1.2        ad  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.2        ad  *    notice, this list of conditions and the following disclaimer in the
     17   1.2        ad  *    documentation and/or other materials provided with the distribution.
     18   1.2        ad  *
     19   1.2        ad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20   1.2        ad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21   1.2        ad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22   1.2        ad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23   1.2        ad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24   1.2        ad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25   1.2        ad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26   1.2        ad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27   1.2        ad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28   1.2        ad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29   1.2        ad  * POSSIBILITY OF SUCH DAMAGE.
     30   1.2        ad  */
     31   1.2        ad 
     32   1.2        ad /*
     33   1.2        ad  * Turnstiles are described in detail in:
     34   1.2        ad  *
     35   1.2        ad  *	Solaris Internals: Core Kernel Architecture, Jim Mauro and
     36   1.2        ad  *	    Richard McDougall.
     37   1.2        ad  *
     38   1.2        ad  * Turnstiles are kept in a hash table.  There are likely to be many more
     39   1.2        ad  * synchronisation objects than there are threads.  Since a thread can block
     40   1.2        ad  * on only one lock at a time, we only need one turnstile per thread, and
     41   1.2        ad  * so they are allocated at thread creation time.
     42   1.2        ad  *
     43   1.2        ad  * When a thread decides it needs to block on a lock, it looks up the
     44   1.2        ad  * active turnstile for that lock.  If no active turnstile exists, then
     45   1.2        ad  * the process lends its turnstile to the lock.  If there is already an
     46   1.2        ad  * active turnstile for the lock, the thread places its turnstile on a
     47   1.2        ad  * list of free turnstiles, and references the active one instead.
     48   1.2        ad  *
     49   1.2        ad  * The act of looking up the turnstile acquires an interlock on the sleep
     50   1.2        ad  * queue.  If a thread decides it doesn't need to block after all, then this
     51   1.2        ad  * interlock must be released by explicitly aborting the turnstile
     52   1.2        ad  * operation.
     53   1.2        ad  *
     54   1.2        ad  * When a thread is awakened, it needs to get its turnstile back.  If there
     55  1.18       alc  * are still other threads waiting in the active turnstile, the thread
     56   1.2        ad  * grabs a free turnstile off the free list.  Otherwise, it can take back
     57   1.2        ad  * the active turnstile from the lock (thus deactivating the turnstile).
     58   1.2        ad  *
     59   1.4      yamt  * Turnstiles are the place to do priority inheritence.
     60   1.2        ad  */
     61   1.2        ad 
     62   1.2        ad #include <sys/cdefs.h>
     63  1.30  uebayasi __KERNEL_RCSID(0, "$NetBSD: kern_turnstile.c,v 1.31 2011/12/02 12:31:53 yamt Exp $");
     64   1.2        ad 
     65   1.2        ad #include <sys/param.h>
     66   1.4      yamt #include <sys/lockdebug.h>
     67   1.2        ad #include <sys/pool.h>
     68   1.2        ad #include <sys/proc.h>
     69   1.2        ad #include <sys/sleepq.h>
     70   1.2        ad #include <sys/systm.h>
     71   1.2        ad 
     72   1.2        ad #define	TS_HASH_SIZE	64
     73   1.2        ad #define	TS_HASH_MASK	(TS_HASH_SIZE - 1)
     74   1.2        ad #define	TS_HASH(obj)	(((uintptr_t)(obj) >> 3) & TS_HASH_MASK)
     75   1.2        ad 
     76  1.29     rmind static tschain_t	turnstile_tab[TS_HASH_SIZE]	__cacheline_aligned;
     77  1.29     rmind pool_cache_t		turnstile_cache			__read_mostly;
     78   1.2        ad 
     79  1.29     rmind static int		turnstile_ctor(void *, void *, int);
     80   1.2        ad 
     81  1.29     rmind extern turnstile_t	turnstile0;
     82   1.2        ad 
     83   1.2        ad /*
     84   1.2        ad  * turnstile_init:
     85   1.2        ad  *
     86   1.2        ad  *	Initialize the turnstile mechanism.
     87   1.2        ad  */
     88   1.2        ad void
     89   1.2        ad turnstile_init(void)
     90   1.2        ad {
     91   1.2        ad 	tschain_t *tc;
     92   1.2        ad 	int i;
     93   1.2        ad 
     94   1.2        ad 	for (i = 0; i < TS_HASH_SIZE; i++) {
     95   1.2        ad 		tc = &turnstile_tab[i];
     96   1.2        ad 		LIST_INIT(&tc->tc_chain);
     97  1.24        ad 		tc->tc_mutex = mutex_obj_alloc(MUTEX_DEFAULT, IPL_SCHED);
     98   1.2        ad 	}
     99   1.2        ad 
    100  1.12        ad 	turnstile_cache = pool_cache_init(sizeof(turnstile_t), 0, 0, 0,
    101  1.12        ad 	    "tstilepl", NULL, IPL_NONE, turnstile_ctor, NULL, NULL);
    102  1.12        ad 	KASSERT(turnstile_cache != NULL);
    103   1.2        ad 
    104   1.2        ad 	(void)turnstile_ctor(NULL, &turnstile0, 0);
    105   1.2        ad }
    106   1.2        ad 
    107   1.2        ad /*
    108   1.2        ad  * turnstile_ctor:
    109   1.2        ad  *
    110   1.2        ad  *	Constructor for turnstiles.
    111   1.2        ad  */
    112  1.29     rmind static int
    113   1.2        ad turnstile_ctor(void *arg, void *obj, int flags)
    114   1.2        ad {
    115   1.2        ad 	turnstile_t *ts = obj;
    116   1.2        ad 
    117   1.2        ad 	memset(ts, 0, sizeof(*ts));
    118  1.21        ad 	sleepq_init(&ts->ts_sleepq[TS_READER_Q]);
    119  1.21        ad 	sleepq_init(&ts->ts_sleepq[TS_WRITER_Q]);
    120   1.2        ad 	return (0);
    121   1.2        ad }
    122   1.2        ad 
    123   1.2        ad /*
    124   1.2        ad  * turnstile_remove:
    125   1.2        ad  *
    126   1.2        ad  *	Remove an LWP from a turnstile sleep queue and wake it.
    127   1.2        ad  */
    128   1.9      yamt static inline void
    129  1.21        ad turnstile_remove(turnstile_t *ts, lwp_t *l, int q)
    130   1.2        ad {
    131   1.2        ad 	turnstile_t *nts;
    132   1.2        ad 
    133   1.2        ad 	KASSERT(l->l_ts == ts);
    134   1.2        ad 
    135   1.2        ad 	/*
    136   1.2        ad 	 * This process is no longer using the active turnstile.
    137   1.2        ad 	 * Find an inactive one on the free list to give to it.
    138   1.2        ad 	 */
    139   1.2        ad 	if ((nts = ts->ts_free) != NULL) {
    140   1.2        ad 		KASSERT(TS_ALL_WAITERS(ts) > 1);
    141   1.2        ad 		l->l_ts = nts;
    142   1.2        ad 		ts->ts_free = nts->ts_free;
    143   1.2        ad 		nts->ts_free = NULL;
    144   1.2        ad 	} else {
    145   1.2        ad 		/*
    146   1.2        ad 		 * If the free list is empty, this is the last
    147   1.2        ad 		 * waiter.
    148   1.2        ad 		 */
    149   1.2        ad 		KASSERT(TS_ALL_WAITERS(ts) == 1);
    150   1.2        ad 		LIST_REMOVE(ts, ts_chain);
    151   1.2        ad 	}
    152   1.2        ad 
    153  1.21        ad 	ts->ts_waiters[q]--;
    154  1.26     rmind 	sleepq_remove(&ts->ts_sleepq[q], l);
    155   1.2        ad }
    156   1.2        ad 
    157   1.2        ad /*
    158   1.2        ad  * turnstile_lookup:
    159   1.2        ad  *
    160   1.2        ad  *	Look up the turnstile for the specified lock.  This acquires and
    161   1.2        ad  *	holds the turnstile chain lock (sleep queue interlock).
    162   1.2        ad  */
    163   1.2        ad turnstile_t *
    164   1.2        ad turnstile_lookup(wchan_t obj)
    165   1.2        ad {
    166   1.2        ad 	turnstile_t *ts;
    167   1.2        ad 	tschain_t *tc;
    168   1.2        ad 
    169   1.2        ad 	tc = &turnstile_tab[TS_HASH(obj)];
    170  1.24        ad 	mutex_spin_enter(tc->tc_mutex);
    171   1.2        ad 
    172   1.2        ad 	LIST_FOREACH(ts, &tc->tc_chain, ts_chain)
    173   1.2        ad 		if (ts->ts_obj == obj)
    174   1.2        ad 			return (ts);
    175   1.2        ad 
    176   1.2        ad 	/*
    177   1.2        ad 	 * No turnstile yet for this lock.  No problem, turnstile_block()
    178   1.2        ad 	 * handles this by fetching the turnstile from the blocking thread.
    179   1.2        ad 	 */
    180   1.2        ad 	return (NULL);
    181   1.2        ad }
    182   1.2        ad 
    183   1.2        ad /*
    184   1.2        ad  * turnstile_exit:
    185   1.2        ad  *
    186   1.2        ad  *	Abort a turnstile operation.
    187   1.2        ad  */
    188   1.2        ad void
    189   1.2        ad turnstile_exit(wchan_t obj)
    190   1.2        ad {
    191   1.2        ad 	tschain_t *tc;
    192   1.2        ad 
    193   1.2        ad 	tc = &turnstile_tab[TS_HASH(obj)];
    194  1.24        ad 	mutex_spin_exit(tc->tc_mutex);
    195   1.2        ad }
    196   1.2        ad 
    197   1.2        ad /*
    198  1.31      yamt  * turnstile_lendpri:
    199  1.31      yamt  *
    200  1.31      yamt  *	Lend our priority to lwps on the blocking chain.
    201  1.31      yamt  *
    202   1.2        ad  *
    203   1.2        ad  */
    204  1.31      yamt 
    205  1.31      yamt static void
    206  1.31      yamt turnstile_lendpri(lwp_t *cur)
    207   1.2        ad {
    208  1.31      yamt 	lwp_t * l = cur;
    209  1.31      yamt 	pri_t prio;
    210  1.19        ad 
    211  1.19        ad 	/*
    212  1.22        ad 	 * NOTE: if you get a panic in this code block, it is likely that
    213  1.22        ad 	 * a lock has been destroyed or corrupted while still in use.  Try
    214  1.22        ad 	 * compiling a kernel with LOCKDEBUG to pinpoint the problem.
    215   1.4      yamt 	 */
    216  1.31      yamt 
    217  1.31      yamt 	LOCKDEBUG_BARRIER(l->l_mutex, 1);
    218  1.31      yamt 	KASSERT(l == curlwp);
    219  1.11        ad 	prio = lwp_eprio(l);
    220   1.4      yamt 	for (;;) {
    221  1.31      yamt 		lwp_t *owner;
    222  1.31      yamt 		turnstile_t *ts;
    223   1.4      yamt 		bool dolock;
    224   1.4      yamt 
    225   1.4      yamt 		if (l->l_wchan == NULL)
    226   1.4      yamt 			break;
    227   1.4      yamt 
    228   1.4      yamt 		owner = (*l->l_syncobj->sobj_owner)(l->l_wchan);
    229   1.4      yamt 		if (owner == NULL)
    230   1.4      yamt 			break;
    231   1.4      yamt 
    232  1.25    bouyer 		/* The owner may have changed as we have dropped the tc lock */
    233  1.25    bouyer 		if (cur == owner) {
    234  1.25    bouyer 			/*
    235  1.25    bouyer 			 * we own the lock: stop here, sleepq_block()
    236  1.25    bouyer 			 * should wake up immediatly
    237  1.25    bouyer 			 */
    238  1.25    bouyer 			break;
    239  1.25    bouyer 		}
    240   1.4      yamt 		if (l->l_mutex != owner->l_mutex)
    241   1.4      yamt 			dolock = true;
    242   1.4      yamt 		else
    243   1.4      yamt 			dolock = false;
    244  1.28      yamt 		if (l == owner || (dolock && !lwp_trylock(owner))) {
    245   1.4      yamt 			/*
    246   1.4      yamt 			 * restart from curlwp.
    247  1.25    bouyer 			 * Note that there may be a livelock here:
    248  1.25    bouyer 			 * the owner may try grabing cur's lock (which is
    249  1.25    bouyer 			 * the tc lock) while we're trying to grab
    250  1.25    bouyer 			 * the owner's lock.
    251   1.4      yamt 			 */
    252   1.4      yamt 			lwp_unlock(l);
    253   1.4      yamt 			l = cur;
    254   1.4      yamt 			lwp_lock(l);
    255   1.4      yamt 			prio = lwp_eprio(l);
    256   1.4      yamt 			continue;
    257   1.4      yamt 		}
    258  1.11        ad 		if (prio <= lwp_eprio(owner)) {
    259   1.4      yamt 			if (dolock)
    260   1.4      yamt 				lwp_unlock(owner);
    261   1.4      yamt 			break;
    262   1.4      yamt 		}
    263   1.4      yamt 		ts = l->l_ts;
    264   1.4      yamt 		KASSERT(ts->ts_inheritor == owner || ts->ts_inheritor == NULL);
    265   1.4      yamt 		if (ts->ts_inheritor == NULL) {
    266   1.4      yamt 			ts->ts_inheritor = owner;
    267   1.4      yamt 			ts->ts_eprio = prio;
    268   1.4      yamt 			SLIST_INSERT_HEAD(&owner->l_pi_lenders, ts, ts_pichain);
    269   1.4      yamt 			lwp_lendpri(owner, prio);
    270  1.11        ad 		} else if (prio > ts->ts_eprio) {
    271   1.4      yamt 			ts->ts_eprio = prio;
    272   1.4      yamt 			lwp_lendpri(owner, prio);
    273   1.4      yamt 		}
    274   1.4      yamt 		if (dolock)
    275   1.4      yamt 			lwp_unlock(l);
    276   1.4      yamt 		l = owner;
    277   1.4      yamt 	}
    278   1.4      yamt 	LOCKDEBUG_BARRIER(l->l_mutex, 1);
    279   1.4      yamt 	if (cur->l_mutex != l->l_mutex) {
    280   1.4      yamt 		lwp_unlock(l);
    281   1.4      yamt 		lwp_lock(cur);
    282   1.4      yamt 	}
    283   1.4      yamt 	LOCKDEBUG_BARRIER(cur->l_mutex, 1);
    284  1.31      yamt }
    285  1.31      yamt 
    286  1.31      yamt /*
    287  1.31      yamt  * turnstile_unlendpri: undo turnstile_lendpri
    288  1.31      yamt  */
    289  1.31      yamt 
    290  1.31      yamt static void
    291  1.31      yamt turnstile_unlendpri(turnstile_t *ts)
    292  1.31      yamt {
    293  1.31      yamt 	lwp_t * const l = curlwp;
    294  1.31      yamt 	turnstile_t *iter;
    295  1.31      yamt 	turnstile_t *next;
    296  1.31      yamt 	turnstile_t *prev = NULL;
    297  1.31      yamt 	pri_t prio;
    298  1.31      yamt 	bool dolock;
    299  1.31      yamt 
    300  1.31      yamt 	KASSERT(ts->ts_inheritor != NULL);
    301  1.31      yamt 	ts->ts_inheritor = NULL;
    302  1.31      yamt 	dolock = l->l_mutex == l->l_cpu->ci_schedstate.spc_lwplock;
    303  1.31      yamt 	if (dolock) {
    304  1.31      yamt 		lwp_lock(l);
    305  1.31      yamt 	}
    306  1.31      yamt 
    307  1.31      yamt 	/*
    308  1.31      yamt 	 * the following loop does two things.
    309  1.31      yamt 	 *
    310  1.31      yamt 	 * - remove ts from the list.
    311  1.31      yamt 	 *
    312  1.31      yamt 	 * - from the rest of the list, find the highest priority.
    313  1.31      yamt 	 */
    314  1.31      yamt 
    315  1.31      yamt 	prio = -1;
    316  1.31      yamt 	KASSERT(!SLIST_EMPTY(&l->l_pi_lenders));
    317  1.31      yamt 	for (iter = SLIST_FIRST(&l->l_pi_lenders);
    318  1.31      yamt 	    iter != NULL; iter = next) {
    319  1.31      yamt 		KASSERT(lwp_eprio(l) >= ts->ts_eprio);
    320  1.31      yamt 		next = SLIST_NEXT(iter, ts_pichain);
    321  1.31      yamt 		if (iter == ts) {
    322  1.31      yamt 			if (prev == NULL) {
    323  1.31      yamt 				SLIST_REMOVE_HEAD(&l->l_pi_lenders,
    324  1.31      yamt 				    ts_pichain);
    325  1.31      yamt 			} else {
    326  1.31      yamt 				SLIST_REMOVE_AFTER(prev, ts_pichain);
    327  1.31      yamt 			}
    328  1.31      yamt 		} else if (prio < iter->ts_eprio) {
    329  1.31      yamt 			prio = iter->ts_eprio;
    330  1.31      yamt 		}
    331  1.31      yamt 		prev = iter;
    332  1.31      yamt 	}
    333  1.31      yamt 
    334  1.31      yamt 	lwp_lendpri(l, prio);
    335   1.4      yamt 
    336  1.31      yamt 	if (dolock) {
    337  1.31      yamt 		lwp_unlock(l);
    338  1.31      yamt 	}
    339  1.31      yamt }
    340  1.31      yamt 
    341  1.31      yamt /*
    342  1.31      yamt  * turnstile_block:
    343  1.31      yamt  *
    344  1.31      yamt  *	 Enter an object into the turnstile chain and prepare the current
    345  1.31      yamt  *	 LWP for sleep.
    346  1.31      yamt  */
    347  1.31      yamt void
    348  1.31      yamt turnstile_block(turnstile_t *ts, int q, wchan_t obj, syncobj_t *sobj)
    349  1.31      yamt {
    350  1.31      yamt 	lwp_t * const l = curlwp; /* cached curlwp */
    351  1.31      yamt 	turnstile_t *ots;
    352  1.31      yamt 	tschain_t *tc;
    353  1.31      yamt 	sleepq_t *sq;
    354  1.31      yamt 	pri_t obase;
    355  1.31      yamt 
    356  1.31      yamt 	tc = &turnstile_tab[TS_HASH(obj)];
    357  1.31      yamt 
    358  1.31      yamt 	KASSERT(q == TS_READER_Q || q == TS_WRITER_Q);
    359  1.31      yamt 	KASSERT(mutex_owned(tc->tc_mutex));
    360  1.31      yamt 	KASSERT(l != NULL && l->l_ts != NULL);
    361  1.31      yamt 
    362  1.31      yamt 	if (ts == NULL) {
    363  1.31      yamt 		/*
    364  1.31      yamt 		 * We are the first thread to wait for this object;
    365  1.31      yamt 		 * lend our turnstile to it.
    366  1.31      yamt 		 */
    367  1.31      yamt 		ts = l->l_ts;
    368  1.31      yamt 		KASSERT(TS_ALL_WAITERS(ts) == 0);
    369  1.31      yamt 		KASSERT(TAILQ_EMPTY(&ts->ts_sleepq[TS_READER_Q]) &&
    370  1.31      yamt 			TAILQ_EMPTY(&ts->ts_sleepq[TS_WRITER_Q]));
    371  1.31      yamt 		ts->ts_obj = obj;
    372  1.31      yamt 		ts->ts_inheritor = NULL;
    373  1.31      yamt 		LIST_INSERT_HEAD(&tc->tc_chain, ts, ts_chain);
    374  1.31      yamt 	} else {
    375  1.31      yamt 		/*
    376  1.31      yamt 		 * Object already has a turnstile.  Put our turnstile
    377  1.31      yamt 		 * onto the free list, and reference the existing
    378  1.31      yamt 		 * turnstile instead.
    379  1.31      yamt 		 */
    380  1.31      yamt 		ots = l->l_ts;
    381  1.31      yamt 		KASSERT(ots->ts_free == NULL);
    382  1.31      yamt 		ots->ts_free = ts->ts_free;
    383  1.31      yamt 		ts->ts_free = ots;
    384  1.31      yamt 		l->l_ts = ts;
    385  1.31      yamt 
    386  1.31      yamt 		KASSERT(ts->ts_obj == obj);
    387  1.31      yamt 		KASSERT(TS_ALL_WAITERS(ts) != 0);
    388  1.31      yamt 		KASSERT(!TAILQ_EMPTY(&ts->ts_sleepq[TS_READER_Q]) ||
    389  1.31      yamt 			!TAILQ_EMPTY(&ts->ts_sleepq[TS_WRITER_Q]));
    390  1.31      yamt 	}
    391  1.31      yamt 
    392  1.31      yamt 	sq = &ts->ts_sleepq[q];
    393  1.31      yamt 	ts->ts_waiters[q]++;
    394  1.31      yamt 	sleepq_enter(sq, l, tc->tc_mutex);
    395  1.31      yamt 	LOCKDEBUG_BARRIER(tc->tc_mutex, 1);
    396  1.31      yamt 	l->l_kpriority = true;
    397  1.31      yamt 	obase = l->l_kpribase;
    398  1.31      yamt 	if (obase < PRI_KTHREAD)
    399  1.31      yamt 		l->l_kpribase = PRI_KTHREAD;
    400  1.31      yamt 	sleepq_enqueue(sq, obj, "tstile", sobj);
    401  1.31      yamt 
    402  1.31      yamt 	/*
    403  1.31      yamt 	 * Disable preemption across this entire block, as we may drop
    404  1.31      yamt 	 * scheduler locks (allowing preemption), and would prefer not
    405  1.31      yamt 	 * to be interrupted while in a state of flux.
    406  1.31      yamt 	 */
    407  1.31      yamt 	KPREEMPT_DISABLE(l);
    408  1.31      yamt 	KASSERT(tc->tc_mutex == l->l_mutex);
    409  1.31      yamt 	turnstile_lendpri(l);
    410   1.9      yamt 	sleepq_block(0, false);
    411  1.31      yamt 	l->l_kpribase = obase;
    412  1.31      yamt 	KPREEMPT_ENABLE(l);
    413   1.2        ad }
    414   1.2        ad 
    415   1.2        ad /*
    416   1.2        ad  * turnstile_wakeup:
    417   1.2        ad  *
    418   1.2        ad  *	Wake up the specified number of threads that are blocked
    419   1.2        ad  *	in a turnstile.
    420   1.2        ad  */
    421   1.2        ad void
    422  1.10        ad turnstile_wakeup(turnstile_t *ts, int q, int count, lwp_t *nl)
    423   1.2        ad {
    424   1.2        ad 	sleepq_t *sq;
    425   1.2        ad 	tschain_t *tc;
    426  1.10        ad 	lwp_t *l;
    427   1.2        ad 
    428   1.2        ad 	tc = &turnstile_tab[TS_HASH(ts->ts_obj)];
    429   1.2        ad 	sq = &ts->ts_sleepq[q];
    430   1.2        ad 
    431   1.2        ad 	KASSERT(q == TS_READER_Q || q == TS_WRITER_Q);
    432   1.2        ad 	KASSERT(count > 0 && count <= TS_WAITERS(ts, q));
    433  1.24        ad 	KASSERT(mutex_owned(tc->tc_mutex));
    434   1.4      yamt 	KASSERT(ts->ts_inheritor == curlwp || ts->ts_inheritor == NULL);
    435   1.4      yamt 
    436   1.4      yamt 	/*
    437   1.4      yamt 	 * restore inherited priority if necessary.
    438   1.4      yamt 	 */
    439   1.4      yamt 
    440   1.4      yamt 	if (ts->ts_inheritor != NULL) {
    441  1.31      yamt 		turnstile_unlendpri(ts);
    442   1.4      yamt 	}
    443   1.2        ad 
    444   1.2        ad 	if (nl != NULL) {
    445   1.2        ad #if defined(DEBUG) || defined(LOCKDEBUG)
    446  1.21        ad 		TAILQ_FOREACH(l, sq, l_sleepchain) {
    447   1.2        ad 			if (l == nl)
    448   1.2        ad 				break;
    449   1.2        ad 		}
    450   1.2        ad 		if (l == NULL)
    451   1.2        ad 			panic("turnstile_wakeup: nl not on sleepq");
    452   1.2        ad #endif
    453  1.21        ad 		turnstile_remove(ts, nl, q);
    454   1.2        ad 	} else {
    455   1.2        ad 		while (count-- > 0) {
    456  1.21        ad 			l = TAILQ_FIRST(sq);
    457   1.2        ad 			KASSERT(l != NULL);
    458  1.21        ad 			turnstile_remove(ts, l, q);
    459   1.2        ad 		}
    460   1.2        ad 	}
    461  1.24        ad 	mutex_spin_exit(tc->tc_mutex);
    462   1.2        ad }
    463   1.2        ad 
    464   1.2        ad /*
    465   1.2        ad  * turnstile_unsleep:
    466   1.2        ad  *
    467   1.2        ad  *	Remove an LWP from the turnstile.  This is called when the LWP has
    468   1.2        ad  *	not been awoken normally but instead interrupted: for example, if it
    469   1.2        ad  *	has received a signal.  It's not a valid action for turnstiles,
    470   1.2        ad  *	since LWPs blocking on a turnstile are not interruptable.
    471   1.2        ad  */
    472  1.26     rmind void
    473  1.16        ad turnstile_unsleep(lwp_t *l, bool cleanup)
    474   1.2        ad {
    475   1.2        ad 
    476   1.2        ad 	lwp_unlock(l);
    477   1.2        ad 	panic("turnstile_unsleep");
    478   1.2        ad }
    479   1.2        ad 
    480   1.2        ad /*
    481   1.2        ad  * turnstile_changepri:
    482   1.2        ad  *
    483   1.4      yamt  *	Adjust the priority of an LWP residing on a turnstile.
    484   1.2        ad  */
    485   1.2        ad void
    486  1.10        ad turnstile_changepri(lwp_t *l, pri_t pri)
    487   1.2        ad {
    488   1.2        ad 
    489   1.4      yamt 	/* XXX priority inheritance */
    490   1.4      yamt 	sleepq_changepri(l, pri);
    491   1.2        ad }
    492   1.2        ad 
    493   1.2        ad #if defined(LOCKDEBUG)
    494   1.2        ad /*
    495   1.2        ad  * turnstile_print:
    496   1.2        ad  *
    497   1.2        ad  *	Given the address of a lock object, print the contents of a
    498   1.2        ad  *	turnstile.
    499   1.2        ad  */
    500   1.2        ad void
    501   1.2        ad turnstile_print(volatile void *obj, void (*pr)(const char *, ...))
    502   1.2        ad {
    503   1.2        ad 	turnstile_t *ts;
    504   1.2        ad 	tschain_t *tc;
    505   1.2        ad 	sleepq_t *rsq, *wsq;
    506  1.10        ad 	lwp_t *l;
    507   1.2        ad 
    508   1.2        ad 	tc = &turnstile_tab[TS_HASH(obj)];
    509   1.2        ad 
    510   1.2        ad 	LIST_FOREACH(ts, &tc->tc_chain, ts_chain)
    511   1.2        ad 		if (ts->ts_obj == obj)
    512   1.2        ad 			break;
    513   1.2        ad 
    514   1.9      yamt 	(*pr)("Turnstile chain at %p.\n", tc);
    515   1.2        ad 	if (ts == NULL) {
    516   1.2        ad 		(*pr)("=> No active turnstile for this lock.\n");
    517   1.2        ad 		return;
    518   1.2        ad 	}
    519   1.2        ad 
    520   1.2        ad 	rsq = &ts->ts_sleepq[TS_READER_Q];
    521   1.2        ad 	wsq = &ts->ts_sleepq[TS_WRITER_Q];
    522   1.2        ad 
    523   1.2        ad 	(*pr)("=> Turnstile at %p (wrq=%p, rdq=%p).\n", ts, rsq, wsq);
    524   1.2        ad 
    525  1.21        ad 	(*pr)("=> %d waiting readers:", TS_WAITERS(ts, TS_READER_Q));
    526  1.21        ad 	TAILQ_FOREACH(l, rsq, l_sleepchain) {
    527   1.2        ad 		(*pr)(" %p", l);
    528   1.2        ad 	}
    529   1.2        ad 	(*pr)("\n");
    530   1.2        ad 
    531  1.21        ad 	(*pr)("=> %d waiting writers:", TS_WAITERS(ts, TS_WRITER_Q));
    532  1.21        ad 	TAILQ_FOREACH(l, wsq, l_sleepchain) {
    533   1.2        ad 		(*pr)(" %p", l);
    534   1.2        ad 	}
    535   1.2        ad 	(*pr)("\n");
    536   1.2        ad }
    537   1.2        ad #endif	/* LOCKDEBUG */
    538