xref: /freebsd/sys/kern/subr_sleepqueue.c (revision 3fc36ee018bb836bd1796067cf4ef8683f166ebc)
1 /*-
2  * Copyright (c) 2004 John Baldwin <jhb@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26 
27 /*
28  * Implementation of sleep queues used to hold queue of threads blocked on
29  * a wait channel.  Sleep queues different from turnstiles in that wait
30  * channels are not owned by anyone, so there is no priority propagation.
31  * Sleep queues can also provide a timeout and can also be interrupted by
32  * signals.  That said, there are several similarities between the turnstile
33  * and sleep queue implementations.  (Note: turnstiles were implemented
34  * first.)  For example, both use a hash table of the same size where each
35  * bucket is referred to as a "chain" that contains both a spin lock and
36  * a linked list of queues.  An individual queue is located by using a hash
37  * to pick a chain, locking the chain, and then walking the chain searching
38  * for the queue.  This means that a wait channel object does not need to
39  * embed it's queue head just as locks do not embed their turnstile queue
40  * head.  Threads also carry around a sleep queue that they lend to the
41  * wait channel when blocking.  Just as in turnstiles, the queue includes
42  * a free list of the sleep queues of other threads blocked on the same
43  * wait channel in the case of multiple waiters.
44  *
45  * Some additional functionality provided by sleep queues include the
46  * ability to set a timeout.  The timeout is managed using a per-thread
47  * callout that resumes a thread if it is asleep.  A thread may also
48  * catch signals while it is asleep (aka an interruptible sleep).  The
49  * signal code uses sleepq_abort() to interrupt a sleeping thread.  Finally,
50  * sleep queues also provide some extra assertions.  One is not allowed to
51  * mix the sleep/wakeup and cv APIs for a given wait channel.  Also, one
52  * must consistently use the same lock to synchronize with a wait channel,
53  * though this check is currently only a warning for sleep/wakeup due to
54  * pre-existing abuse of that API.  The same lock must also be held when
55  * awakening threads, though that is currently only enforced for condition
56  * variables.
57  */
58 
59 #include <sys/cdefs.h>
60 __FBSDID("$FreeBSD$");
61 
62 #include "opt_sleepqueue_profiling.h"
63 #include "opt_ddb.h"
64 #include "opt_sched.h"
65 #include "opt_stack.h"
66 
67 #include <sys/param.h>
68 #include <sys/systm.h>
69 #include <sys/lock.h>
70 #include <sys/kernel.h>
71 #include <sys/ktr.h>
72 #include <sys/mutex.h>
73 #include <sys/proc.h>
74 #include <sys/sbuf.h>
75 #include <sys/sched.h>
76 #include <sys/sdt.h>
77 #include <sys/signalvar.h>
78 #include <sys/sleepqueue.h>
79 #include <sys/stack.h>
80 #include <sys/sysctl.h>
81 
82 #include <vm/uma.h>
83 
84 #ifdef DDB
85 #include <ddb/ddb.h>
86 #endif
87 
88 
89 /*
90  * Constants for the hash table of sleep queue chains.
91  * SC_TABLESIZE must be a power of two for SC_MASK to work properly.
92  */
93 #define	SC_TABLESIZE	256			/* Must be power of 2. */
94 #define	SC_MASK		(SC_TABLESIZE - 1)
95 #define	SC_SHIFT	8
96 #define	SC_HASH(wc)	((((uintptr_t)(wc) >> SC_SHIFT) ^ (uintptr_t)(wc)) & \
97 			    SC_MASK)
98 #define	SC_LOOKUP(wc)	&sleepq_chains[SC_HASH(wc)]
99 #define NR_SLEEPQS      2
100 /*
101  * There two different lists of sleep queues.  Both lists are connected
102  * via the sq_hash entries.  The first list is the sleep queue chain list
103  * that a sleep queue is on when it is attached to a wait channel.  The
104  * second list is the free list hung off of a sleep queue that is attached
105  * to a wait channel.
106  *
107  * Each sleep queue also contains the wait channel it is attached to, the
108  * list of threads blocked on that wait channel, flags specific to the
109  * wait channel, and the lock used to synchronize with a wait channel.
110  * The flags are used to catch mismatches between the various consumers
111  * of the sleep queue API (e.g. sleep/wakeup and condition variables).
112  * The lock pointer is only used when invariants are enabled for various
113  * debugging checks.
114  *
115  * Locking key:
116  *  c - sleep queue chain lock
117  */
118 struct sleepqueue {
119 	TAILQ_HEAD(, thread) sq_blocked[NR_SLEEPQS];	/* (c) Blocked threads. */
120 	u_int sq_blockedcnt[NR_SLEEPQS];	/* (c) N. of blocked threads. */
121 	LIST_ENTRY(sleepqueue) sq_hash;		/* (c) Chain and free list. */
122 	LIST_HEAD(, sleepqueue) sq_free;	/* (c) Free queues. */
123 	void	*sq_wchan;			/* (c) Wait channel. */
124 	int	sq_type;			/* (c) Queue type. */
125 #ifdef INVARIANTS
126 	struct lock_object *sq_lock;		/* (c) Associated lock. */
127 #endif
128 };
129 
130 struct sleepqueue_chain {
131 	LIST_HEAD(, sleepqueue) sc_queues;	/* List of sleep queues. */
132 	struct mtx sc_lock;			/* Spin lock for this chain. */
133 #ifdef SLEEPQUEUE_PROFILING
134 	u_int	sc_depth;			/* Length of sc_queues. */
135 	u_int	sc_max_depth;			/* Max length of sc_queues. */
136 #endif
137 };
138 
139 #ifdef SLEEPQUEUE_PROFILING
140 u_int sleepq_max_depth;
141 static SYSCTL_NODE(_debug, OID_AUTO, sleepq, CTLFLAG_RD, 0, "sleepq profiling");
142 static SYSCTL_NODE(_debug_sleepq, OID_AUTO, chains, CTLFLAG_RD, 0,
143     "sleepq chain stats");
144 SYSCTL_UINT(_debug_sleepq, OID_AUTO, max_depth, CTLFLAG_RD, &sleepq_max_depth,
145     0, "maxmimum depth achieved of a single chain");
146 
147 static void	sleepq_profile(const char *wmesg);
148 static int	prof_enabled;
149 #endif
150 static struct sleepqueue_chain sleepq_chains[SC_TABLESIZE];
151 static uma_zone_t sleepq_zone;
152 
153 /*
154  * Prototypes for non-exported routines.
155  */
156 static int	sleepq_catch_signals(void *wchan, int pri);
157 static int	sleepq_check_signals(void);
158 static int	sleepq_check_timeout(void);
159 #ifdef INVARIANTS
160 static void	sleepq_dtor(void *mem, int size, void *arg);
161 #endif
162 static int	sleepq_init(void *mem, int size, int flags);
163 static int	sleepq_resume_thread(struct sleepqueue *sq, struct thread *td,
164 		    int pri);
165 static void	sleepq_switch(void *wchan, int pri);
166 static void	sleepq_timeout(void *arg);
167 
168 SDT_PROBE_DECLARE(sched, , , sleep);
169 SDT_PROBE_DECLARE(sched, , , wakeup);
170 
171 /*
172  * Initialize SLEEPQUEUE_PROFILING specific sysctl nodes.
173  * Note that it must happen after sleepinit() has been fully executed, so
174  * it must happen after SI_SUB_KMEM SYSINIT() subsystem setup.
175  */
176 #ifdef SLEEPQUEUE_PROFILING
177 static void
178 init_sleepqueue_profiling(void)
179 {
180 	char chain_name[10];
181 	struct sysctl_oid *chain_oid;
182 	u_int i;
183 
184 	for (i = 0; i < SC_TABLESIZE; i++) {
185 		snprintf(chain_name, sizeof(chain_name), "%u", i);
186 		chain_oid = SYSCTL_ADD_NODE(NULL,
187 		    SYSCTL_STATIC_CHILDREN(_debug_sleepq_chains), OID_AUTO,
188 		    chain_name, CTLFLAG_RD, NULL, "sleepq chain stats");
189 		SYSCTL_ADD_UINT(NULL, SYSCTL_CHILDREN(chain_oid), OID_AUTO,
190 		    "depth", CTLFLAG_RD, &sleepq_chains[i].sc_depth, 0, NULL);
191 		SYSCTL_ADD_UINT(NULL, SYSCTL_CHILDREN(chain_oid), OID_AUTO,
192 		    "max_depth", CTLFLAG_RD, &sleepq_chains[i].sc_max_depth, 0,
193 		    NULL);
194 	}
195 }
196 
197 SYSINIT(sleepqueue_profiling, SI_SUB_LOCK, SI_ORDER_ANY,
198     init_sleepqueue_profiling, NULL);
199 #endif
200 
201 /*
202  * Early initialization of sleep queues that is called from the sleepinit()
203  * SYSINIT.
204  */
205 void
206 init_sleepqueues(void)
207 {
208 	int i;
209 
210 	for (i = 0; i < SC_TABLESIZE; i++) {
211 		LIST_INIT(&sleepq_chains[i].sc_queues);
212 		mtx_init(&sleepq_chains[i].sc_lock, "sleepq chain", NULL,
213 		    MTX_SPIN | MTX_RECURSE);
214 	}
215 	sleepq_zone = uma_zcreate("SLEEPQUEUE", sizeof(struct sleepqueue),
216 #ifdef INVARIANTS
217 	    NULL, sleepq_dtor, sleepq_init, NULL, UMA_ALIGN_CACHE, 0);
218 #else
219 	    NULL, NULL, sleepq_init, NULL, UMA_ALIGN_CACHE, 0);
220 #endif
221 
222 	thread0.td_sleepqueue = sleepq_alloc();
223 }
224 
225 /*
226  * Get a sleep queue for a new thread.
227  */
228 struct sleepqueue *
229 sleepq_alloc(void)
230 {
231 
232 	return (uma_zalloc(sleepq_zone, M_WAITOK));
233 }
234 
235 /*
236  * Free a sleep queue when a thread is destroyed.
237  */
238 void
239 sleepq_free(struct sleepqueue *sq)
240 {
241 
242 	uma_zfree(sleepq_zone, sq);
243 }
244 
245 /*
246  * Lock the sleep queue chain associated with the specified wait channel.
247  */
248 void
249 sleepq_lock(void *wchan)
250 {
251 	struct sleepqueue_chain *sc;
252 
253 	sc = SC_LOOKUP(wchan);
254 	mtx_lock_spin(&sc->sc_lock);
255 }
256 
257 /*
258  * Look up the sleep queue associated with a given wait channel in the hash
259  * table locking the associated sleep queue chain.  If no queue is found in
260  * the table, NULL is returned.
261  */
262 struct sleepqueue *
263 sleepq_lookup(void *wchan)
264 {
265 	struct sleepqueue_chain *sc;
266 	struct sleepqueue *sq;
267 
268 	KASSERT(wchan != NULL, ("%s: invalid NULL wait channel", __func__));
269 	sc = SC_LOOKUP(wchan);
270 	mtx_assert(&sc->sc_lock, MA_OWNED);
271 	LIST_FOREACH(sq, &sc->sc_queues, sq_hash)
272 		if (sq->sq_wchan == wchan)
273 			return (sq);
274 	return (NULL);
275 }
276 
277 /*
278  * Unlock the sleep queue chain associated with a given wait channel.
279  */
280 void
281 sleepq_release(void *wchan)
282 {
283 	struct sleepqueue_chain *sc;
284 
285 	sc = SC_LOOKUP(wchan);
286 	mtx_unlock_spin(&sc->sc_lock);
287 }
288 
289 /*
290  * Places the current thread on the sleep queue for the specified wait
291  * channel.  If INVARIANTS is enabled, then it associates the passed in
292  * lock with the sleepq to make sure it is held when that sleep queue is
293  * woken up.
294  */
295 void
296 sleepq_add(void *wchan, struct lock_object *lock, const char *wmesg, int flags,
297     int queue)
298 {
299 	struct sleepqueue_chain *sc;
300 	struct sleepqueue *sq;
301 	struct thread *td;
302 
303 	td = curthread;
304 	sc = SC_LOOKUP(wchan);
305 	mtx_assert(&sc->sc_lock, MA_OWNED);
306 	MPASS(td->td_sleepqueue != NULL);
307 	MPASS(wchan != NULL);
308 	MPASS((queue >= 0) && (queue < NR_SLEEPQS));
309 
310 	/* If this thread is not allowed to sleep, die a horrible death. */
311 	KASSERT(td->td_no_sleeping == 0,
312 	    ("%s: td %p to sleep on wchan %p with sleeping prohibited",
313 	    __func__, td, wchan));
314 
315 	/* Look up the sleep queue associated with the wait channel 'wchan'. */
316 	sq = sleepq_lookup(wchan);
317 
318 	/*
319 	 * If the wait channel does not already have a sleep queue, use
320 	 * this thread's sleep queue.  Otherwise, insert the current thread
321 	 * into the sleep queue already in use by this wait channel.
322 	 */
323 	if (sq == NULL) {
324 #ifdef INVARIANTS
325 		int i;
326 
327 		sq = td->td_sleepqueue;
328 		for (i = 0; i < NR_SLEEPQS; i++) {
329 			KASSERT(TAILQ_EMPTY(&sq->sq_blocked[i]),
330 			    ("thread's sleep queue %d is not empty", i));
331 			KASSERT(sq->sq_blockedcnt[i] == 0,
332 			    ("thread's sleep queue %d count mismatches", i));
333 		}
334 		KASSERT(LIST_EMPTY(&sq->sq_free),
335 		    ("thread's sleep queue has a non-empty free list"));
336 		KASSERT(sq->sq_wchan == NULL, ("stale sq_wchan pointer"));
337 		sq->sq_lock = lock;
338 #endif
339 #ifdef SLEEPQUEUE_PROFILING
340 		sc->sc_depth++;
341 		if (sc->sc_depth > sc->sc_max_depth) {
342 			sc->sc_max_depth = sc->sc_depth;
343 			if (sc->sc_max_depth > sleepq_max_depth)
344 				sleepq_max_depth = sc->sc_max_depth;
345 		}
346 #endif
347 		sq = td->td_sleepqueue;
348 		LIST_INSERT_HEAD(&sc->sc_queues, sq, sq_hash);
349 		sq->sq_wchan = wchan;
350 		sq->sq_type = flags & SLEEPQ_TYPE;
351 	} else {
352 		MPASS(wchan == sq->sq_wchan);
353 		MPASS(lock == sq->sq_lock);
354 		MPASS((flags & SLEEPQ_TYPE) == sq->sq_type);
355 		LIST_INSERT_HEAD(&sq->sq_free, td->td_sleepqueue, sq_hash);
356 	}
357 	thread_lock(td);
358 	TAILQ_INSERT_TAIL(&sq->sq_blocked[queue], td, td_slpq);
359 	sq->sq_blockedcnt[queue]++;
360 	td->td_sleepqueue = NULL;
361 	td->td_sqqueue = queue;
362 	td->td_wchan = wchan;
363 	td->td_wmesg = wmesg;
364 	if (flags & SLEEPQ_INTERRUPTIBLE) {
365 		td->td_flags |= TDF_SINTR;
366 		td->td_flags &= ~TDF_SLEEPABORT;
367 	}
368 	thread_unlock(td);
369 }
370 
371 /*
372  * Sets a timeout that will remove the current thread from the specified
373  * sleep queue after timo ticks if the thread has not already been awakened.
374  */
375 void
376 sleepq_set_timeout_sbt(void *wchan, sbintime_t sbt, sbintime_t pr,
377     int flags)
378 {
379 	struct sleepqueue_chain *sc;
380 	struct thread *td;
381 	sbintime_t pr1;
382 
383 	td = curthread;
384 	sc = SC_LOOKUP(wchan);
385 	mtx_assert(&sc->sc_lock, MA_OWNED);
386 	MPASS(TD_ON_SLEEPQ(td));
387 	MPASS(td->td_sleepqueue == NULL);
388 	MPASS(wchan != NULL);
389 	if (cold)
390 		panic("timed sleep before timers are working");
391 	KASSERT(td->td_sleeptimo == 0, ("td %d %p td_sleeptimo %jx",
392 	    td->td_tid, td, (uintmax_t)td->td_sleeptimo));
393 	thread_lock(td);
394 	callout_when(sbt, pr, flags, &td->td_sleeptimo, &pr1);
395 	thread_unlock(td);
396 	callout_reset_sbt_on(&td->td_slpcallout, td->td_sleeptimo, pr1,
397 	    sleepq_timeout, td, PCPU_GET(cpuid), flags | C_PRECALC |
398 	    C_DIRECT_EXEC);
399 }
400 
401 /*
402  * Return the number of actual sleepers for the specified queue.
403  */
404 u_int
405 sleepq_sleepcnt(void *wchan, int queue)
406 {
407 	struct sleepqueue *sq;
408 
409 	KASSERT(wchan != NULL, ("%s: invalid NULL wait channel", __func__));
410 	MPASS((queue >= 0) && (queue < NR_SLEEPQS));
411 	sq = sleepq_lookup(wchan);
412 	if (sq == NULL)
413 		return (0);
414 	return (sq->sq_blockedcnt[queue]);
415 }
416 
417 /*
418  * Marks the pending sleep of the current thread as interruptible and
419  * makes an initial check for pending signals before putting a thread
420  * to sleep. Enters and exits with the thread lock held.  Thread lock
421  * may have transitioned from the sleepq lock to a run lock.
422  */
423 static int
424 sleepq_catch_signals(void *wchan, int pri)
425 {
426 	struct sleepqueue_chain *sc;
427 	struct sleepqueue *sq;
428 	struct thread *td;
429 	struct proc *p;
430 	struct sigacts *ps;
431 	int sig, ret;
432 
433 	td = curthread;
434 	p = curproc;
435 	sc = SC_LOOKUP(wchan);
436 	mtx_assert(&sc->sc_lock, MA_OWNED);
437 	MPASS(wchan != NULL);
438 	if ((td->td_pflags & TDP_WAKEUP) != 0) {
439 		td->td_pflags &= ~TDP_WAKEUP;
440 		ret = EINTR;
441 		thread_lock(td);
442 		goto out;
443 	}
444 
445 	/*
446 	 * See if there are any pending signals for this thread.  If not
447 	 * we can switch immediately.  Otherwise do the signal processing
448 	 * directly.
449 	 */
450 	thread_lock(td);
451 	if ((td->td_flags & (TDF_NEEDSIGCHK | TDF_NEEDSUSPCHK)) == 0) {
452 		sleepq_switch(wchan, pri);
453 		return (0);
454 	}
455 	thread_unlock(td);
456 	mtx_unlock_spin(&sc->sc_lock);
457 	CTR3(KTR_PROC, "sleepq catching signals: thread %p (pid %ld, %s)",
458 		(void *)td, (long)p->p_pid, td->td_name);
459 	PROC_LOCK(p);
460 	ps = p->p_sigacts;
461 	mtx_lock(&ps->ps_mtx);
462 	sig = cursig(td);
463 	if (sig == -1) {
464 		mtx_unlock(&ps->ps_mtx);
465 		KASSERT((td->td_flags & TDF_SBDRY) != 0, ("lost TDF_SBDRY"));
466 		KASSERT(TD_SBDRY_INTR(td),
467 		    ("lost TDF_SERESTART of TDF_SEINTR"));
468 		KASSERT((td->td_flags & (TDF_SEINTR | TDF_SERESTART)) !=
469 		    (TDF_SEINTR | TDF_SERESTART),
470 		    ("both TDF_SEINTR and TDF_SERESTART"));
471 		ret = TD_SBDRY_ERRNO(td);
472 	} else if (sig == 0) {
473 		mtx_unlock(&ps->ps_mtx);
474 		ret = thread_suspend_check(1);
475 		MPASS(ret == 0 || ret == EINTR || ret == ERESTART);
476 	} else {
477 		if (SIGISMEMBER(ps->ps_sigintr, sig))
478 			ret = EINTR;
479 		else
480 			ret = ERESTART;
481 		mtx_unlock(&ps->ps_mtx);
482 	}
483 	/*
484 	 * Lock the per-process spinlock prior to dropping the PROC_LOCK
485 	 * to avoid a signal delivery race.  PROC_LOCK, PROC_SLOCK, and
486 	 * thread_lock() are currently held in tdsendsignal().
487 	 */
488 	PROC_SLOCK(p);
489 	mtx_lock_spin(&sc->sc_lock);
490 	PROC_UNLOCK(p);
491 	thread_lock(td);
492 	PROC_SUNLOCK(p);
493 	if (ret == 0) {
494 		sleepq_switch(wchan, pri);
495 		return (0);
496 	}
497 out:
498 	/*
499 	 * There were pending signals and this thread is still
500 	 * on the sleep queue, remove it from the sleep queue.
501 	 */
502 	if (TD_ON_SLEEPQ(td)) {
503 		sq = sleepq_lookup(wchan);
504 		if (sleepq_resume_thread(sq, td, 0)) {
505 #ifdef INVARIANTS
506 			/*
507 			 * This thread hasn't gone to sleep yet, so it
508 			 * should not be swapped out.
509 			 */
510 			panic("not waking up swapper");
511 #endif
512 		}
513 	}
514 	mtx_unlock_spin(&sc->sc_lock);
515 	MPASS(td->td_lock != &sc->sc_lock);
516 	return (ret);
517 }
518 
519 /*
520  * Switches to another thread if we are still asleep on a sleep queue.
521  * Returns with thread lock.
522  */
523 static void
524 sleepq_switch(void *wchan, int pri)
525 {
526 	struct sleepqueue_chain *sc;
527 	struct sleepqueue *sq;
528 	struct thread *td;
529 
530 	td = curthread;
531 	sc = SC_LOOKUP(wchan);
532 	mtx_assert(&sc->sc_lock, MA_OWNED);
533 	THREAD_LOCK_ASSERT(td, MA_OWNED);
534 
535 	/*
536 	 * If we have a sleep queue, then we've already been woken up, so
537 	 * just return.
538 	 */
539 	if (td->td_sleepqueue != NULL) {
540 		mtx_unlock_spin(&sc->sc_lock);
541 		return;
542 	}
543 
544 	/*
545 	 * If TDF_TIMEOUT is set, then our sleep has been timed out
546 	 * already but we are still on the sleep queue, so dequeue the
547 	 * thread and return.
548 	 */
549 	if (td->td_flags & TDF_TIMEOUT) {
550 		MPASS(TD_ON_SLEEPQ(td));
551 		sq = sleepq_lookup(wchan);
552 		if (sleepq_resume_thread(sq, td, 0)) {
553 #ifdef INVARIANTS
554 			/*
555 			 * This thread hasn't gone to sleep yet, so it
556 			 * should not be swapped out.
557 			 */
558 			panic("not waking up swapper");
559 #endif
560 		}
561 		mtx_unlock_spin(&sc->sc_lock);
562 		return;
563 	}
564 #ifdef SLEEPQUEUE_PROFILING
565 	if (prof_enabled)
566 		sleepq_profile(td->td_wmesg);
567 #endif
568 	MPASS(td->td_sleepqueue == NULL);
569 	sched_sleep(td, pri);
570 	thread_lock_set(td, &sc->sc_lock);
571 	SDT_PROBE0(sched, , , sleep);
572 	TD_SET_SLEEPING(td);
573 	mi_switch(SW_VOL | SWT_SLEEPQ, NULL);
574 	KASSERT(TD_IS_RUNNING(td), ("running but not TDS_RUNNING"));
575 	CTR3(KTR_PROC, "sleepq resume: thread %p (pid %ld, %s)",
576 	    (void *)td, (long)td->td_proc->p_pid, (void *)td->td_name);
577 }
578 
579 /*
580  * Check to see if we timed out.
581  */
582 static int
583 sleepq_check_timeout(void)
584 {
585 	struct thread *td;
586 	int res;
587 
588 	td = curthread;
589 	THREAD_LOCK_ASSERT(td, MA_OWNED);
590 
591 	/*
592 	 * If TDF_TIMEOUT is set, we timed out.  But recheck
593 	 * td_sleeptimo anyway.
594 	 */
595 	res = 0;
596 	if (td->td_sleeptimo != 0) {
597 		if (td->td_sleeptimo <= sbinuptime())
598 			res = EWOULDBLOCK;
599 		td->td_sleeptimo = 0;
600 	}
601 	if (td->td_flags & TDF_TIMEOUT)
602 		td->td_flags &= ~TDF_TIMEOUT;
603 	else
604 		/*
605 		 * We ignore the situation where timeout subsystem was
606 		 * unable to stop our callout.  The struct thread is
607 		 * type-stable, the callout will use the correct
608 		 * memory when running.  The checks of the
609 		 * td_sleeptimo value in this function and in
610 		 * sleepq_timeout() ensure that the thread does not
611 		 * get spurious wakeups, even if the callout was reset
612 		 * or thread reused.
613 		 */
614 		callout_stop(&td->td_slpcallout);
615 	return (res);
616 }
617 
618 /*
619  * Check to see if we were awoken by a signal.
620  */
621 static int
622 sleepq_check_signals(void)
623 {
624 	struct thread *td;
625 
626 	td = curthread;
627 	THREAD_LOCK_ASSERT(td, MA_OWNED);
628 
629 	/* We are no longer in an interruptible sleep. */
630 	if (td->td_flags & TDF_SINTR)
631 		td->td_flags &= ~TDF_SINTR;
632 
633 	if (td->td_flags & TDF_SLEEPABORT) {
634 		td->td_flags &= ~TDF_SLEEPABORT;
635 		return (td->td_intrval);
636 	}
637 
638 	return (0);
639 }
640 
641 /*
642  * Block the current thread until it is awakened from its sleep queue.
643  */
644 void
645 sleepq_wait(void *wchan, int pri)
646 {
647 	struct thread *td;
648 
649 	td = curthread;
650 	MPASS(!(td->td_flags & TDF_SINTR));
651 	thread_lock(td);
652 	sleepq_switch(wchan, pri);
653 	thread_unlock(td);
654 }
655 
656 /*
657  * Block the current thread until it is awakened from its sleep queue
658  * or it is interrupted by a signal.
659  */
660 int
661 sleepq_wait_sig(void *wchan, int pri)
662 {
663 	int rcatch;
664 	int rval;
665 
666 	rcatch = sleepq_catch_signals(wchan, pri);
667 	rval = sleepq_check_signals();
668 	thread_unlock(curthread);
669 	if (rcatch)
670 		return (rcatch);
671 	return (rval);
672 }
673 
674 /*
675  * Block the current thread until it is awakened from its sleep queue
676  * or it times out while waiting.
677  */
678 int
679 sleepq_timedwait(void *wchan, int pri)
680 {
681 	struct thread *td;
682 	int rval;
683 
684 	td = curthread;
685 	MPASS(!(td->td_flags & TDF_SINTR));
686 	thread_lock(td);
687 	sleepq_switch(wchan, pri);
688 	rval = sleepq_check_timeout();
689 	thread_unlock(td);
690 
691 	return (rval);
692 }
693 
694 /*
695  * Block the current thread until it is awakened from its sleep queue,
696  * it is interrupted by a signal, or it times out waiting to be awakened.
697  */
698 int
699 sleepq_timedwait_sig(void *wchan, int pri)
700 {
701 	int rcatch, rvalt, rvals;
702 
703 	rcatch = sleepq_catch_signals(wchan, pri);
704 	rvalt = sleepq_check_timeout();
705 	rvals = sleepq_check_signals();
706 	thread_unlock(curthread);
707 	if (rcatch)
708 		return (rcatch);
709 	if (rvals)
710 		return (rvals);
711 	return (rvalt);
712 }
713 
714 /*
715  * Returns the type of sleepqueue given a waitchannel.
716  */
717 int
718 sleepq_type(void *wchan)
719 {
720 	struct sleepqueue *sq;
721 	int type;
722 
723 	MPASS(wchan != NULL);
724 
725 	sleepq_lock(wchan);
726 	sq = sleepq_lookup(wchan);
727 	if (sq == NULL) {
728 		sleepq_release(wchan);
729 		return (-1);
730 	}
731 	type = sq->sq_type;
732 	sleepq_release(wchan);
733 	return (type);
734 }
735 
736 /*
737  * Removes a thread from a sleep queue and makes it
738  * runnable.
739  */
740 static int
741 sleepq_resume_thread(struct sleepqueue *sq, struct thread *td, int pri)
742 {
743 	struct sleepqueue_chain *sc;
744 
745 	MPASS(td != NULL);
746 	MPASS(sq->sq_wchan != NULL);
747 	MPASS(td->td_wchan == sq->sq_wchan);
748 	MPASS(td->td_sqqueue < NR_SLEEPQS && td->td_sqqueue >= 0);
749 	THREAD_LOCK_ASSERT(td, MA_OWNED);
750 	sc = SC_LOOKUP(sq->sq_wchan);
751 	mtx_assert(&sc->sc_lock, MA_OWNED);
752 
753 	SDT_PROBE2(sched, , , wakeup, td, td->td_proc);
754 
755 	/* Remove the thread from the queue. */
756 	sq->sq_blockedcnt[td->td_sqqueue]--;
757 	TAILQ_REMOVE(&sq->sq_blocked[td->td_sqqueue], td, td_slpq);
758 
759 	/*
760 	 * Get a sleep queue for this thread.  If this is the last waiter,
761 	 * use the queue itself and take it out of the chain, otherwise,
762 	 * remove a queue from the free list.
763 	 */
764 	if (LIST_EMPTY(&sq->sq_free)) {
765 		td->td_sleepqueue = sq;
766 #ifdef INVARIANTS
767 		sq->sq_wchan = NULL;
768 #endif
769 #ifdef SLEEPQUEUE_PROFILING
770 		sc->sc_depth--;
771 #endif
772 	} else
773 		td->td_sleepqueue = LIST_FIRST(&sq->sq_free);
774 	LIST_REMOVE(td->td_sleepqueue, sq_hash);
775 
776 	td->td_wmesg = NULL;
777 	td->td_wchan = NULL;
778 	td->td_flags &= ~TDF_SINTR;
779 
780 	CTR3(KTR_PROC, "sleepq_wakeup: thread %p (pid %ld, %s)",
781 	    (void *)td, (long)td->td_proc->p_pid, td->td_name);
782 
783 	/* Adjust priority if requested. */
784 	MPASS(pri == 0 || (pri >= PRI_MIN && pri <= PRI_MAX));
785 	if (pri != 0 && td->td_priority > pri &&
786 	    PRI_BASE(td->td_pri_class) == PRI_TIMESHARE)
787 		sched_prio(td, pri);
788 
789 	/*
790 	 * Note that thread td might not be sleeping if it is running
791 	 * sleepq_catch_signals() on another CPU or is blocked on its
792 	 * proc lock to check signals.  There's no need to mark the
793 	 * thread runnable in that case.
794 	 */
795 	if (TD_IS_SLEEPING(td)) {
796 		TD_CLR_SLEEPING(td);
797 		return (setrunnable(td));
798 	}
799 	return (0);
800 }
801 
802 #ifdef INVARIANTS
803 /*
804  * UMA zone item deallocator.
805  */
806 static void
807 sleepq_dtor(void *mem, int size, void *arg)
808 {
809 	struct sleepqueue *sq;
810 	int i;
811 
812 	sq = mem;
813 	for (i = 0; i < NR_SLEEPQS; i++) {
814 		MPASS(TAILQ_EMPTY(&sq->sq_blocked[i]));
815 		MPASS(sq->sq_blockedcnt[i] == 0);
816 	}
817 }
818 #endif
819 
820 /*
821  * UMA zone item initializer.
822  */
823 static int
824 sleepq_init(void *mem, int size, int flags)
825 {
826 	struct sleepqueue *sq;
827 	int i;
828 
829 	bzero(mem, size);
830 	sq = mem;
831 	for (i = 0; i < NR_SLEEPQS; i++) {
832 		TAILQ_INIT(&sq->sq_blocked[i]);
833 		sq->sq_blockedcnt[i] = 0;
834 	}
835 	LIST_INIT(&sq->sq_free);
836 	return (0);
837 }
838 
839 /*
840  * Find the highest priority thread sleeping on a wait channel and resume it.
841  */
842 int
843 sleepq_signal(void *wchan, int flags, int pri, int queue)
844 {
845 	struct sleepqueue *sq;
846 	struct thread *td, *besttd;
847 	int wakeup_swapper;
848 
849 	CTR2(KTR_PROC, "sleepq_signal(%p, %d)", wchan, flags);
850 	KASSERT(wchan != NULL, ("%s: invalid NULL wait channel", __func__));
851 	MPASS((queue >= 0) && (queue < NR_SLEEPQS));
852 	sq = sleepq_lookup(wchan);
853 	if (sq == NULL)
854 		return (0);
855 	KASSERT(sq->sq_type == (flags & SLEEPQ_TYPE),
856 	    ("%s: mismatch between sleep/wakeup and cv_*", __func__));
857 
858 	/*
859 	 * Find the highest priority thread on the queue.  If there is a
860 	 * tie, use the thread that first appears in the queue as it has
861 	 * been sleeping the longest since threads are always added to
862 	 * the tail of sleep queues.
863 	 */
864 	besttd = TAILQ_FIRST(&sq->sq_blocked[queue]);
865 	TAILQ_FOREACH(td, &sq->sq_blocked[queue], td_slpq) {
866 		if (td->td_priority < besttd->td_priority)
867 			besttd = td;
868 	}
869 	MPASS(besttd != NULL);
870 	thread_lock(besttd);
871 	wakeup_swapper = sleepq_resume_thread(sq, besttd, pri);
872 	thread_unlock(besttd);
873 	return (wakeup_swapper);
874 }
875 
876 /*
877  * Resume all threads sleeping on a specified wait channel.
878  */
879 int
880 sleepq_broadcast(void *wchan, int flags, int pri, int queue)
881 {
882 	struct sleepqueue *sq;
883 	struct thread *td;
884 	int wakeup_swapper;
885 
886 	CTR2(KTR_PROC, "sleepq_broadcast(%p, %d)", wchan, flags);
887 	KASSERT(wchan != NULL, ("%s: invalid NULL wait channel", __func__));
888 	MPASS((queue >= 0) && (queue < NR_SLEEPQS));
889 	sq = sleepq_lookup(wchan);
890 	if (sq == NULL)
891 		return (0);
892 	KASSERT(sq->sq_type == (flags & SLEEPQ_TYPE),
893 	    ("%s: mismatch between sleep/wakeup and cv_*", __func__));
894 
895 	/* Resume all blocked threads on the sleep queue. */
896 	wakeup_swapper = 0;
897 	while ((td = TAILQ_FIRST(&sq->sq_blocked[queue])) != NULL) {
898 		thread_lock(td);
899 		wakeup_swapper |= sleepq_resume_thread(sq, td, pri);
900 		thread_unlock(td);
901 	}
902 	return (wakeup_swapper);
903 }
904 
905 /*
906  * Time sleeping threads out.  When the timeout expires, the thread is
907  * removed from the sleep queue and made runnable if it is still asleep.
908  */
909 static void
910 sleepq_timeout(void *arg)
911 {
912 	struct sleepqueue_chain *sc;
913 	struct sleepqueue *sq;
914 	struct thread *td;
915 	void *wchan;
916 	int wakeup_swapper;
917 
918 	td = arg;
919 	wakeup_swapper = 0;
920 	CTR3(KTR_PROC, "sleepq_timeout: thread %p (pid %ld, %s)",
921 	    (void *)td, (long)td->td_proc->p_pid, (void *)td->td_name);
922 
923 	thread_lock(td);
924 
925 	if (td->td_sleeptimo > sbinuptime() || td->td_sleeptimo == 0) {
926 		/*
927 		 * The thread does not want a timeout (yet).
928 		 */
929 	} else if (TD_IS_SLEEPING(td) && TD_ON_SLEEPQ(td)) {
930 		/*
931 		 * See if the thread is asleep and get the wait
932 		 * channel if it is.
933 		 */
934 		wchan = td->td_wchan;
935 		sc = SC_LOOKUP(wchan);
936 		THREAD_LOCKPTR_ASSERT(td, &sc->sc_lock);
937 		sq = sleepq_lookup(wchan);
938 		MPASS(sq != NULL);
939 		td->td_flags |= TDF_TIMEOUT;
940 		wakeup_swapper = sleepq_resume_thread(sq, td, 0);
941 	} else if (TD_ON_SLEEPQ(td)) {
942 		/*
943 		 * If the thread is on the SLEEPQ but isn't sleeping
944 		 * yet, it can either be on another CPU in between
945 		 * sleepq_add() and one of the sleepq_*wait*()
946 		 * routines or it can be in sleepq_catch_signals().
947 		 */
948 		td->td_flags |= TDF_TIMEOUT;
949 	}
950 
951 	thread_unlock(td);
952 	if (wakeup_swapper)
953 		kick_proc0();
954 }
955 
956 /*
957  * Resumes a specific thread from the sleep queue associated with a specific
958  * wait channel if it is on that queue.
959  */
960 void
961 sleepq_remove(struct thread *td, void *wchan)
962 {
963 	struct sleepqueue *sq;
964 	int wakeup_swapper;
965 
966 	/*
967 	 * Look up the sleep queue for this wait channel, then re-check
968 	 * that the thread is asleep on that channel, if it is not, then
969 	 * bail.
970 	 */
971 	MPASS(wchan != NULL);
972 	sleepq_lock(wchan);
973 	sq = sleepq_lookup(wchan);
974 	/*
975 	 * We can not lock the thread here as it may be sleeping on a
976 	 * different sleepq.  However, holding the sleepq lock for this
977 	 * wchan can guarantee that we do not miss a wakeup for this
978 	 * channel.  The asserts below will catch any false positives.
979 	 */
980 	if (!TD_ON_SLEEPQ(td) || td->td_wchan != wchan) {
981 		sleepq_release(wchan);
982 		return;
983 	}
984 	/* Thread is asleep on sleep queue sq, so wake it up. */
985 	thread_lock(td);
986 	MPASS(sq != NULL);
987 	MPASS(td->td_wchan == wchan);
988 	wakeup_swapper = sleepq_resume_thread(sq, td, 0);
989 	thread_unlock(td);
990 	sleepq_release(wchan);
991 	if (wakeup_swapper)
992 		kick_proc0();
993 }
994 
995 /*
996  * Abort a thread as if an interrupt had occurred.  Only abort
997  * interruptible waits (unfortunately it isn't safe to abort others).
998  */
999 int
1000 sleepq_abort(struct thread *td, int intrval)
1001 {
1002 	struct sleepqueue *sq;
1003 	void *wchan;
1004 
1005 	THREAD_LOCK_ASSERT(td, MA_OWNED);
1006 	MPASS(TD_ON_SLEEPQ(td));
1007 	MPASS(td->td_flags & TDF_SINTR);
1008 	MPASS(intrval == EINTR || intrval == ERESTART);
1009 
1010 	/*
1011 	 * If the TDF_TIMEOUT flag is set, just leave. A
1012 	 * timeout is scheduled anyhow.
1013 	 */
1014 	if (td->td_flags & TDF_TIMEOUT)
1015 		return (0);
1016 
1017 	CTR3(KTR_PROC, "sleepq_abort: thread %p (pid %ld, %s)",
1018 	    (void *)td, (long)td->td_proc->p_pid, (void *)td->td_name);
1019 	td->td_intrval = intrval;
1020 	td->td_flags |= TDF_SLEEPABORT;
1021 	/*
1022 	 * If the thread has not slept yet it will find the signal in
1023 	 * sleepq_catch_signals() and call sleepq_resume_thread.  Otherwise
1024 	 * we have to do it here.
1025 	 */
1026 	if (!TD_IS_SLEEPING(td))
1027 		return (0);
1028 	wchan = td->td_wchan;
1029 	MPASS(wchan != NULL);
1030 	sq = sleepq_lookup(wchan);
1031 	MPASS(sq != NULL);
1032 
1033 	/* Thread is asleep on sleep queue sq, so wake it up. */
1034 	return (sleepq_resume_thread(sq, td, 0));
1035 }
1036 
1037 /*
1038  * Prints the stacks of all threads presently sleeping on wchan/queue to
1039  * the sbuf sb.  Sets count_stacks_printed to the number of stacks actually
1040  * printed.  Typically, this will equal the number of threads sleeping on the
1041  * queue, but may be less if sb overflowed before all stacks were printed.
1042  */
1043 #ifdef STACK
1044 int
1045 sleepq_sbuf_print_stacks(struct sbuf *sb, void *wchan, int queue,
1046     int *count_stacks_printed)
1047 {
1048 	struct thread *td, *td_next;
1049 	struct sleepqueue *sq;
1050 	struct stack **st;
1051 	struct sbuf **td_infos;
1052 	int i, stack_idx, error, stacks_to_allocate;
1053 	bool finished, partial_print;
1054 
1055 	error = 0;
1056 	finished = false;
1057 	partial_print = false;
1058 
1059 	KASSERT(wchan != NULL, ("%s: invalid NULL wait channel", __func__));
1060 	MPASS((queue >= 0) && (queue < NR_SLEEPQS));
1061 
1062 	stacks_to_allocate = 10;
1063 	for (i = 0; i < 3 && !finished ; i++) {
1064 		/* We cannot malloc while holding the queue's spinlock, so
1065 		 * we do our mallocs now, and hope it is enough.  If it
1066 		 * isn't, we will free these, drop the lock, malloc more,
1067 		 * and try again, up to a point.  After that point we will
1068 		 * give up and report ENOMEM. We also cannot write to sb
1069 		 * during this time since the client may have set the
1070 		 * SBUF_AUTOEXTEND flag on their sbuf, which could cause a
1071 		 * malloc as we print to it.  So we defer actually printing
1072 		 * to sb until after we drop the spinlock.
1073 		 */
1074 
1075 		/* Where we will store the stacks. */
1076 		st = malloc(sizeof(struct stack *) * stacks_to_allocate,
1077 		    M_TEMP, M_WAITOK);
1078 		for (stack_idx = 0; stack_idx < stacks_to_allocate;
1079 		    stack_idx++)
1080 			st[stack_idx] = stack_create();
1081 
1082 		/* Where we will store the td name, tid, etc. */
1083 		td_infos = malloc(sizeof(struct sbuf *) * stacks_to_allocate,
1084 		    M_TEMP, M_WAITOK);
1085 		for (stack_idx = 0; stack_idx < stacks_to_allocate;
1086 		    stack_idx++)
1087 			td_infos[stack_idx] = sbuf_new(NULL, NULL,
1088 			    MAXCOMLEN + sizeof(struct thread *) * 2 + 40,
1089 			    SBUF_FIXEDLEN);
1090 
1091 		sleepq_lock(wchan);
1092 		sq = sleepq_lookup(wchan);
1093 		if (sq == NULL) {
1094 			/* This sleepq does not exist; exit and return ENOENT. */
1095 			error = ENOENT;
1096 			finished = true;
1097 			sleepq_release(wchan);
1098 			goto loop_end;
1099 		}
1100 
1101 		stack_idx = 0;
1102 		/* Save thread info */
1103 		TAILQ_FOREACH_SAFE(td, &sq->sq_blocked[queue], td_slpq,
1104 		    td_next) {
1105 			if (stack_idx >= stacks_to_allocate)
1106 				goto loop_end;
1107 
1108 			/* Note the td_lock is equal to the sleepq_lock here. */
1109 			stack_save_td(st[stack_idx], td);
1110 
1111 			sbuf_printf(td_infos[stack_idx], "%d: %s %p",
1112 			    td->td_tid, td->td_name, td);
1113 
1114 			++stack_idx;
1115 		}
1116 
1117 		finished = true;
1118 		sleepq_release(wchan);
1119 
1120 		/* Print the stacks */
1121 		for (i = 0; i < stack_idx; i++) {
1122 			sbuf_finish(td_infos[i]);
1123 			sbuf_printf(sb, "--- thread %s: ---\n", sbuf_data(td_infos[i]));
1124 			stack_sbuf_print(sb, st[i]);
1125 			sbuf_printf(sb, "\n");
1126 
1127 			error = sbuf_error(sb);
1128 			if (error == 0)
1129 				*count_stacks_printed = stack_idx;
1130 		}
1131 
1132 loop_end:
1133 		if (!finished)
1134 			sleepq_release(wchan);
1135 		for (stack_idx = 0; stack_idx < stacks_to_allocate;
1136 		    stack_idx++)
1137 			stack_destroy(st[stack_idx]);
1138 		for (stack_idx = 0; stack_idx < stacks_to_allocate;
1139 		    stack_idx++)
1140 			sbuf_delete(td_infos[stack_idx]);
1141 		free(st, M_TEMP);
1142 		free(td_infos, M_TEMP);
1143 		stacks_to_allocate *= 10;
1144 	}
1145 
1146 	if (!finished && error == 0)
1147 		error = ENOMEM;
1148 
1149 	return (error);
1150 }
1151 #endif
1152 
1153 #ifdef SLEEPQUEUE_PROFILING
1154 #define	SLEEPQ_PROF_LOCATIONS	1024
1155 #define	SLEEPQ_SBUFSIZE		512
1156 struct sleepq_prof {
1157 	LIST_ENTRY(sleepq_prof) sp_link;
1158 	const char	*sp_wmesg;
1159 	long		sp_count;
1160 };
1161 
1162 LIST_HEAD(sqphead, sleepq_prof);
1163 
1164 struct sqphead sleepq_prof_free;
1165 struct sqphead sleepq_hash[SC_TABLESIZE];
1166 static struct sleepq_prof sleepq_profent[SLEEPQ_PROF_LOCATIONS];
1167 static struct mtx sleepq_prof_lock;
1168 MTX_SYSINIT(sleepq_prof_lock, &sleepq_prof_lock, "sleepq_prof", MTX_SPIN);
1169 
1170 static void
1171 sleepq_profile(const char *wmesg)
1172 {
1173 	struct sleepq_prof *sp;
1174 
1175 	mtx_lock_spin(&sleepq_prof_lock);
1176 	if (prof_enabled == 0)
1177 		goto unlock;
1178 	LIST_FOREACH(sp, &sleepq_hash[SC_HASH(wmesg)], sp_link)
1179 		if (sp->sp_wmesg == wmesg)
1180 			goto done;
1181 	sp = LIST_FIRST(&sleepq_prof_free);
1182 	if (sp == NULL)
1183 		goto unlock;
1184 	sp->sp_wmesg = wmesg;
1185 	LIST_REMOVE(sp, sp_link);
1186 	LIST_INSERT_HEAD(&sleepq_hash[SC_HASH(wmesg)], sp, sp_link);
1187 done:
1188 	sp->sp_count++;
1189 unlock:
1190 	mtx_unlock_spin(&sleepq_prof_lock);
1191 	return;
1192 }
1193 
1194 static void
1195 sleepq_prof_reset(void)
1196 {
1197 	struct sleepq_prof *sp;
1198 	int enabled;
1199 	int i;
1200 
1201 	mtx_lock_spin(&sleepq_prof_lock);
1202 	enabled = prof_enabled;
1203 	prof_enabled = 0;
1204 	for (i = 0; i < SC_TABLESIZE; i++)
1205 		LIST_INIT(&sleepq_hash[i]);
1206 	LIST_INIT(&sleepq_prof_free);
1207 	for (i = 0; i < SLEEPQ_PROF_LOCATIONS; i++) {
1208 		sp = &sleepq_profent[i];
1209 		sp->sp_wmesg = NULL;
1210 		sp->sp_count = 0;
1211 		LIST_INSERT_HEAD(&sleepq_prof_free, sp, sp_link);
1212 	}
1213 	prof_enabled = enabled;
1214 	mtx_unlock_spin(&sleepq_prof_lock);
1215 }
1216 
1217 static int
1218 enable_sleepq_prof(SYSCTL_HANDLER_ARGS)
1219 {
1220 	int error, v;
1221 
1222 	v = prof_enabled;
1223 	error = sysctl_handle_int(oidp, &v, v, req);
1224 	if (error)
1225 		return (error);
1226 	if (req->newptr == NULL)
1227 		return (error);
1228 	if (v == prof_enabled)
1229 		return (0);
1230 	if (v == 1)
1231 		sleepq_prof_reset();
1232 	mtx_lock_spin(&sleepq_prof_lock);
1233 	prof_enabled = !!v;
1234 	mtx_unlock_spin(&sleepq_prof_lock);
1235 
1236 	return (0);
1237 }
1238 
1239 static int
1240 reset_sleepq_prof_stats(SYSCTL_HANDLER_ARGS)
1241 {
1242 	int error, v;
1243 
1244 	v = 0;
1245 	error = sysctl_handle_int(oidp, &v, 0, req);
1246 	if (error)
1247 		return (error);
1248 	if (req->newptr == NULL)
1249 		return (error);
1250 	if (v == 0)
1251 		return (0);
1252 	sleepq_prof_reset();
1253 
1254 	return (0);
1255 }
1256 
1257 static int
1258 dump_sleepq_prof_stats(SYSCTL_HANDLER_ARGS)
1259 {
1260 	struct sleepq_prof *sp;
1261 	struct sbuf *sb;
1262 	int enabled;
1263 	int error;
1264 	int i;
1265 
1266 	error = sysctl_wire_old_buffer(req, 0);
1267 	if (error != 0)
1268 		return (error);
1269 	sb = sbuf_new_for_sysctl(NULL, NULL, SLEEPQ_SBUFSIZE, req);
1270 	sbuf_printf(sb, "\nwmesg\tcount\n");
1271 	enabled = prof_enabled;
1272 	mtx_lock_spin(&sleepq_prof_lock);
1273 	prof_enabled = 0;
1274 	mtx_unlock_spin(&sleepq_prof_lock);
1275 	for (i = 0; i < SC_TABLESIZE; i++) {
1276 		LIST_FOREACH(sp, &sleepq_hash[i], sp_link) {
1277 			sbuf_printf(sb, "%s\t%ld\n",
1278 			    sp->sp_wmesg, sp->sp_count);
1279 		}
1280 	}
1281 	mtx_lock_spin(&sleepq_prof_lock);
1282 	prof_enabled = enabled;
1283 	mtx_unlock_spin(&sleepq_prof_lock);
1284 
1285 	error = sbuf_finish(sb);
1286 	sbuf_delete(sb);
1287 	return (error);
1288 }
1289 
1290 SYSCTL_PROC(_debug_sleepq, OID_AUTO, stats, CTLTYPE_STRING | CTLFLAG_RD,
1291     NULL, 0, dump_sleepq_prof_stats, "A", "Sleepqueue profiling statistics");
1292 SYSCTL_PROC(_debug_sleepq, OID_AUTO, reset, CTLTYPE_INT | CTLFLAG_RW,
1293     NULL, 0, reset_sleepq_prof_stats, "I",
1294     "Reset sleepqueue profiling statistics");
1295 SYSCTL_PROC(_debug_sleepq, OID_AUTO, enable, CTLTYPE_INT | CTLFLAG_RW,
1296     NULL, 0, enable_sleepq_prof, "I", "Enable sleepqueue profiling");
1297 #endif
1298 
1299 #ifdef DDB
1300 DB_SHOW_COMMAND(sleepq, db_show_sleepqueue)
1301 {
1302 	struct sleepqueue_chain *sc;
1303 	struct sleepqueue *sq;
1304 #ifdef INVARIANTS
1305 	struct lock_object *lock;
1306 #endif
1307 	struct thread *td;
1308 	void *wchan;
1309 	int i;
1310 
1311 	if (!have_addr)
1312 		return;
1313 
1314 	/*
1315 	 * First, see if there is an active sleep queue for the wait channel
1316 	 * indicated by the address.
1317 	 */
1318 	wchan = (void *)addr;
1319 	sc = SC_LOOKUP(wchan);
1320 	LIST_FOREACH(sq, &sc->sc_queues, sq_hash)
1321 		if (sq->sq_wchan == wchan)
1322 			goto found;
1323 
1324 	/*
1325 	 * Second, see if there is an active sleep queue at the address
1326 	 * indicated.
1327 	 */
1328 	for (i = 0; i < SC_TABLESIZE; i++)
1329 		LIST_FOREACH(sq, &sleepq_chains[i].sc_queues, sq_hash) {
1330 			if (sq == (struct sleepqueue *)addr)
1331 				goto found;
1332 		}
1333 
1334 	db_printf("Unable to locate a sleep queue via %p\n", (void *)addr);
1335 	return;
1336 found:
1337 	db_printf("Wait channel: %p\n", sq->sq_wchan);
1338 	db_printf("Queue type: %d\n", sq->sq_type);
1339 #ifdef INVARIANTS
1340 	if (sq->sq_lock) {
1341 		lock = sq->sq_lock;
1342 		db_printf("Associated Interlock: %p - (%s) %s\n", lock,
1343 		    LOCK_CLASS(lock)->lc_name, lock->lo_name);
1344 	}
1345 #endif
1346 	db_printf("Blocked threads:\n");
1347 	for (i = 0; i < NR_SLEEPQS; i++) {
1348 		db_printf("\nQueue[%d]:\n", i);
1349 		if (TAILQ_EMPTY(&sq->sq_blocked[i]))
1350 			db_printf("\tempty\n");
1351 		else
1352 			TAILQ_FOREACH(td, &sq->sq_blocked[0],
1353 				      td_slpq) {
1354 				db_printf("\t%p (tid %d, pid %d, \"%s\")\n", td,
1355 					  td->td_tid, td->td_proc->p_pid,
1356 					  td->td_name);
1357 			}
1358 		db_printf("(expected: %u)\n", sq->sq_blockedcnt[i]);
1359 	}
1360 }
1361 
1362 /* Alias 'show sleepqueue' to 'show sleepq'. */
1363 DB_SHOW_ALIAS(sleepqueue, db_show_sleepqueue);
1364 #endif
1365