xref: /freebsd/sys/sys/sleepqueue.h (revision 01518f5eede79cf65319d455eb50e78c9efa2b51)
160727d8bSWarner Losh /*-
24d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
3c4e20cadSPedro F. Giffuni  *
4dd75b0a9SJohn Baldwin  * Copyright (c) 2004 John Baldwin <jhb@FreeBSD.org>
5dd75b0a9SJohn Baldwin  *
6dd75b0a9SJohn Baldwin  * Redistribution and use in source and binary forms, with or without
7dd75b0a9SJohn Baldwin  * modification, are permitted provided that the following conditions
8dd75b0a9SJohn Baldwin  * are met:
9dd75b0a9SJohn Baldwin  * 1. Redistributions of source code must retain the above copyright
10dd75b0a9SJohn Baldwin  *    notice, this list of conditions and the following disclaimer.
11dd75b0a9SJohn Baldwin  * 2. Redistributions in binary form must reproduce the above copyright
12dd75b0a9SJohn Baldwin  *    notice, this list of conditions and the following disclaimer in the
13dd75b0a9SJohn Baldwin  *    documentation and/or other materials provided with the distribution.
14dd75b0a9SJohn Baldwin  *
15dd75b0a9SJohn Baldwin  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16dd75b0a9SJohn Baldwin  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17dd75b0a9SJohn Baldwin  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18dd75b0a9SJohn Baldwin  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19dd75b0a9SJohn Baldwin  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20dd75b0a9SJohn Baldwin  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21dd75b0a9SJohn Baldwin  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22dd75b0a9SJohn Baldwin  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23dd75b0a9SJohn Baldwin  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24dd75b0a9SJohn Baldwin  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25dd75b0a9SJohn Baldwin  * SUCH DAMAGE.
26dd75b0a9SJohn Baldwin  */
27dd75b0a9SJohn Baldwin 
28dd75b0a9SJohn Baldwin #ifndef _SYS_SLEEPQUEUE_H_
29dd75b0a9SJohn Baldwin #define _SYS_SLEEPQUEUE_H_
30dd75b0a9SJohn Baldwin 
31dd75b0a9SJohn Baldwin /*
324e7f640dSJohn Baldwin  * Sleep queue interface.  Sleep/wakeup, condition variables, and sx
334e7f640dSJohn Baldwin  * locks use a sleep queue for the queue of threads blocked on a sleep
344e7f640dSJohn Baldwin  * channel.
35dd75b0a9SJohn Baldwin  *
362ff0e645SJohn Baldwin  * A thread calls sleepq_lock() to lock the sleep queue chain associated
372ff0e645SJohn Baldwin  * with a given wait channel.  A thread can then call call sleepq_add() to
382ff0e645SJohn Baldwin  * add themself onto a sleep queue and call one of the sleepq_wait()
392ff0e645SJohn Baldwin  * functions to actually go to sleep.  If a thread needs to abort a sleep
402ff0e645SJohn Baldwin  * operation it should call sleepq_release() to unlock the associated sleep
412ff0e645SJohn Baldwin  * queue chain lock.  If the thread also needs to remove itself from a queue
422ff0e645SJohn Baldwin  * it just enqueued itself on, it can use sleepq_remove() instead.
43dd75b0a9SJohn Baldwin  *
44dd75b0a9SJohn Baldwin  * If the thread only wishes to sleep for a limited amount of time, it can
45dd75b0a9SJohn Baldwin  * call sleepq_set_timeout() after sleepq_add() to setup a timeout.  It
46dd75b0a9SJohn Baldwin  * should then use one of the sleepq_timedwait() functions to block.
47dd75b0a9SJohn Baldwin  *
48dd75b0a9SJohn Baldwin  * A thread is normally resumed from a sleep queue by either the
49dd75b0a9SJohn Baldwin  * sleepq_signal() or sleepq_broadcast() functions.  Sleepq_signal() wakes
50dd75b0a9SJohn Baldwin  * the thread with the highest priority that is sleeping on the specified
51dd75b0a9SJohn Baldwin  * wait channel.  Sleepq_broadcast() wakes all threads that are sleeping
52dd75b0a9SJohn Baldwin  * on the specified wait channel.  A thread sleeping in an interruptible
53dd75b0a9SJohn Baldwin  * sleep can be interrupted by calling sleepq_abort().  A thread can also
54dd75b0a9SJohn Baldwin  * be removed from a specified sleep queue using the sleepq_remove()
552ff0e645SJohn Baldwin  * function.  Note that the sleep queue chain must first be locked via
562cdcea5eSJohn Baldwin  * sleepq_lock() before calling sleepq_abort(), sleepq_broadcast(), or
572cdcea5eSJohn Baldwin  * sleepq_signal().  These routines each return a boolean that will be true
582cdcea5eSJohn Baldwin  * if at least one swapped-out thread was resumed.  In that case, the caller
592cdcea5eSJohn Baldwin  * is responsible for waking up the swapper by calling kick_proc0() after
60b4dac21dSKirk McKusick  * releasing the sleep queue chain lock.
61dd75b0a9SJohn Baldwin  *
62dd75b0a9SJohn Baldwin  * Each thread allocates a sleep queue at thread creation via sleepq_alloc()
63dd75b0a9SJohn Baldwin  * and releases it at thread destruction via sleepq_free().  Note that
64dd75b0a9SJohn Baldwin  * a sleep queue is not tied to a specific thread and that the sleep queue
65dd75b0a9SJohn Baldwin  * released at thread destruction may not be the same sleep queue that the
66dd75b0a9SJohn Baldwin  * thread allocated when it was created.
67dd75b0a9SJohn Baldwin  *
68dd75b0a9SJohn Baldwin  * XXX: Some other parts of the kernel such as ithread sleeping may end up
69dd75b0a9SJohn Baldwin  * using this interface as well (death to TDI_IWAIT!)
70dd75b0a9SJohn Baldwin  */
71dd75b0a9SJohn Baldwin 
727ee07175SPawel Jakub Dawidek struct lock_object;
73dd75b0a9SJohn Baldwin struct sleepqueue;
74dd75b0a9SJohn Baldwin struct thread;
75dd75b0a9SJohn Baldwin 
76dd75b0a9SJohn Baldwin #ifdef _KERNEL
77dd75b0a9SJohn Baldwin 
78007ddf7eSJohn Baldwin #define	SLEEPQ_TYPE		0x0ff		/* Mask of sleep queue types. */
79e7573e7aSJohn Baldwin #define	SLEEPQ_SLEEP		0x00		/* Used by sleep/wakeup. */
80007ddf7eSJohn Baldwin #define	SLEEPQ_CONDVAR		0x01		/* Used for a cv. */
8137e80fcaSJohn Baldwin #define	SLEEPQ_PAUSE		0x02		/* Used by pause. */
824e7f640dSJohn Baldwin #define	SLEEPQ_SX		0x03		/* Used by an sx lock. */
83047dd67eSAttilio Rao #define	SLEEPQ_LK		0x04		/* Used by a lockmgr. */
84007ddf7eSJohn Baldwin #define	SLEEPQ_INTERRUPTIBLE	0x100		/* Sleep is interruptible. */
85f91aa773SAlexander Motin #define	SLEEPQ_UNFAIR		0x200		/* Unfair wakeup order. */
866df35af4SAlexander Motin #define	SLEEPQ_DROP		0x400		/* Return without lock held. */
87dd75b0a9SJohn Baldwin 
88dd75b0a9SJohn Baldwin void	init_sleepqueues(void);
89*01518f5eSMark Johnston void	sleepq_abort(struct thread *td, int intrval);
90fea73412SConrad Meyer void	sleepq_add(const void *wchan, struct lock_object *lock,
91fea73412SConrad Meyer 	    const char *wmesg, int flags, int queue);
92dd75b0a9SJohn Baldwin struct sleepqueue *sleepq_alloc(void);
93*01518f5eSMark Johnston void	sleepq_broadcast(const void *wchan, int flags, int pri, int queue);
949dbdf2a1SEric van Gyzen void	sleepq_chains_remove_matching(bool (*matches)(struct thread *));
956cbb70e2SKip Macy void	sleepq_free(struct sleepqueue *sq);
96fea73412SConrad Meyer void	sleepq_lock(const void *wchan);
97fea73412SConrad Meyer struct sleepqueue *sleepq_lookup(const void *wchan);
98fea73412SConrad Meyer void	sleepq_release(const void *wchan);
99fea73412SConrad Meyer void	sleepq_remove(struct thread *td, const void *wchan);
100*01518f5eSMark Johnston void	sleepq_remove_matching(struct sleepqueue *sq, int queue,
1019dbdf2a1SEric van Gyzen 	    bool (*matches)(struct thread *), int pri);
10215465a2cSKonstantin Belousov void	sleepq_remove_nested(struct thread *td);
103*01518f5eSMark Johnston void	sleepq_signal(const void *wchan, int flags, int pri, int queue);
104fea73412SConrad Meyer void	sleepq_set_timeout_sbt(const void *wchan, sbintime_t sbt,
105965ac611SDavide Italiano 	    sbintime_t pr, int flags);
106965ac611SDavide Italiano #define	sleepq_set_timeout(wchan, timo)					\
1077392d01cSDavide Italiano     sleepq_set_timeout_sbt((wchan), tick_sbt * (timo), 0, C_HARDCLOCK)
108fea73412SConrad Meyer u_int	sleepq_sleepcnt(const void *wchan, int queue);
109fea73412SConrad Meyer int	sleepq_timedwait(const void *wchan, int pri);
110fea73412SConrad Meyer int	sleepq_timedwait_sig(const void *wchan, int pri);
111fea73412SConrad Meyer int	sleepq_type(const void *wchan);
112fea73412SConrad Meyer void	sleepq_wait(const void *wchan, int pri);
113fea73412SConrad Meyer int	sleepq_wait_sig(const void *wchan, int pri);
114dd75b0a9SJohn Baldwin 
11582e17adcSConrad Meyer #ifdef STACK
11682e17adcSConrad Meyer struct sbuf;
117fea73412SConrad Meyer int sleepq_sbuf_print_stacks(struct sbuf *sb, const void *wchan, int queue,
11870e20d4eSConrad Meyer     int *count_stacks_printed);
11982e17adcSConrad Meyer #endif
12070e20d4eSConrad Meyer 
121dd75b0a9SJohn Baldwin #endif	/* _KERNEL */
122dd75b0a9SJohn Baldwin #endif	/* !_SYS_SLEEPQUEUE_H_ */
123