1 /* SPDX-License-Identifier: GPL-2.0 */
5 * Linux wait queue related types and methods
7 #include <linux/list.h>
8 #include <linux/stddef.h>
9 #include <linux/spinlock.h>
11 #include <asm/current.h>
12 #include <uapi/linux/wait.h>
14 typedef struct wait_queue_entry wait_queue_entry_t
;
16 typedef int (*wait_queue_func_t
)(struct wait_queue_entry
*wq_entry
, unsigned mode
, int flags
, void *key
);
17 int default_wake_function(struct wait_queue_entry
*wq_entry
, unsigned mode
, int flags
, void *key
);
19 /* wait_queue_entry::flags */
20 #define WQ_FLAG_EXCLUSIVE 0x01
21 #define WQ_FLAG_WOKEN 0x02
22 #define WQ_FLAG_BOOKMARK 0x04
25 * A single wait-queue entry structure:
27 struct wait_queue_entry
{
30 wait_queue_func_t func
;
31 struct list_head entry
;
34 struct wait_queue_head
{
36 struct list_head head
;
38 typedef struct wait_queue_head wait_queue_head_t
;
43 * Macros for declaration and initialisaton of the datatypes
46 #define __WAITQUEUE_INITIALIZER(name, tsk) { \
48 .func = default_wake_function, \
49 .entry = { NULL, NULL } }
51 #define DECLARE_WAITQUEUE(name, tsk) \
52 struct wait_queue_entry name = __WAITQUEUE_INITIALIZER(name, tsk)
54 #define __WAIT_QUEUE_HEAD_INITIALIZER(name) { \
55 .lock = __SPIN_LOCK_UNLOCKED(name.lock), \
56 .head = { &(name).head, &(name).head } }
58 #define DECLARE_WAIT_QUEUE_HEAD(name) \
59 struct wait_queue_head name = __WAIT_QUEUE_HEAD_INITIALIZER(name)
61 extern void __init_waitqueue_head(struct wait_queue_head
*wq_head
, const char *name
, struct lock_class_key
*);
63 #define init_waitqueue_head(wq_head) \
65 static struct lock_class_key __key; \
67 __init_waitqueue_head((wq_head), #wq_head, &__key); \
71 # define __WAIT_QUEUE_HEAD_INIT_ONSTACK(name) \
72 ({ init_waitqueue_head(&name); name; })
73 # define DECLARE_WAIT_QUEUE_HEAD_ONSTACK(name) \
74 struct wait_queue_head name = __WAIT_QUEUE_HEAD_INIT_ONSTACK(name)
76 # define DECLARE_WAIT_QUEUE_HEAD_ONSTACK(name) DECLARE_WAIT_QUEUE_HEAD(name)
79 static inline void init_waitqueue_entry(struct wait_queue_entry
*wq_entry
, struct task_struct
*p
)
82 wq_entry
->private = p
;
83 wq_entry
->func
= default_wake_function
;
87 init_waitqueue_func_entry(struct wait_queue_entry
*wq_entry
, wait_queue_func_t func
)
90 wq_entry
->private = NULL
;
91 wq_entry
->func
= func
;
95 * waitqueue_active -- locklessly test for waiters on the queue
96 * @wq_head: the waitqueue to test for waiters
98 * returns true if the wait list is not empty
100 * NOTE: this function is lockless and requires care, incorrect usage _will_
101 * lead to sporadic and non-obvious failure.
103 * Use either while holding wait_queue_head::lock or when used for wakeups
104 * with an extra smp_mb() like:
106 * CPU0 - waker CPU1 - waiter
109 * @cond = true; prepare_to_wait(&wq_head, &wait, state);
110 * smp_mb(); // smp_mb() from set_current_state()
111 * if (waitqueue_active(wq_head)) if (@cond)
112 * wake_up(wq_head); break;
115 * finish_wait(&wq_head, &wait);
117 * Because without the explicit smp_mb() it's possible for the
118 * waitqueue_active() load to get hoisted over the @cond store such that we'll
119 * observe an empty wait list while the waiter might not observe @cond.
121 * Also note that this 'optimization' trades a spin_lock() for an smp_mb(),
122 * which (when the lock is uncontended) are of roughly equal cost.
124 static inline int waitqueue_active(struct wait_queue_head
*wq_head
)
126 return !list_empty(&wq_head
->head
);
130 * wq_has_sleeper - check if there are any waiting processes
131 * @wq_head: wait queue head
133 * Returns true if wq_head has waiting processes
135 * Please refer to the comment for waitqueue_active.
137 static inline bool wq_has_sleeper(struct wait_queue_head
*wq_head
)
140 * We need to be sure we are in sync with the
141 * add_wait_queue modifications to the wait queue.
143 * This memory barrier should be paired with one on the
147 return waitqueue_active(wq_head
);
150 extern void add_wait_queue(struct wait_queue_head
*wq_head
, struct wait_queue_entry
*wq_entry
);
151 extern void add_wait_queue_exclusive(struct wait_queue_head
*wq_head
, struct wait_queue_entry
*wq_entry
);
152 extern void remove_wait_queue(struct wait_queue_head
*wq_head
, struct wait_queue_entry
*wq_entry
);
154 static inline void __add_wait_queue(struct wait_queue_head
*wq_head
, struct wait_queue_entry
*wq_entry
)
156 list_add(&wq_entry
->entry
, &wq_head
->head
);
160 * Used for wake-one threads:
163 __add_wait_queue_exclusive(struct wait_queue_head
*wq_head
, struct wait_queue_entry
*wq_entry
)
165 wq_entry
->flags
|= WQ_FLAG_EXCLUSIVE
;
166 __add_wait_queue(wq_head
, wq_entry
);
169 static inline void __add_wait_queue_entry_tail(struct wait_queue_head
*wq_head
, struct wait_queue_entry
*wq_entry
)
171 list_add_tail(&wq_entry
->entry
, &wq_head
->head
);
175 __add_wait_queue_entry_tail_exclusive(struct wait_queue_head
*wq_head
, struct wait_queue_entry
*wq_entry
)
177 wq_entry
->flags
|= WQ_FLAG_EXCLUSIVE
;
178 __add_wait_queue_entry_tail(wq_head
, wq_entry
);
182 __remove_wait_queue(struct wait_queue_head
*wq_head
, struct wait_queue_entry
*wq_entry
)
184 list_del(&wq_entry
->entry
);
187 void __wake_up(struct wait_queue_head
*wq_head
, unsigned int mode
, int nr
, void *key
);
188 void __wake_up_locked_key(struct wait_queue_head
*wq_head
, unsigned int mode
, void *key
);
189 void __wake_up_locked_key_bookmark(struct wait_queue_head
*wq_head
,
190 unsigned int mode
, void *key
, wait_queue_entry_t
*bookmark
);
191 void __wake_up_sync_key(struct wait_queue_head
*wq_head
, unsigned int mode
, int nr
, void *key
);
192 void __wake_up_locked(struct wait_queue_head
*wq_head
, unsigned int mode
, int nr
);
193 void __wake_up_sync(struct wait_queue_head
*wq_head
, unsigned int mode
, int nr
);
195 #define wake_up(x) __wake_up(x, TASK_NORMAL, 1, NULL)
196 #define wake_up_nr(x, nr) __wake_up(x, TASK_NORMAL, nr, NULL)
197 #define wake_up_all(x) __wake_up(x, TASK_NORMAL, 0, NULL)
198 #define wake_up_locked(x) __wake_up_locked((x), TASK_NORMAL, 1)
199 #define wake_up_all_locked(x) __wake_up_locked((x), TASK_NORMAL, 0)
201 #define wake_up_interruptible(x) __wake_up(x, TASK_INTERRUPTIBLE, 1, NULL)
202 #define wake_up_interruptible_nr(x, nr) __wake_up(x, TASK_INTERRUPTIBLE, nr, NULL)
203 #define wake_up_interruptible_all(x) __wake_up(x, TASK_INTERRUPTIBLE, 0, NULL)
204 #define wake_up_interruptible_sync(x) __wake_up_sync((x), TASK_INTERRUPTIBLE, 1)
207 * Wakeup macros to be used to report events to the targets.
209 #define poll_to_key(m) ((void *)(__force uintptr_t)(__poll_t)(m))
210 #define key_to_poll(m) ((__force __poll_t)(uintptr_t)(void *)(m))
211 #define wake_up_poll(x, m) \
212 __wake_up(x, TASK_NORMAL, 1, poll_to_key(m))
213 #define wake_up_locked_poll(x, m) \
214 __wake_up_locked_key((x), TASK_NORMAL, poll_to_key(m))
215 #define wake_up_interruptible_poll(x, m) \
216 __wake_up(x, TASK_INTERRUPTIBLE, 1, poll_to_key(m))
217 #define wake_up_interruptible_sync_poll(x, m) \
218 __wake_up_sync_key((x), TASK_INTERRUPTIBLE, 1, poll_to_key(m))
220 #define ___wait_cond_timeout(condition) \
222 bool __cond = (condition); \
223 if (__cond && !__ret) \
228 #define ___wait_is_interruptible(state) \
229 (!__builtin_constant_p(state) || \
230 state == TASK_INTERRUPTIBLE || state == TASK_KILLABLE) \
232 extern void init_wait_entry(struct wait_queue_entry *wq_entry, int flags);
235 * The below macro ___wait_event() has an explicit shadow of the __ret
236 * variable when used from the wait_event_*() macros.
238 * This is so that both can use the ___wait_cond_timeout() construct
239 * to wrap the condition.
241 * The type inconsistency of the wait_event_*() __ret variable is also
242 * on purpose; we use long where we can return timeout values and int
246 #define ___wait_event(wq_head, condition, state, exclusive, ret, cmd) \
249 struct wait_queue_entry __wq_entry; \
250 long __ret = ret; /* explicit shadow */ \
252 init_wait_entry(&__wq_entry, exclusive ? WQ_FLAG_EXCLUSIVE : 0); \
254 long __int = prepare_to_wait_event(&wq_head, &__wq_entry, state);\
259 if (___wait_is_interruptible(state) && __int) { \
266 finish_wait(&wq_head, &__wq_entry); \
270 #define __wait_event(wq_head, condition) \
271 (void)___wait_event(wq_head, condition, TASK_UNINTERRUPTIBLE, 0, 0, \
275 * wait_event - sleep until a condition gets true
276 * @wq_head: the waitqueue to wait on
277 * @condition: a C expression for the event to wait for
279 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
280 * @condition evaluates to true. The @condition is checked each time
281 * the waitqueue @wq_head is woken up.
283 * wake_up() has to be called after changing any variable that could
284 * change the result of the wait condition.
286 #define wait_event(wq_head, condition) \
291 __wait_event(wq_head, condition); \
294 #define __io_wait_event(wq_head, condition) \
295 (void)___wait_event(wq_head, condition, TASK_UNINTERRUPTIBLE, 0, 0, \
299 * io_wait_event() -- like wait_event() but with io_schedule()
301 #define io_wait_event(wq_head, condition) \
306 __io_wait_event(wq_head, condition); \
309 #define __wait_event_freezable(wq_head, condition) \
310 ___wait_event(wq_head, condition, TASK_INTERRUPTIBLE, 0, 0, \
311 schedule(); try_to_freeze())
314 * wait_event_freezable - sleep (or freeze) until a condition gets true
315 * @wq_head: the waitqueue to wait on
316 * @condition: a C expression for the event to wait for
318 * The process is put to sleep (TASK_INTERRUPTIBLE -- so as not to contribute
319 * to system load) until the @condition evaluates to true. The
320 * @condition is checked each time the waitqueue @wq_head is woken up.
322 * wake_up() has to be called after changing any variable that could
323 * change the result of the wait condition.
325 #define wait_event_freezable(wq_head, condition) \
330 __ret = __wait_event_freezable(wq_head, condition); \
334 #define __wait_event_timeout(wq_head, condition, timeout) \
335 ___wait_event(wq_head, ___wait_cond_timeout(condition), \
336 TASK_UNINTERRUPTIBLE, 0, timeout, \
337 __ret = schedule_timeout(__ret))
340 * wait_event_timeout - sleep until a condition gets true or a timeout elapses
341 * @wq_head: the waitqueue to wait on
342 * @condition: a C expression for the event to wait for
343 * @timeout: timeout, in jiffies
345 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
346 * @condition evaluates to true. The @condition is checked each time
347 * the waitqueue @wq_head is woken up.
349 * wake_up() has to be called after changing any variable that could
350 * change the result of the wait condition.
353 * 0 if the @condition evaluated to %false after the @timeout elapsed,
354 * 1 if the @condition evaluated to %true after the @timeout elapsed,
355 * or the remaining jiffies (at least 1) if the @condition evaluated
356 * to %true before the @timeout elapsed.
358 #define wait_event_timeout(wq_head, condition, timeout) \
360 long __ret = timeout; \
362 if (!___wait_cond_timeout(condition)) \
363 __ret = __wait_event_timeout(wq_head, condition, timeout); \
367 #define __wait_event_freezable_timeout(wq_head, condition, timeout) \
368 ___wait_event(wq_head, ___wait_cond_timeout(condition), \
369 TASK_INTERRUPTIBLE, 0, timeout, \
370 __ret = schedule_timeout(__ret); try_to_freeze())
373 * like wait_event_timeout() -- except it uses TASK_INTERRUPTIBLE to avoid
374 * increasing load and is freezable.
376 #define wait_event_freezable_timeout(wq_head, condition, timeout) \
378 long __ret = timeout; \
380 if (!___wait_cond_timeout(condition)) \
381 __ret = __wait_event_freezable_timeout(wq_head, condition, timeout); \
385 #define __wait_event_exclusive_cmd(wq_head, condition, cmd1, cmd2) \
386 (void)___wait_event(wq_head, condition, TASK_UNINTERRUPTIBLE, 1, 0, \
387 cmd1; schedule(); cmd2)
389 * Just like wait_event_cmd(), except it sets exclusive flag
391 #define wait_event_exclusive_cmd(wq_head, condition, cmd1, cmd2) \
395 __wait_event_exclusive_cmd(wq_head, condition, cmd1, cmd2); \
398 #define __wait_event_cmd(wq_head, condition, cmd1, cmd2) \
399 (void)___wait_event(wq_head, condition, TASK_UNINTERRUPTIBLE, 0, 0, \
400 cmd1; schedule(); cmd2)
403 * wait_event_cmd - sleep until a condition gets true
404 * @wq_head: the waitqueue to wait on
405 * @condition: a C expression for the event to wait for
406 * @cmd1: the command will be executed before sleep
407 * @cmd2: the command will be executed after sleep
409 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
410 * @condition evaluates to true. The @condition is checked each time
411 * the waitqueue @wq_head is woken up.
413 * wake_up() has to be called after changing any variable that could
414 * change the result of the wait condition.
416 #define wait_event_cmd(wq_head, condition, cmd1, cmd2) \
420 __wait_event_cmd(wq_head, condition, cmd1, cmd2); \
423 #define __wait_event_interruptible(wq_head, condition) \
424 ___wait_event(wq_head, condition, TASK_INTERRUPTIBLE, 0, 0, \
428 * wait_event_interruptible - sleep until a condition gets true
429 * @wq_head: the waitqueue to wait on
430 * @condition: a C expression for the event to wait for
432 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
433 * @condition evaluates to true or a signal is received.
434 * The @condition is checked each time the waitqueue @wq_head is woken up.
436 * wake_up() has to be called after changing any variable that could
437 * change the result of the wait condition.
439 * The function will return -ERESTARTSYS if it was interrupted by a
440 * signal and 0 if @condition evaluated to true.
442 #define wait_event_interruptible(wq_head, condition) \
447 __ret = __wait_event_interruptible(wq_head, condition); \
451 #define __wait_event_interruptible_timeout(wq_head, condition, timeout) \
452 ___wait_event(wq_head, ___wait_cond_timeout(condition), \
453 TASK_INTERRUPTIBLE, 0, timeout, \
454 __ret = schedule_timeout(__ret))
457 * wait_event_interruptible_timeout - sleep until a condition gets true or a timeout elapses
458 * @wq_head: the waitqueue to wait on
459 * @condition: a C expression for the event to wait for
460 * @timeout: timeout, in jiffies
462 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
463 * @condition evaluates to true or a signal is received.
464 * The @condition is checked each time the waitqueue @wq_head is woken up.
466 * wake_up() has to be called after changing any variable that could
467 * change the result of the wait condition.
470 * 0 if the @condition evaluated to %false after the @timeout elapsed,
471 * 1 if the @condition evaluated to %true after the @timeout elapsed,
472 * the remaining jiffies (at least 1) if the @condition evaluated
473 * to %true before the @timeout elapsed, or -%ERESTARTSYS if it was
474 * interrupted by a signal.
476 #define wait_event_interruptible_timeout(wq_head, condition, timeout) \
478 long __ret = timeout; \
480 if (!___wait_cond_timeout(condition)) \
481 __ret = __wait_event_interruptible_timeout(wq_head, \
482 condition, timeout); \
486 #define __wait_event_hrtimeout(wq_head, condition, timeout, state) \
489 struct hrtimer_sleeper __t; \
491 hrtimer_init_on_stack(&__t.timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); \
492 hrtimer_init_sleeper(&__t, current); \
493 if ((timeout) != KTIME_MAX) \
494 hrtimer_start_range_ns(&__t.timer, timeout, \
495 current->timer_slack_ns, \
498 __ret = ___wait_event(wq_head, condition, state, 0, 0, \
505 hrtimer_cancel(&__t.timer); \
506 destroy_hrtimer_on_stack(&__t.timer); \
511 * wait_event_hrtimeout - sleep until a condition gets true or a timeout elapses
512 * @wq_head: the waitqueue to wait on
513 * @condition: a C expression for the event to wait for
514 * @timeout: timeout, as a ktime_t
516 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
517 * @condition evaluates to true or a signal is received.
518 * The @condition is checked each time the waitqueue @wq_head is woken up.
520 * wake_up() has to be called after changing any variable that could
521 * change the result of the wait condition.
523 * The function returns 0 if @condition became true, or -ETIME if the timeout
526 #define wait_event_hrtimeout(wq_head, condition, timeout) \
531 __ret = __wait_event_hrtimeout(wq_head, condition, timeout, \
532 TASK_UNINTERRUPTIBLE); \
537 * wait_event_interruptible_hrtimeout - sleep until a condition gets true or a timeout elapses
538 * @wq: the waitqueue to wait on
539 * @condition: a C expression for the event to wait for
540 * @timeout: timeout, as a ktime_t
542 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
543 * @condition evaluates to true or a signal is received.
544 * The @condition is checked each time the waitqueue @wq is woken up.
546 * wake_up() has to be called after changing any variable that could
547 * change the result of the wait condition.
549 * The function returns 0 if @condition became true, -ERESTARTSYS if it was
550 * interrupted by a signal, or -ETIME if the timeout elapsed.
552 #define wait_event_interruptible_hrtimeout(wq, condition, timeout) \
557 __ret = __wait_event_hrtimeout(wq, condition, timeout, \
558 TASK_INTERRUPTIBLE); \
562 #define __wait_event_interruptible_exclusive(wq, condition) \
563 ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 1, 0, \
566 #define wait_event_interruptible_exclusive(wq, condition) \
571 __ret = __wait_event_interruptible_exclusive(wq, condition); \
575 #define __wait_event_killable_exclusive(wq, condition) \
576 ___wait_event(wq, condition, TASK_KILLABLE, 1, 0, \
579 #define wait_event_killable_exclusive(wq, condition) \
584 __ret = __wait_event_killable_exclusive(wq, condition); \
589 #define __wait_event_freezable_exclusive(wq, condition) \
590 ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 1, 0, \
591 schedule(); try_to_freeze())
593 #define wait_event_freezable_exclusive(wq, condition) \
598 __ret = __wait_event_freezable_exclusive(wq, condition); \
602 extern int do_wait_intr(wait_queue_head_t
*, wait_queue_entry_t
*);
603 extern int do_wait_intr_irq(wait_queue_head_t
*, wait_queue_entry_t
*);
605 #define __wait_event_interruptible_locked(wq, condition, exclusive, fn) \
608 DEFINE_WAIT(__wait); \
610 __wait.flags |= WQ_FLAG_EXCLUSIVE; \
612 __ret = fn(&(wq), &__wait); \
615 } while (!(condition)); \
616 __remove_wait_queue(&(wq), &__wait); \
617 __set_current_state(TASK_RUNNING); \
623 * wait_event_interruptible_locked - sleep until a condition gets true
624 * @wq: the waitqueue to wait on
625 * @condition: a C expression for the event to wait for
627 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
628 * @condition evaluates to true or a signal is received.
629 * The @condition is checked each time the waitqueue @wq is woken up.
631 * It must be called with wq.lock being held. This spinlock is
632 * unlocked while sleeping but @condition testing is done while lock
633 * is held and when this macro exits the lock is held.
635 * The lock is locked/unlocked using spin_lock()/spin_unlock()
636 * functions which must match the way they are locked/unlocked outside
639 * wake_up_locked() has to be called after changing any variable that could
640 * change the result of the wait condition.
642 * The function will return -ERESTARTSYS if it was interrupted by a
643 * signal and 0 if @condition evaluated to true.
645 #define wait_event_interruptible_locked(wq, condition) \
647 ? 0 : __wait_event_interruptible_locked(wq, condition, 0, do_wait_intr))
650 * wait_event_interruptible_locked_irq - sleep until a condition gets true
651 * @wq: the waitqueue to wait on
652 * @condition: a C expression for the event to wait for
654 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
655 * @condition evaluates to true or a signal is received.
656 * The @condition is checked each time the waitqueue @wq is woken up.
658 * It must be called with wq.lock being held. This spinlock is
659 * unlocked while sleeping but @condition testing is done while lock
660 * is held and when this macro exits the lock is held.
662 * The lock is locked/unlocked using spin_lock_irq()/spin_unlock_irq()
663 * functions which must match the way they are locked/unlocked outside
666 * wake_up_locked() has to be called after changing any variable that could
667 * change the result of the wait condition.
669 * The function will return -ERESTARTSYS if it was interrupted by a
670 * signal and 0 if @condition evaluated to true.
672 #define wait_event_interruptible_locked_irq(wq, condition) \
674 ? 0 : __wait_event_interruptible_locked(wq, condition, 0, do_wait_intr_irq))
677 * wait_event_interruptible_exclusive_locked - sleep exclusively until a condition gets true
678 * @wq: the waitqueue to wait on
679 * @condition: a C expression for the event to wait for
681 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
682 * @condition evaluates to true or a signal is received.
683 * The @condition is checked each time the waitqueue @wq is woken up.
685 * It must be called with wq.lock being held. This spinlock is
686 * unlocked while sleeping but @condition testing is done while lock
687 * is held and when this macro exits the lock is held.
689 * The lock is locked/unlocked using spin_lock()/spin_unlock()
690 * functions which must match the way they are locked/unlocked outside
693 * The process is put on the wait queue with an WQ_FLAG_EXCLUSIVE flag
694 * set thus when other process waits process on the list if this
695 * process is awaken further processes are not considered.
697 * wake_up_locked() has to be called after changing any variable that could
698 * change the result of the wait condition.
700 * The function will return -ERESTARTSYS if it was interrupted by a
701 * signal and 0 if @condition evaluated to true.
703 #define wait_event_interruptible_exclusive_locked(wq, condition) \
705 ? 0 : __wait_event_interruptible_locked(wq, condition, 1, do_wait_intr))
708 * wait_event_interruptible_exclusive_locked_irq - sleep until a condition gets true
709 * @wq: the waitqueue to wait on
710 * @condition: a C expression for the event to wait for
712 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
713 * @condition evaluates to true or a signal is received.
714 * The @condition is checked each time the waitqueue @wq is woken up.
716 * It must be called with wq.lock being held. This spinlock is
717 * unlocked while sleeping but @condition testing is done while lock
718 * is held and when this macro exits the lock is held.
720 * The lock is locked/unlocked using spin_lock_irq()/spin_unlock_irq()
721 * functions which must match the way they are locked/unlocked outside
724 * The process is put on the wait queue with an WQ_FLAG_EXCLUSIVE flag
725 * set thus when other process waits process on the list if this
726 * process is awaken further processes are not considered.
728 * wake_up_locked() has to be called after changing any variable that could
729 * change the result of the wait condition.
731 * The function will return -ERESTARTSYS if it was interrupted by a
732 * signal and 0 if @condition evaluated to true.
734 #define wait_event_interruptible_exclusive_locked_irq(wq, condition) \
736 ? 0 : __wait_event_interruptible_locked(wq, condition, 1, do_wait_intr_irq))
739 #define __wait_event_killable(wq, condition) \
740 ___wait_event(wq, condition, TASK_KILLABLE, 0, 0, schedule())
743 * wait_event_killable - sleep until a condition gets true
744 * @wq_head: the waitqueue to wait on
745 * @condition: a C expression for the event to wait for
747 * The process is put to sleep (TASK_KILLABLE) until the
748 * @condition evaluates to true or a signal is received.
749 * The @condition is checked each time the waitqueue @wq_head is woken up.
751 * wake_up() has to be called after changing any variable that could
752 * change the result of the wait condition.
754 * The function will return -ERESTARTSYS if it was interrupted by a
755 * signal and 0 if @condition evaluated to true.
757 #define wait_event_killable(wq_head, condition) \
762 __ret = __wait_event_killable(wq_head, condition); \
766 #define __wait_event_killable_timeout(wq_head, condition, timeout) \
767 ___wait_event(wq_head, ___wait_cond_timeout(condition), \
768 TASK_KILLABLE, 0, timeout, \
769 __ret = schedule_timeout(__ret))
772 * wait_event_killable_timeout - sleep until a condition gets true or a timeout elapses
773 * @wq_head: the waitqueue to wait on
774 * @condition: a C expression for the event to wait for
775 * @timeout: timeout, in jiffies
777 * The process is put to sleep (TASK_KILLABLE) until the
778 * @condition evaluates to true or a kill signal is received.
779 * The @condition is checked each time the waitqueue @wq_head is woken up.
781 * wake_up() has to be called after changing any variable that could
782 * change the result of the wait condition.
785 * 0 if the @condition evaluated to %false after the @timeout elapsed,
786 * 1 if the @condition evaluated to %true after the @timeout elapsed,
787 * the remaining jiffies (at least 1) if the @condition evaluated
788 * to %true before the @timeout elapsed, or -%ERESTARTSYS if it was
789 * interrupted by a kill signal.
791 * Only kill signals interrupt this process.
793 #define wait_event_killable_timeout(wq_head, condition, timeout) \
795 long __ret = timeout; \
797 if (!___wait_cond_timeout(condition)) \
798 __ret = __wait_event_killable_timeout(wq_head, \
799 condition, timeout); \
804 #define __wait_event_lock_irq(wq_head, condition, lock, cmd) \
805 (void)___wait_event(wq_head, condition, TASK_UNINTERRUPTIBLE, 0, 0, \
806 spin_unlock_irq(&lock); \
809 spin_lock_irq(&lock))
812 * wait_event_lock_irq_cmd - sleep until a condition gets true. The
813 * condition is checked under the lock. This
814 * is expected to be called with the lock
816 * @wq_head: the waitqueue to wait on
817 * @condition: a C expression for the event to wait for
818 * @lock: a locked spinlock_t, which will be released before cmd
819 * and schedule() and reacquired afterwards.
820 * @cmd: a command which is invoked outside the critical section before
823 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
824 * @condition evaluates to true. The @condition is checked each time
825 * the waitqueue @wq_head is woken up.
827 * wake_up() has to be called after changing any variable that could
828 * change the result of the wait condition.
830 * This is supposed to be called while holding the lock. The lock is
831 * dropped before invoking the cmd and going to sleep and is reacquired
834 #define wait_event_lock_irq_cmd(wq_head, condition, lock, cmd) \
838 __wait_event_lock_irq(wq_head, condition, lock, cmd); \
842 * wait_event_lock_irq - sleep until a condition gets true. The
843 * condition is checked under the lock. This
844 * is expected to be called with the lock
846 * @wq_head: the waitqueue to wait on
847 * @condition: a C expression for the event to wait for
848 * @lock: a locked spinlock_t, which will be released before schedule()
849 * and reacquired afterwards.
851 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
852 * @condition evaluates to true. The @condition is checked each time
853 * the waitqueue @wq_head is woken up.
855 * wake_up() has to be called after changing any variable that could
856 * change the result of the wait condition.
858 * This is supposed to be called while holding the lock. The lock is
859 * dropped before going to sleep and is reacquired afterwards.
861 #define wait_event_lock_irq(wq_head, condition, lock) \
865 __wait_event_lock_irq(wq_head, condition, lock, ); \
869 #define __wait_event_interruptible_lock_irq(wq_head, condition, lock, cmd) \
870 ___wait_event(wq_head, condition, TASK_INTERRUPTIBLE, 0, 0, \
871 spin_unlock_irq(&lock); \
874 spin_lock_irq(&lock))
877 * wait_event_interruptible_lock_irq_cmd - sleep until a condition gets true.
878 * The condition is checked under the lock. This is expected to
879 * be called with the lock taken.
880 * @wq_head: the waitqueue to wait on
881 * @condition: a C expression for the event to wait for
882 * @lock: a locked spinlock_t, which will be released before cmd and
883 * schedule() and reacquired afterwards.
884 * @cmd: a command which is invoked outside the critical section before
887 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
888 * @condition evaluates to true or a signal is received. The @condition is
889 * checked each time the waitqueue @wq_head is woken up.
891 * wake_up() has to be called after changing any variable that could
892 * change the result of the wait condition.
894 * This is supposed to be called while holding the lock. The lock is
895 * dropped before invoking the cmd and going to sleep and is reacquired
898 * The macro will return -ERESTARTSYS if it was interrupted by a signal
899 * and 0 if @condition evaluated to true.
901 #define wait_event_interruptible_lock_irq_cmd(wq_head, condition, lock, cmd) \
905 __ret = __wait_event_interruptible_lock_irq(wq_head, \
906 condition, lock, cmd); \
911 * wait_event_interruptible_lock_irq - sleep until a condition gets true.
912 * The condition is checked under the lock. This is expected
913 * to be called with the lock taken.
914 * @wq_head: the waitqueue to wait on
915 * @condition: a C expression for the event to wait for
916 * @lock: a locked spinlock_t, which will be released before schedule()
917 * and reacquired afterwards.
919 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
920 * @condition evaluates to true or signal is received. The @condition is
921 * checked each time the waitqueue @wq_head is woken up.
923 * wake_up() has to be called after changing any variable that could
924 * change the result of the wait condition.
926 * This is supposed to be called while holding the lock. The lock is
927 * dropped before going to sleep and is reacquired afterwards.
929 * The macro will return -ERESTARTSYS if it was interrupted by a signal
930 * and 0 if @condition evaluated to true.
932 #define wait_event_interruptible_lock_irq(wq_head, condition, lock) \
936 __ret = __wait_event_interruptible_lock_irq(wq_head, \
941 #define __wait_event_interruptible_lock_irq_timeout(wq_head, condition, \
943 ___wait_event(wq_head, ___wait_cond_timeout(condition), \
944 TASK_INTERRUPTIBLE, 0, timeout, \
945 spin_unlock_irq(&lock); \
946 __ret = schedule_timeout(__ret); \
947 spin_lock_irq(&lock));
950 * wait_event_interruptible_lock_irq_timeout - sleep until a condition gets
951 * true or a timeout elapses. The condition is checked under
952 * the lock. This is expected to be called with the lock taken.
953 * @wq_head: the waitqueue to wait on
954 * @condition: a C expression for the event to wait for
955 * @lock: a locked spinlock_t, which will be released before schedule()
956 * and reacquired afterwards.
957 * @timeout: timeout, in jiffies
959 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
960 * @condition evaluates to true or signal is received. The @condition is
961 * checked each time the waitqueue @wq_head is woken up.
963 * wake_up() has to be called after changing any variable that could
964 * change the result of the wait condition.
966 * This is supposed to be called while holding the lock. The lock is
967 * dropped before going to sleep and is reacquired afterwards.
969 * The function returns 0 if the @timeout elapsed, -ERESTARTSYS if it
970 * was interrupted by a signal, and the remaining jiffies otherwise
971 * if the condition evaluated to true before the timeout elapsed.
973 #define wait_event_interruptible_lock_irq_timeout(wq_head, condition, lock, \
976 long __ret = timeout; \
977 if (!___wait_cond_timeout(condition)) \
978 __ret = __wait_event_interruptible_lock_irq_timeout( \
979 wq_head, condition, lock, timeout); \
984 * Waitqueues which are removed from the waitqueue_head at wakeup time
986 void prepare_to_wait(struct wait_queue_head
*wq_head
, struct wait_queue_entry
*wq_entry
, int state
);
987 void prepare_to_wait_exclusive(struct wait_queue_head
*wq_head
, struct wait_queue_entry
*wq_entry
, int state
);
988 long prepare_to_wait_event(struct wait_queue_head
*wq_head
, struct wait_queue_entry
*wq_entry
, int state
);
989 void finish_wait(struct wait_queue_head
*wq_head
, struct wait_queue_entry
*wq_entry
);
990 long wait_woken(struct wait_queue_entry
*wq_entry
, unsigned mode
, long timeout
);
991 int woken_wake_function(struct wait_queue_entry
*wq_entry
, unsigned mode
, int sync
, void *key
);
992 int autoremove_wake_function(struct wait_queue_entry
*wq_entry
, unsigned mode
, int sync
, void *key
);
994 #define DEFINE_WAIT_FUNC(name, function) \
995 struct wait_queue_entry name = { \
996 .private = current, \
998 .entry = LIST_HEAD_INIT((name).entry), \
1001 #define DEFINE_WAIT(name) DEFINE_WAIT_FUNC(name, autoremove_wake_function)
1003 #define init_wait(wait) \
1005 (wait)->private = current; \
1006 (wait)->func = autoremove_wake_function; \
1007 INIT_LIST_HEAD(&(wait)->entry); \
1008 (wait)->flags = 0; \
1011 #endif /* _LINUX_WAIT_H */