5 #include <linux/list.h>
6 #include <linux/stddef.h>
7 #include <linux/spinlock.h>
8 #include <asm/current.h>
9 #include <uapi/linux/wait.h>
11 typedef struct __wait_queue wait_queue_t;
12 typedef int (*wait_queue_func_t)(wait_queue_t *wait, unsigned mode, int flags, void *key);
13 int default_wake_function(wait_queue_t *wait, unsigned mode, int flags, void *key);
17 #define WQ_FLAG_EXCLUSIVE 0x01
19 wait_queue_func_t func;
20 struct list_head task_list;
26 #define WAIT_ATOMIC_T_BIT_NR -1
29 struct wait_bit_queue {
30 struct wait_bit_key key;
34 struct __wait_queue_head {
36 struct list_head task_list;
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 .task_list = { NULL, NULL } }
51 #define DECLARE_WAITQUEUE(name, tsk) \
52 wait_queue_t name = __WAITQUEUE_INITIALIZER(name, tsk)
54 #define __WAIT_QUEUE_HEAD_INITIALIZER(name) { \
55 .lock = __SPIN_LOCK_UNLOCKED(name.lock), \
56 .task_list = { &(name).task_list, &(name).task_list } }
58 #define DECLARE_WAIT_QUEUE_HEAD(name) \
59 wait_queue_head_t name = __WAIT_QUEUE_HEAD_INITIALIZER(name)
61 #define __WAIT_BIT_KEY_INITIALIZER(word, bit) \
62 { .flags = word, .bit_nr = bit, }
64 #define __WAIT_ATOMIC_T_KEY_INITIALIZER(p) \
65 { .flags = p, .bit_nr = WAIT_ATOMIC_T_BIT_NR, }
67 extern void __init_waitqueue_head(wait_queue_head_t *q, const char *name, struct lock_class_key *);
69 #define init_waitqueue_head(q) \
71 static struct lock_class_key __key; \
73 __init_waitqueue_head((q), #q, &__key); \
77 # define __WAIT_QUEUE_HEAD_INIT_ONSTACK(name) \
78 ({ init_waitqueue_head(&name); name; })
79 # define DECLARE_WAIT_QUEUE_HEAD_ONSTACK(name) \
80 wait_queue_head_t name = __WAIT_QUEUE_HEAD_INIT_ONSTACK(name)
82 # define DECLARE_WAIT_QUEUE_HEAD_ONSTACK(name) DECLARE_WAIT_QUEUE_HEAD(name)
85 static inline void init_waitqueue_entry(wait_queue_t *q, struct task_struct *p)
89 q->func = default_wake_function;
92 static inline void init_waitqueue_func_entry(wait_queue_t *q,
93 wait_queue_func_t func)
100 static inline int waitqueue_active(wait_queue_head_t *q)
102 return !list_empty(&q->task_list);
105 extern void add_wait_queue(wait_queue_head_t *q, wait_queue_t *wait);
106 extern void add_wait_queue_exclusive(wait_queue_head_t *q, wait_queue_t *wait);
107 extern void remove_wait_queue(wait_queue_head_t *q, wait_queue_t *wait);
109 static inline void __add_wait_queue(wait_queue_head_t *head, wait_queue_t *new)
111 list_add(&new->task_list, &head->task_list);
115 * Used for wake-one threads:
117 static inline void __add_wait_queue_exclusive(wait_queue_head_t *q,
120 wait->flags |= WQ_FLAG_EXCLUSIVE;
121 __add_wait_queue(q, wait);
124 static inline void __add_wait_queue_tail(wait_queue_head_t *head,
127 list_add_tail(&new->task_list, &head->task_list);
130 static inline void __add_wait_queue_tail_exclusive(wait_queue_head_t *q,
133 wait->flags |= WQ_FLAG_EXCLUSIVE;
134 __add_wait_queue_tail(q, wait);
137 static inline void __remove_wait_queue(wait_queue_head_t *head,
140 list_del(&old->task_list);
143 void __wake_up(wait_queue_head_t *q, unsigned int mode, int nr, void *key);
144 void __wake_up_locked_key(wait_queue_head_t *q, unsigned int mode, void *key);
145 void __wake_up_sync_key(wait_queue_head_t *q, unsigned int mode, int nr,
147 void __wake_up_locked(wait_queue_head_t *q, unsigned int mode, int nr);
148 void __wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr);
149 void __wake_up_bit(wait_queue_head_t *, void *, int);
150 int __wait_on_bit(wait_queue_head_t *, struct wait_bit_queue *, int (*)(void *), unsigned);
151 int __wait_on_bit_lock(wait_queue_head_t *, struct wait_bit_queue *, int (*)(void *), unsigned);
152 void wake_up_bit(void *, int);
153 void wake_up_atomic_t(atomic_t *);
154 int out_of_line_wait_on_bit(void *, int, int (*)(void *), unsigned);
155 int out_of_line_wait_on_bit_lock(void *, int, int (*)(void *), unsigned);
156 int out_of_line_wait_on_atomic_t(atomic_t *, int (*)(atomic_t *), unsigned);
157 wait_queue_head_t *bit_waitqueue(void *, int);
159 #define wake_up(x) __wake_up(x, TASK_NORMAL, 1, NULL)
160 #define wake_up_nr(x, nr) __wake_up(x, TASK_NORMAL, nr, NULL)
161 #define wake_up_all(x) __wake_up(x, TASK_NORMAL, 0, NULL)
162 #define wake_up_locked(x) __wake_up_locked((x), TASK_NORMAL, 1)
163 #define wake_up_all_locked(x) __wake_up_locked((x), TASK_NORMAL, 0)
165 #define wake_up_interruptible(x) __wake_up(x, TASK_INTERRUPTIBLE, 1, NULL)
166 #define wake_up_interruptible_nr(x, nr) __wake_up(x, TASK_INTERRUPTIBLE, nr, NULL)
167 #define wake_up_interruptible_all(x) __wake_up(x, TASK_INTERRUPTIBLE, 0, NULL)
168 #define wake_up_interruptible_sync(x) __wake_up_sync((x), TASK_INTERRUPTIBLE, 1)
171 * Wakeup macros to be used to report events to the targets.
173 #define wake_up_poll(x, m) \
174 __wake_up(x, TASK_NORMAL, 1, (void *) (m))
175 #define wake_up_locked_poll(x, m) \
176 __wake_up_locked_key((x), TASK_NORMAL, (void *) (m))
177 #define wake_up_interruptible_poll(x, m) \
178 __wake_up(x, TASK_INTERRUPTIBLE, 1, (void *) (m))
179 #define wake_up_interruptible_sync_poll(x, m) \
180 __wake_up_sync_key((x), TASK_INTERRUPTIBLE, 1, (void *) (m))
182 #define ___wait_cond_timeout(condition, ret) \
184 bool __cond = (condition); \
185 if (__cond && !ret) \
190 #define ___wait_signal_pending(state) \
191 ((state == TASK_INTERRUPTIBLE && signal_pending(current)) || \
192 (state == TASK_KILLABLE && fatal_signal_pending(current)))
194 #define ___wait_nop_ret int ret __always_unused
196 #define ___wait_event(wq, condition, state, exclusive, ret, cmd) \
199 DEFINE_WAIT(__wait); \
203 prepare_to_wait_exclusive(&wq, &__wait, state); \
205 prepare_to_wait(&wq, &__wait, state); \
210 if (___wait_signal_pending(state)) { \
211 ret = -ERESTARTSYS; \
213 abort_exclusive_wait(&wq, &__wait, \
222 finish_wait(&wq, &__wait); \
226 #define __wait_event(wq, condition) \
227 ___wait_event(wq, condition, TASK_UNINTERRUPTIBLE, 0, \
228 ___wait_nop_ret, schedule())
231 * wait_event - sleep until a condition gets true
232 * @wq: the waitqueue to wait on
233 * @condition: a C expression for the event to wait for
235 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
236 * @condition evaluates to true. The @condition is checked each time
237 * the waitqueue @wq is woken up.
239 * wake_up() has to be called after changing any variable that could
240 * change the result of the wait condition.
242 #define wait_event(wq, condition) \
246 __wait_event(wq, condition); \
249 #define __wait_event_timeout(wq, condition, ret) \
250 ___wait_event(wq, ___wait_cond_timeout(condition, ret), \
251 TASK_UNINTERRUPTIBLE, 0, ret, \
252 ret = schedule_timeout(ret))
255 * wait_event_timeout - sleep until a condition gets true or a timeout elapses
256 * @wq: the waitqueue to wait on
257 * @condition: a C expression for the event to wait for
258 * @timeout: timeout, in jiffies
260 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
261 * @condition evaluates to true. The @condition is checked each time
262 * the waitqueue @wq is woken up.
264 * wake_up() has to be called after changing any variable that could
265 * change the result of the wait condition.
267 * The function returns 0 if the @timeout elapsed, or the remaining
268 * jiffies (at least 1) if the @condition evaluated to %true before
269 * the @timeout elapsed.
271 #define wait_event_timeout(wq, condition, timeout) \
273 long __ret = timeout; \
275 __wait_event_timeout(wq, condition, __ret); \
279 #define __wait_event_interruptible(wq, condition, ret) \
280 ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 0, ret, \
284 * wait_event_interruptible - sleep until a condition gets true
285 * @wq: the waitqueue to wait on
286 * @condition: a C expression for the event to wait for
288 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
289 * @condition evaluates to true or a signal is received.
290 * The @condition is checked each time the waitqueue @wq is woken up.
292 * wake_up() has to be called after changing any variable that could
293 * change the result of the wait condition.
295 * The function will return -ERESTARTSYS if it was interrupted by a
296 * signal and 0 if @condition evaluated to true.
298 #define wait_event_interruptible(wq, condition) \
302 __wait_event_interruptible(wq, condition, __ret); \
306 #define __wait_event_interruptible_timeout(wq, condition, ret) \
307 ___wait_event(wq, ___wait_cond_timeout(condition, ret), \
308 TASK_INTERRUPTIBLE, 0, ret, \
309 ret = schedule_timeout(ret))
312 * wait_event_interruptible_timeout - sleep until a condition gets true or a timeout elapses
313 * @wq: the waitqueue to wait on
314 * @condition: a C expression for the event to wait for
315 * @timeout: timeout, in jiffies
317 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
318 * @condition evaluates to true or a signal is received.
319 * The @condition is checked each time the waitqueue @wq is woken up.
321 * wake_up() has to be called after changing any variable that could
322 * change the result of the wait condition.
325 * 0 if the @timeout elapsed, -%ERESTARTSYS if it was interrupted by
326 * a signal, or the remaining jiffies (at least 1) if the @condition
327 * evaluated to %true before the @timeout elapsed.
329 #define wait_event_interruptible_timeout(wq, condition, timeout) \
331 long __ret = timeout; \
333 __wait_event_interruptible_timeout(wq, condition, __ret); \
337 #define __wait_event_hrtimeout(wq, condition, timeout, state) \
340 DEFINE_WAIT(__wait); \
341 struct hrtimer_sleeper __t; \
343 hrtimer_init_on_stack(&__t.timer, CLOCK_MONOTONIC, \
345 hrtimer_init_sleeper(&__t, current); \
346 if ((timeout).tv64 != KTIME_MAX) \
347 hrtimer_start_range_ns(&__t.timer, timeout, \
348 current->timer_slack_ns, \
352 prepare_to_wait(&wq, &__wait, state); \
355 if (state == TASK_INTERRUPTIBLE && \
356 signal_pending(current)) { \
357 __ret = -ERESTARTSYS; \
367 hrtimer_cancel(&__t.timer); \
368 destroy_hrtimer_on_stack(&__t.timer); \
369 finish_wait(&wq, &__wait); \
374 * wait_event_hrtimeout - sleep until a condition gets true or a timeout elapses
375 * @wq: the waitqueue to wait on
376 * @condition: a C expression for the event to wait for
377 * @timeout: timeout, as a ktime_t
379 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
380 * @condition evaluates to true or a signal is received.
381 * The @condition is checked each time the waitqueue @wq is woken up.
383 * wake_up() has to be called after changing any variable that could
384 * change the result of the wait condition.
386 * The function returns 0 if @condition became true, or -ETIME if the timeout
389 #define wait_event_hrtimeout(wq, condition, timeout) \
393 __ret = __wait_event_hrtimeout(wq, condition, timeout, \
394 TASK_UNINTERRUPTIBLE); \
399 * wait_event_interruptible_hrtimeout - sleep until a condition gets true or a timeout elapses
400 * @wq: the waitqueue to wait on
401 * @condition: a C expression for the event to wait for
402 * @timeout: timeout, as a ktime_t
404 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
405 * @condition evaluates to true or a signal is received.
406 * The @condition is checked each time the waitqueue @wq is woken up.
408 * wake_up() has to be called after changing any variable that could
409 * change the result of the wait condition.
411 * The function returns 0 if @condition became true, -ERESTARTSYS if it was
412 * interrupted by a signal, or -ETIME if the timeout elapsed.
414 #define wait_event_interruptible_hrtimeout(wq, condition, timeout) \
418 __ret = __wait_event_hrtimeout(wq, condition, timeout, \
419 TASK_INTERRUPTIBLE); \
423 #define __wait_event_interruptible_exclusive(wq, condition, ret) \
426 DEFINE_WAIT(__wait); \
429 prepare_to_wait_exclusive(&wq, &__wait, \
430 TASK_INTERRUPTIBLE); \
433 if (signal_pending(current)) { \
434 ret = -ERESTARTSYS; \
435 abort_exclusive_wait(&wq, &__wait, \
436 TASK_INTERRUPTIBLE, NULL); \
441 finish_wait(&wq, &__wait); \
445 #define wait_event_interruptible_exclusive(wq, condition) \
449 __wait_event_interruptible_exclusive(wq, condition, __ret);\
454 #define __wait_event_interruptible_locked(wq, condition, exclusive, irq) \
457 DEFINE_WAIT(__wait); \
459 __wait.flags |= WQ_FLAG_EXCLUSIVE; \
461 if (likely(list_empty(&__wait.task_list))) \
462 __add_wait_queue_tail(&(wq), &__wait); \
463 set_current_state(TASK_INTERRUPTIBLE); \
464 if (signal_pending(current)) { \
465 __ret = -ERESTARTSYS; \
469 spin_unlock_irq(&(wq).lock); \
471 spin_unlock(&(wq).lock); \
474 spin_lock_irq(&(wq).lock); \
476 spin_lock(&(wq).lock); \
477 } while (!(condition)); \
478 __remove_wait_queue(&(wq), &__wait); \
479 __set_current_state(TASK_RUNNING); \
485 * wait_event_interruptible_locked - sleep until a condition gets true
486 * @wq: the waitqueue to wait on
487 * @condition: a C expression for the event to wait for
489 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
490 * @condition evaluates to true or a signal is received.
491 * The @condition is checked each time the waitqueue @wq is woken up.
493 * It must be called with wq.lock being held. This spinlock is
494 * unlocked while sleeping but @condition testing is done while lock
495 * is held and when this macro exits the lock is held.
497 * The lock is locked/unlocked using spin_lock()/spin_unlock()
498 * functions which must match the way they are locked/unlocked outside
501 * wake_up_locked() has to be called after changing any variable that could
502 * change the result of the wait condition.
504 * The function will return -ERESTARTSYS if it was interrupted by a
505 * signal and 0 if @condition evaluated to true.
507 #define wait_event_interruptible_locked(wq, condition) \
509 ? 0 : __wait_event_interruptible_locked(wq, condition, 0, 0))
512 * wait_event_interruptible_locked_irq - sleep until a condition gets true
513 * @wq: the waitqueue to wait on
514 * @condition: a C expression for the event to wait for
516 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
517 * @condition evaluates to true or a signal is received.
518 * The @condition is checked each time the waitqueue @wq is woken up.
520 * It must be called with wq.lock being held. This spinlock is
521 * unlocked while sleeping but @condition testing is done while lock
522 * is held and when this macro exits the lock is held.
524 * The lock is locked/unlocked using spin_lock_irq()/spin_unlock_irq()
525 * functions which must match the way they are locked/unlocked outside
528 * wake_up_locked() has to be called after changing any variable that could
529 * change the result of the wait condition.
531 * The function will return -ERESTARTSYS if it was interrupted by a
532 * signal and 0 if @condition evaluated to true.
534 #define wait_event_interruptible_locked_irq(wq, condition) \
536 ? 0 : __wait_event_interruptible_locked(wq, condition, 0, 1))
539 * wait_event_interruptible_exclusive_locked - sleep exclusively until a condition gets true
540 * @wq: the waitqueue to wait on
541 * @condition: a C expression for the event to wait for
543 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
544 * @condition evaluates to true or a signal is received.
545 * The @condition is checked each time the waitqueue @wq is woken up.
547 * It must be called with wq.lock being held. This spinlock is
548 * unlocked while sleeping but @condition testing is done while lock
549 * is held and when this macro exits the lock is held.
551 * The lock is locked/unlocked using spin_lock()/spin_unlock()
552 * functions which must match the way they are locked/unlocked outside
555 * The process is put on the wait queue with an WQ_FLAG_EXCLUSIVE flag
556 * set thus when other process waits process on the list if this
557 * process is awaken further processes are not considered.
559 * wake_up_locked() has to be called after changing any variable that could
560 * change the result of the wait condition.
562 * The function will return -ERESTARTSYS if it was interrupted by a
563 * signal and 0 if @condition evaluated to true.
565 #define wait_event_interruptible_exclusive_locked(wq, condition) \
567 ? 0 : __wait_event_interruptible_locked(wq, condition, 1, 0))
570 * wait_event_interruptible_exclusive_locked_irq - sleep until a condition gets true
571 * @wq: the waitqueue to wait on
572 * @condition: a C expression for the event to wait for
574 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
575 * @condition evaluates to true or a signal is received.
576 * The @condition is checked each time the waitqueue @wq is woken up.
578 * It must be called with wq.lock being held. This spinlock is
579 * unlocked while sleeping but @condition testing is done while lock
580 * is held and when this macro exits the lock is held.
582 * The lock is locked/unlocked using spin_lock_irq()/spin_unlock_irq()
583 * functions which must match the way they are locked/unlocked outside
586 * The process is put on the wait queue with an WQ_FLAG_EXCLUSIVE flag
587 * set thus when other process waits process on the list if this
588 * process is awaken further processes are not considered.
590 * wake_up_locked() has to be called after changing any variable that could
591 * change the result of the wait condition.
593 * The function will return -ERESTARTSYS if it was interrupted by a
594 * signal and 0 if @condition evaluated to true.
596 #define wait_event_interruptible_exclusive_locked_irq(wq, condition) \
598 ? 0 : __wait_event_interruptible_locked(wq, condition, 1, 1))
602 #define __wait_event_killable(wq, condition, ret) \
604 DEFINE_WAIT(__wait); \
607 prepare_to_wait(&wq, &__wait, TASK_KILLABLE); \
610 if (!fatal_signal_pending(current)) { \
614 ret = -ERESTARTSYS; \
617 finish_wait(&wq, &__wait); \
621 * wait_event_killable - sleep until a condition gets true
622 * @wq: the waitqueue to wait on
623 * @condition: a C expression for the event to wait for
625 * The process is put to sleep (TASK_KILLABLE) until the
626 * @condition evaluates to true or a signal is received.
627 * The @condition is checked each time the waitqueue @wq is woken up.
629 * wake_up() has to be called after changing any variable that could
630 * change the result of the wait condition.
632 * The function will return -ERESTARTSYS if it was interrupted by a
633 * signal and 0 if @condition evaluated to true.
635 #define wait_event_killable(wq, condition) \
639 __wait_event_killable(wq, condition, __ret); \
644 #define __wait_event_lock_irq(wq, condition, lock, cmd) \
646 DEFINE_WAIT(__wait); \
649 prepare_to_wait(&wq, &__wait, TASK_UNINTERRUPTIBLE); \
652 spin_unlock_irq(&lock); \
655 spin_lock_irq(&lock); \
657 finish_wait(&wq, &__wait); \
661 * wait_event_lock_irq_cmd - sleep until a condition gets true. The
662 * condition is checked under the lock. This
663 * is expected to be called with the lock
665 * @wq: the waitqueue to wait on
666 * @condition: a C expression for the event to wait for
667 * @lock: a locked spinlock_t, which will be released before cmd
668 * and schedule() and reacquired afterwards.
669 * @cmd: a command which is invoked outside the critical section before
672 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
673 * @condition evaluates to true. The @condition is checked each time
674 * the waitqueue @wq is woken up.
676 * wake_up() has to be called after changing any variable that could
677 * change the result of the wait condition.
679 * This is supposed to be called while holding the lock. The lock is
680 * dropped before invoking the cmd and going to sleep and is reacquired
683 #define wait_event_lock_irq_cmd(wq, condition, lock, cmd) \
687 __wait_event_lock_irq(wq, condition, lock, cmd); \
691 * wait_event_lock_irq - sleep until a condition gets true. The
692 * condition is checked under the lock. This
693 * is expected to be called with the lock
695 * @wq: the waitqueue to wait on
696 * @condition: a C expression for the event to wait for
697 * @lock: a locked spinlock_t, which will be released before schedule()
698 * and reacquired afterwards.
700 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
701 * @condition evaluates to true. The @condition is checked each time
702 * the waitqueue @wq is woken up.
704 * wake_up() has to be called after changing any variable that could
705 * change the result of the wait condition.
707 * This is supposed to be called while holding the lock. The lock is
708 * dropped before going to sleep and is reacquired afterwards.
710 #define wait_event_lock_irq(wq, condition, lock) \
714 __wait_event_lock_irq(wq, condition, lock, ); \
718 #define __wait_event_interruptible_lock_irq(wq, condition, \
721 DEFINE_WAIT(__wait); \
724 prepare_to_wait(&wq, &__wait, TASK_INTERRUPTIBLE); \
727 if (signal_pending(current)) { \
728 ret = -ERESTARTSYS; \
731 spin_unlock_irq(&lock); \
734 spin_lock_irq(&lock); \
736 finish_wait(&wq, &__wait); \
740 * wait_event_interruptible_lock_irq_cmd - sleep until a condition gets true.
741 * The condition is checked under the lock. This is expected to
742 * be called with the lock taken.
743 * @wq: the waitqueue to wait on
744 * @condition: a C expression for the event to wait for
745 * @lock: a locked spinlock_t, which will be released before cmd and
746 * schedule() and reacquired afterwards.
747 * @cmd: a command which is invoked outside the critical section before
750 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
751 * @condition evaluates to true or a signal is received. The @condition is
752 * checked each time the waitqueue @wq is woken up.
754 * wake_up() has to be called after changing any variable that could
755 * change the result of the wait condition.
757 * This is supposed to be called while holding the lock. The lock is
758 * dropped before invoking the cmd and going to sleep and is reacquired
761 * The macro will return -ERESTARTSYS if it was interrupted by a signal
762 * and 0 if @condition evaluated to true.
764 #define wait_event_interruptible_lock_irq_cmd(wq, condition, lock, cmd) \
769 __wait_event_interruptible_lock_irq(wq, condition, \
775 * wait_event_interruptible_lock_irq - sleep until a condition gets true.
776 * The condition is checked under the lock. This is expected
777 * to be called with the lock taken.
778 * @wq: the waitqueue to wait on
779 * @condition: a C expression for the event to wait for
780 * @lock: a locked spinlock_t, which will be released before schedule()
781 * and reacquired afterwards.
783 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
784 * @condition evaluates to true or signal is received. The @condition is
785 * checked each time the waitqueue @wq is woken up.
787 * wake_up() has to be called after changing any variable that could
788 * change the result of the wait condition.
790 * This is supposed to be called while holding the lock. The lock is
791 * dropped before going to sleep and is reacquired afterwards.
793 * The macro will return -ERESTARTSYS if it was interrupted by a signal
794 * and 0 if @condition evaluated to true.
796 #define wait_event_interruptible_lock_irq(wq, condition, lock) \
801 __wait_event_interruptible_lock_irq(wq, condition, \
806 #define __wait_event_interruptible_lock_irq_timeout(wq, condition, \
809 DEFINE_WAIT(__wait); \
812 prepare_to_wait(&wq, &__wait, TASK_INTERRUPTIBLE); \
813 if (___wait_cond_timeout(condition, ret)) \
815 if (signal_pending(current)) { \
816 ret = -ERESTARTSYS; \
819 spin_unlock_irq(&lock); \
820 ret = schedule_timeout(ret); \
821 spin_lock_irq(&lock); \
823 finish_wait(&wq, &__wait); \
827 * wait_event_interruptible_lock_irq_timeout - sleep until a condition gets true or a timeout elapses.
828 * The condition is checked under the lock. This is expected
829 * to be called with the lock taken.
830 * @wq: the waitqueue to wait on
831 * @condition: a C expression for the event to wait for
832 * @lock: a locked spinlock_t, which will be released before schedule()
833 * and reacquired afterwards.
834 * @timeout: timeout, in jiffies
836 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
837 * @condition evaluates to true or signal is received. The @condition is
838 * checked each time the waitqueue @wq is woken up.
840 * wake_up() has to be called after changing any variable that could
841 * change the result of the wait condition.
843 * This is supposed to be called while holding the lock. The lock is
844 * dropped before going to sleep and is reacquired afterwards.
846 * The function returns 0 if the @timeout elapsed, -ERESTARTSYS if it
847 * was interrupted by a signal, and the remaining jiffies otherwise
848 * if the condition evaluated to true before the timeout elapsed.
850 #define wait_event_interruptible_lock_irq_timeout(wq, condition, lock, \
853 int __ret = timeout; \
856 __wait_event_interruptible_lock_irq_timeout( \
857 wq, condition, lock, __ret); \
863 * These are the old interfaces to sleep waiting for an event.
864 * They are racy. DO NOT use them, use the wait_event* interfaces above.
865 * We plan to remove these interfaces.
867 extern void sleep_on(wait_queue_head_t *q);
868 extern long sleep_on_timeout(wait_queue_head_t *q,
869 signed long timeout);
870 extern void interruptible_sleep_on(wait_queue_head_t *q);
871 extern long interruptible_sleep_on_timeout(wait_queue_head_t *q,
872 signed long timeout);
875 * Waitqueues which are removed from the waitqueue_head at wakeup time
877 void prepare_to_wait(wait_queue_head_t *q, wait_queue_t *wait, int state);
878 void prepare_to_wait_exclusive(wait_queue_head_t *q, wait_queue_t *wait, int state);
879 void finish_wait(wait_queue_head_t *q, wait_queue_t *wait);
880 void abort_exclusive_wait(wait_queue_head_t *q, wait_queue_t *wait,
881 unsigned int mode, void *key);
882 int autoremove_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key);
883 int wake_bit_function(wait_queue_t *wait, unsigned mode, int sync, void *key);
885 #define DEFINE_WAIT_FUNC(name, function) \
886 wait_queue_t name = { \
887 .private = current, \
889 .task_list = LIST_HEAD_INIT((name).task_list), \
892 #define DEFINE_WAIT(name) DEFINE_WAIT_FUNC(name, autoremove_wake_function)
894 #define DEFINE_WAIT_BIT(name, word, bit) \
895 struct wait_bit_queue name = { \
896 .key = __WAIT_BIT_KEY_INITIALIZER(word, bit), \
898 .private = current, \
899 .func = wake_bit_function, \
901 LIST_HEAD_INIT((name).wait.task_list), \
905 #define init_wait(wait) \
907 (wait)->private = current; \
908 (wait)->func = autoremove_wake_function; \
909 INIT_LIST_HEAD(&(wait)->task_list); \
914 * wait_on_bit - wait for a bit to be cleared
915 * @word: the word being waited on, a kernel virtual address
916 * @bit: the bit of the word being waited on
917 * @action: the function used to sleep, which may take special actions
918 * @mode: the task state to sleep in
920 * There is a standard hashed waitqueue table for generic use. This
921 * is the part of the hashtable's accessor API that waits on a bit.
922 * For instance, if one were to have waiters on a bitflag, one would
923 * call wait_on_bit() in threads waiting for the bit to clear.
924 * One uses wait_on_bit() where one is waiting for the bit to clear,
925 * but has no intention of setting it.
927 static inline int wait_on_bit(void *word, int bit,
928 int (*action)(void *), unsigned mode)
930 if (!test_bit(bit, word))
932 return out_of_line_wait_on_bit(word, bit, action, mode);
936 * wait_on_bit_lock - wait for a bit to be cleared, when wanting to set it
937 * @word: the word being waited on, a kernel virtual address
938 * @bit: the bit of the word being waited on
939 * @action: the function used to sleep, which may take special actions
940 * @mode: the task state to sleep in
942 * There is a standard hashed waitqueue table for generic use. This
943 * is the part of the hashtable's accessor API that waits on a bit
944 * when one intends to set it, for instance, trying to lock bitflags.
945 * For instance, if one were to have waiters trying to set bitflag
946 * and waiting for it to clear before setting it, one would call
947 * wait_on_bit() in threads waiting to be able to set the bit.
948 * One uses wait_on_bit_lock() where one is waiting for the bit to
949 * clear with the intention of setting it, and when done, clearing it.
951 static inline int wait_on_bit_lock(void *word, int bit,
952 int (*action)(void *), unsigned mode)
954 if (!test_and_set_bit(bit, word))
956 return out_of_line_wait_on_bit_lock(word, bit, action, mode);
960 * wait_on_atomic_t - Wait for an atomic_t to become 0
961 * @val: The atomic value being waited on, a kernel virtual address
962 * @action: the function used to sleep, which may take special actions
963 * @mode: the task state to sleep in
965 * Wait for an atomic_t to become 0. We abuse the bit-wait waitqueue table for
966 * the purpose of getting a waitqueue, but we set the key to a bit number
967 * outside of the target 'word'.
970 int wait_on_atomic_t(atomic_t *val, int (*action)(atomic_t *), unsigned mode)
972 if (atomic_read(val) == 0)
974 return out_of_line_wait_on_atomic_t(val, action, mode);