blob: 55a611486bac1aea59e87f00ee3f80f2d82185a7 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _LINUX_WAIT_H
3#define _LINUX_WAIT_H
Ingo Molnarfb869b62013-10-04 10:24:49 +02004/*
5 * Linux wait queue related types and methods
6 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/list.h>
8#include <linux/stddef.h>
9#include <linux/spinlock.h>
Ingo Molnar5b825c32017-02-02 17:54:15 +010010
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <asm/current.h>
David Howells607ca462012-10-13 10:46:48 +010012#include <uapi/linux/wait.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Ingo Molnarac6424b2017-06-20 12:06:13 +020014typedef struct wait_queue_entry wait_queue_entry_t;
Ingo Molnar50816c42017-03-05 10:33:16 +010015
16typedef int (*wait_queue_func_t)(struct wait_queue_entry *wq_entry, unsigned mode, int flags, void *key);
17int default_wake_function(struct wait_queue_entry *wq_entry, unsigned mode, int flags, void *key);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Ingo Molnarac6424b2017-06-20 12:06:13 +020019/* wait_queue_entry::flags */
Peter Zijlstra61ada522014-09-24 10:18:47 +020020#define WQ_FLAG_EXCLUSIVE 0x01
21#define WQ_FLAG_WOKEN 0x02
Tim Chen2554db92017-08-25 09:13:54 -070022#define WQ_FLAG_BOOKMARK 0x04
Peter Zijlstra61ada522014-09-24 10:18:47 +020023
Ingo Molnarac6424b2017-06-20 12:06:13 +020024/*
25 * A single wait-queue entry structure:
26 */
27struct wait_queue_entry {
Ingo Molnarfb869b62013-10-04 10:24:49 +020028 unsigned int flags;
Ingo Molnarfb869b62013-10-04 10:24:49 +020029 void *private;
30 wait_queue_func_t func;
Ingo Molnar2055da92017-06-20 12:06:46 +020031 struct list_head entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032};
33
Ingo Molnar9d9d6762017-03-05 11:10:18 +010034struct wait_queue_head {
Ingo Molnarfb869b62013-10-04 10:24:49 +020035 spinlock_t lock;
Ingo Molnar2055da92017-06-20 12:06:46 +020036 struct list_head head;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037};
Ingo Molnar9d9d6762017-03-05 11:10:18 +010038typedef struct wait_queue_head wait_queue_head_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Tim Schmielau8c65b4a2005-11-07 00:59:43 -080040struct task_struct;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/*
43 * Macros for declaration and initialisaton of the datatypes
44 */
45
Ingo Molnar4b1c4802017-03-05 12:07:33 +010046#define __WAITQUEUE_INITIALIZER(name, tsk) { \
47 .private = tsk, \
48 .func = default_wake_function, \
Ingo Molnar2055da92017-06-20 12:06:46 +020049 .entry = { NULL, NULL } }
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Ingo Molnar4b1c4802017-03-05 12:07:33 +010051#define DECLARE_WAITQUEUE(name, tsk) \
Ingo Molnar50816c42017-03-05 10:33:16 +010052 struct wait_queue_entry name = __WAITQUEUE_INITIALIZER(name, tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Ingo Molnar4b1c4802017-03-05 12:07:33 +010054#define __WAIT_QUEUE_HEAD_INITIALIZER(name) { \
55 .lock = __SPIN_LOCK_UNLOCKED(name.lock), \
Ingo Molnar2055da92017-06-20 12:06:46 +020056 .head = { &(name).head, &(name).head } }
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58#define DECLARE_WAIT_QUEUE_HEAD(name) \
Ingo Molnar9d9d6762017-03-05 11:10:18 +010059 struct wait_queue_head name = __WAIT_QUEUE_HEAD_INITIALIZER(name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Ingo Molnar9d9d6762017-03-05 11:10:18 +010061extern void __init_waitqueue_head(struct wait_queue_head *wq_head, const char *name, struct lock_class_key *);
Peter Zijlstra2fc39112009-08-10 12:33:05 +010062
Ingo Molnar4b1c4802017-03-05 12:07:33 +010063#define init_waitqueue_head(wq_head) \
64 do { \
65 static struct lock_class_key __key; \
66 \
67 __init_waitqueue_head((wq_head), #wq_head, &__key); \
Peter Zijlstra2fc39112009-08-10 12:33:05 +010068 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Peter Zijlstra7259f0d2006-10-29 22:46:36 -080070#ifdef CONFIG_LOCKDEP
71# define __WAIT_QUEUE_HEAD_INIT_ONSTACK(name) \
72 ({ init_waitqueue_head(&name); name; })
73# define DECLARE_WAIT_QUEUE_HEAD_ONSTACK(name) \
Ingo Molnar9d9d6762017-03-05 11:10:18 +010074 struct wait_queue_head name = __WAIT_QUEUE_HEAD_INIT_ONSTACK(name)
Peter Zijlstra7259f0d2006-10-29 22:46:36 -080075#else
76# define DECLARE_WAIT_QUEUE_HEAD_ONSTACK(name) DECLARE_WAIT_QUEUE_HEAD(name)
77#endif
78
Ingo Molnar50816c42017-03-05 10:33:16 +010079static inline void init_waitqueue_entry(struct wait_queue_entry *wq_entry, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Ingo Molnar50816c42017-03-05 10:33:16 +010081 wq_entry->flags = 0;
82 wq_entry->private = p;
83 wq_entry->func = default_wake_function;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
Ingo Molnarfb869b62013-10-04 10:24:49 +020086static inline void
Ingo Molnar50816c42017-03-05 10:33:16 +010087init_waitqueue_func_entry(struct wait_queue_entry *wq_entry, wait_queue_func_t func)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Ingo Molnar50816c42017-03-05 10:33:16 +010089 wq_entry->flags = 0;
90 wq_entry->private = NULL;
91 wq_entry->func = func;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
Peter Zijlstra69e51e922015-10-23 14:32:34 +020094/**
95 * waitqueue_active -- locklessly test for waiters on the queue
Ingo Molnar9d9d6762017-03-05 11:10:18 +010096 * @wq_head: the waitqueue to test for waiters
Peter Zijlstra69e51e922015-10-23 14:32:34 +020097 *
98 * returns true if the wait list is not empty
99 *
100 * NOTE: this function is lockless and requires care, incorrect usage _will_
101 * lead to sporadic and non-obvious failure.
102 *
Ingo Molnar9d9d6762017-03-05 11:10:18 +0100103 * Use either while holding wait_queue_head::lock or when used for wakeups
Peter Zijlstra69e51e922015-10-23 14:32:34 +0200104 * with an extra smp_mb() like:
105 *
106 * CPU0 - waker CPU1 - waiter
107 *
108 * for (;;) {
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100109 * @cond = true; prepare_to_wait(&wq_head, &wait, state);
Peter Zijlstra69e51e922015-10-23 14:32:34 +0200110 * smp_mb(); // smp_mb() from set_current_state()
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100111 * if (waitqueue_active(wq_head)) if (@cond)
112 * wake_up(wq_head); break;
Peter Zijlstra69e51e922015-10-23 14:32:34 +0200113 * schedule();
114 * }
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100115 * finish_wait(&wq_head, &wait);
Peter Zijlstra69e51e922015-10-23 14:32:34 +0200116 *
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.
120 *
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.
123 */
Ingo Molnar9d9d6762017-03-05 11:10:18 +0100124static inline int waitqueue_active(struct wait_queue_head *wq_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Ingo Molnar2055da92017-06-20 12:06:46 +0200126 return !list_empty(&wq_head->head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
Herbert Xu1ce0bf52015-11-26 13:55:39 +0800129/**
130 * wq_has_sleeper - check if there are any waiting processes
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100131 * @wq_head: wait queue head
Herbert Xu1ce0bf52015-11-26 13:55:39 +0800132 *
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100133 * Returns true if wq_head has waiting processes
Herbert Xu1ce0bf52015-11-26 13:55:39 +0800134 *
135 * Please refer to the comment for waitqueue_active.
136 */
Ingo Molnar9d9d6762017-03-05 11:10:18 +0100137static inline bool wq_has_sleeper(struct wait_queue_head *wq_head)
Herbert Xu1ce0bf52015-11-26 13:55:39 +0800138{
139 /*
140 * We need to be sure we are in sync with the
141 * add_wait_queue modifications to the wait queue.
142 *
143 * This memory barrier should be paired with one on the
144 * waiting side.
145 */
146 smp_mb();
Ingo Molnar9d9d6762017-03-05 11:10:18 +0100147 return waitqueue_active(wq_head);
Herbert Xu1ce0bf52015-11-26 13:55:39 +0800148}
149
Ingo Molnar9d9d6762017-03-05 11:10:18 +0100150extern void add_wait_queue(struct wait_queue_head *wq_head, struct wait_queue_entry *wq_entry);
151extern void add_wait_queue_exclusive(struct wait_queue_head *wq_head, struct wait_queue_entry *wq_entry);
152extern void remove_wait_queue(struct wait_queue_head *wq_head, struct wait_queue_entry *wq_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Ingo Molnar9d9d6762017-03-05 11:10:18 +0100154static inline void __add_wait_queue(struct wait_queue_head *wq_head, struct wait_queue_entry *wq_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Ingo Molnar2055da92017-06-20 12:06:46 +0200156 list_add(&wq_entry->entry, &wq_head->head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
159/*
160 * Used for wake-one threads:
161 */
Ingo Molnarfb869b62013-10-04 10:24:49 +0200162static inline void
Ingo Molnar9d9d6762017-03-05 11:10:18 +0100163__add_wait_queue_exclusive(struct wait_queue_head *wq_head, struct wait_queue_entry *wq_entry)
Changli Gaoa93d2f12010-05-07 14:33:26 +0800164{
Ingo Molnar50816c42017-03-05 10:33:16 +0100165 wq_entry->flags |= WQ_FLAG_EXCLUSIVE;
Ingo Molnar9d9d6762017-03-05 11:10:18 +0100166 __add_wait_queue(wq_head, wq_entry);
Changli Gaoa93d2f12010-05-07 14:33:26 +0800167}
168
Ingo Molnar9d9d6762017-03-05 11:10:18 +0100169static inline void __add_wait_queue_entry_tail(struct wait_queue_head *wq_head, struct wait_queue_entry *wq_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Ingo Molnar2055da92017-06-20 12:06:46 +0200171 list_add_tail(&wq_entry->entry, &wq_head->head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
Ingo Molnarfb869b62013-10-04 10:24:49 +0200174static inline void
Ingo Molnar9d9d6762017-03-05 11:10:18 +0100175__add_wait_queue_entry_tail_exclusive(struct wait_queue_head *wq_head, struct wait_queue_entry *wq_entry)
Changli Gaoa93d2f12010-05-07 14:33:26 +0800176{
Ingo Molnar50816c42017-03-05 10:33:16 +0100177 wq_entry->flags |= WQ_FLAG_EXCLUSIVE;
Ingo Molnar9d9d6762017-03-05 11:10:18 +0100178 __add_wait_queue_entry_tail(wq_head, wq_entry);
Changli Gaoa93d2f12010-05-07 14:33:26 +0800179}
180
Ingo Molnarfb869b62013-10-04 10:24:49 +0200181static inline void
Ingo Molnar9d9d6762017-03-05 11:10:18 +0100182__remove_wait_queue(struct wait_queue_head *wq_head, struct wait_queue_entry *wq_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Ingo Molnar2055da92017-06-20 12:06:46 +0200184 list_del(&wq_entry->entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
Ingo Molnar9d9d6762017-03-05 11:10:18 +0100187void __wake_up(struct wait_queue_head *wq_head, unsigned int mode, int nr, void *key);
188void __wake_up_locked_key(struct wait_queue_head *wq_head, unsigned int mode, void *key);
Tim Chen11a19c72017-08-25 09:13:55 -0700189void __wake_up_locked_key_bookmark(struct wait_queue_head *wq_head,
190 unsigned int mode, void *key, wait_queue_entry_t *bookmark);
Ingo Molnar9d9d6762017-03-05 11:10:18 +0100191void __wake_up_sync_key(struct wait_queue_head *wq_head, unsigned int mode, int nr, void *key);
192void __wake_up_locked(struct wait_queue_head *wq_head, unsigned int mode, int nr);
193void __wake_up_sync(struct wait_queue_head *wq_head, unsigned int mode, int nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Matthew Wilcoxe64d66c2007-12-06 17:34:36 -0500195#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)
Thomas Gleixner63b20012011-12-01 00:04:00 +0100198#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)
Matthew Wilcoxe64d66c2007-12-06 17:34:36 -0500200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201#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)
Matthew Wilcoxe64d66c2007-12-06 17:34:36 -0500204#define wake_up_interruptible_sync(x) __wake_up_sync((x), TASK_INTERRUPTIBLE, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Peter Zijlstra0ccf8312008-02-04 22:27:20 -0800206/*
Davide Libenzic0da3772009-03-31 15:24:20 -0700207 * Wakeup macros to be used to report events to the targets.
Peter Zijlstra0ccf8312008-02-04 22:27:20 -0800208 */
Al Viro3ad6f932017-07-03 20:14:56 -0400209#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))
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100211#define wake_up_poll(x, m) \
Al Viro3ad6f932017-07-03 20:14:56 -0400212 __wake_up(x, TASK_NORMAL, 1, poll_to_key(m))
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100213#define wake_up_locked_poll(x, m) \
Al Viro3ad6f932017-07-03 20:14:56 -0400214 __wake_up_locked_key((x), TASK_NORMAL, poll_to_key(m))
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100215#define wake_up_interruptible_poll(x, m) \
Al Viro3ad6f932017-07-03 20:14:56 -0400216 __wake_up(x, TASK_INTERRUPTIBLE, 1, poll_to_key(m))
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100217#define wake_up_interruptible_sync_poll(x, m) \
Al Viro3ad6f932017-07-03 20:14:56 -0400218 __wake_up_sync_key((x), TASK_INTERRUPTIBLE, 1, poll_to_key(m))
Peter Zijlstra0ccf8312008-02-04 22:27:20 -0800219
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100220#define ___wait_cond_timeout(condition) \
221({ \
222 bool __cond = (condition); \
223 if (__cond && !__ret) \
224 __ret = 1; \
225 __cond || !__ret; \
Peter Zijlstra2953ef22013-10-02 11:22:19 +0200226})
227
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100228#define ___wait_is_interruptible(state) \
229 (!__builtin_constant_p(state) || \
230 state == TASK_INTERRUPTIBLE || state == TASK_KILLABLE) \
Peter Zijlstra41a14312013-10-02 11:22:21 +0200231
Ingo Molnar50816c42017-03-05 10:33:16 +0100232extern void init_wait_entry(struct wait_queue_entry *wq_entry, int flags);
Oleg Nesterov0176bea2016-09-06 16:00:55 +0200233
Peter Zijlstra8b322012014-04-18 15:07:17 -0700234/*
235 * The below macro ___wait_event() has an explicit shadow of the __ret
236 * variable when used from the wait_event_*() macros.
237 *
238 * This is so that both can use the ___wait_cond_timeout() construct
239 * to wrap the condition.
240 *
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
243 * otherwise.
244 */
245
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100246#define ___wait_event(wq_head, condition, state, exclusive, ret, cmd) \
247({ \
248 __label__ __out; \
249 struct wait_queue_entry __wq_entry; \
250 long __ret = ret; /* explicit shadow */ \
251 \
252 init_wait_entry(&__wq_entry, exclusive ? WQ_FLAG_EXCLUSIVE : 0); \
253 for (;;) { \
254 long __int = prepare_to_wait_event(&wq_head, &__wq_entry, state);\
255 \
256 if (condition) \
257 break; \
258 \
259 if (___wait_is_interruptible(state) && __int) { \
260 __ret = __int; \
261 goto __out; \
262 } \
263 \
264 cmd; \
265 } \
266 finish_wait(&wq_head, &__wq_entry); \
267__out: __ret; \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200268})
Peter Zijlstra41a14312013-10-02 11:22:21 +0200269
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100270#define __wait_event(wq_head, condition) \
271 (void)___wait_event(wq_head, condition, TASK_UNINTERRUPTIBLE, 0, 0, \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200272 schedule())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274/**
275 * wait_event - sleep until a condition gets true
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100276 * @wq_head: the waitqueue to wait on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 * @condition: a C expression for the event to wait for
278 *
279 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
280 * @condition evaluates to true. The @condition is checked each time
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100281 * the waitqueue @wq_head is woken up.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 *
283 * wake_up() has to be called after changing any variable that could
284 * change the result of the wait condition.
285 */
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100286#define wait_event(wq_head, condition) \
287do { \
288 might_sleep(); \
289 if (condition) \
290 break; \
291 __wait_event(wq_head, condition); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292} while (0)
293
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100294#define __io_wait_event(wq_head, condition) \
295 (void)___wait_event(wq_head, condition, TASK_UNINTERRUPTIBLE, 0, 0, \
Peter Zijlstra2c561242015-02-03 12:55:31 +0100296 io_schedule())
297
298/*
299 * io_wait_event() -- like wait_event() but with io_schedule()
300 */
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100301#define io_wait_event(wq_head, condition) \
302do { \
303 might_sleep(); \
304 if (condition) \
305 break; \
306 __io_wait_event(wq_head, condition); \
Peter Zijlstra2c561242015-02-03 12:55:31 +0100307} while (0)
308
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100309#define __wait_event_freezable(wq_head, condition) \
310 ___wait_event(wq_head, condition, TASK_INTERRUPTIBLE, 0, 0, \
Peter Zijlstra36df04b2014-10-29 12:21:57 +0100311 schedule(); try_to_freeze())
312
313/**
Stafford Hornef4bcfa12016-02-23 22:39:28 +0900314 * wait_event_freezable - sleep (or freeze) until a condition gets true
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100315 * @wq_head: the waitqueue to wait on
Peter Zijlstra36df04b2014-10-29 12:21:57 +0100316 * @condition: a C expression for the event to wait for
317 *
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
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100320 * @condition is checked each time the waitqueue @wq_head is woken up.
Peter Zijlstra36df04b2014-10-29 12:21:57 +0100321 *
322 * wake_up() has to be called after changing any variable that could
323 * change the result of the wait condition.
324 */
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100325#define wait_event_freezable(wq_head, condition) \
326({ \
327 int __ret = 0; \
328 might_sleep(); \
329 if (!(condition)) \
330 __ret = __wait_event_freezable(wq_head, condition); \
331 __ret; \
Peter Zijlstra36df04b2014-10-29 12:21:57 +0100332})
333
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100334#define __wait_event_timeout(wq_head, condition, timeout) \
335 ___wait_event(wq_head, ___wait_cond_timeout(condition), \
336 TASK_UNINTERRUPTIBLE, 0, timeout, \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200337 __ret = schedule_timeout(__ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339/**
340 * wait_event_timeout - sleep until a condition gets true or a timeout elapses
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100341 * @wq_head: the waitqueue to wait on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 * @condition: a C expression for the event to wait for
343 * @timeout: timeout, in jiffies
344 *
345 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
346 * @condition evaluates to true. The @condition is checked each time
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100347 * the waitqueue @wq_head is woken up.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 *
349 * wake_up() has to be called after changing any variable that could
350 * change the result of the wait condition.
351 *
Scot Doyle6b44f512014-08-24 17:12:27 +0000352 * Returns:
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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 */
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100358#define wait_event_timeout(wq_head, condition, timeout) \
359({ \
360 long __ret = timeout; \
361 might_sleep(); \
362 if (!___wait_cond_timeout(condition)) \
363 __ret = __wait_event_timeout(wq_head, condition, timeout); \
364 __ret; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365})
366
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100367#define __wait_event_freezable_timeout(wq_head, condition, timeout) \
368 ___wait_event(wq_head, ___wait_cond_timeout(condition), \
369 TASK_INTERRUPTIBLE, 0, timeout, \
Peter Zijlstra36df04b2014-10-29 12:21:57 +0100370 __ret = schedule_timeout(__ret); try_to_freeze())
371
372/*
373 * like wait_event_timeout() -- except it uses TASK_INTERRUPTIBLE to avoid
374 * increasing load and is freezable.
375 */
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100376#define wait_event_freezable_timeout(wq_head, condition, timeout) \
377({ \
378 long __ret = timeout; \
379 might_sleep(); \
380 if (!___wait_cond_timeout(condition)) \
381 __ret = __wait_event_freezable_timeout(wq_head, condition, timeout); \
382 __ret; \
Peter Zijlstra36df04b2014-10-29 12:21:57 +0100383})
384
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100385#define __wait_event_exclusive_cmd(wq_head, condition, cmd1, cmd2) \
386 (void)___wait_event(wq_head, condition, TASK_UNINTERRUPTIBLE, 1, 0, \
Yuanhan Liu9f3520c2015-05-08 18:19:05 +1000387 cmd1; schedule(); cmd2)
388/*
389 * Just like wait_event_cmd(), except it sets exclusive flag
390 */
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100391#define wait_event_exclusive_cmd(wq_head, condition, cmd1, cmd2) \
392do { \
393 if (condition) \
394 break; \
395 __wait_event_exclusive_cmd(wq_head, condition, cmd1, cmd2); \
Yuanhan Liu9f3520c2015-05-08 18:19:05 +1000396} while (0)
397
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100398#define __wait_event_cmd(wq_head, condition, cmd1, cmd2) \
399 (void)___wait_event(wq_head, condition, TASK_UNINTERRUPTIBLE, 0, 0, \
Shaohua Li82e06c82013-11-14 15:16:16 +1100400 cmd1; schedule(); cmd2)
401
402/**
403 * wait_event_cmd - sleep until a condition gets true
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100404 * @wq_head: the waitqueue to wait on
Shaohua Li82e06c82013-11-14 15:16:16 +1100405 * @condition: a C expression for the event to wait for
Masanari Iidaf434f7a2014-01-22 01:22:06 +0900406 * @cmd1: the command will be executed before sleep
407 * @cmd2: the command will be executed after sleep
Shaohua Li82e06c82013-11-14 15:16:16 +1100408 *
409 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
410 * @condition evaluates to true. The @condition is checked each time
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100411 * the waitqueue @wq_head is woken up.
Shaohua Li82e06c82013-11-14 15:16:16 +1100412 *
413 * wake_up() has to be called after changing any variable that could
414 * change the result of the wait condition.
415 */
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100416#define wait_event_cmd(wq_head, condition, cmd1, cmd2) \
417do { \
418 if (condition) \
419 break; \
420 __wait_event_cmd(wq_head, condition, cmd1, cmd2); \
Shaohua Li82e06c82013-11-14 15:16:16 +1100421} while (0)
422
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100423#define __wait_event_interruptible(wq_head, condition) \
424 ___wait_event(wq_head, condition, TASK_INTERRUPTIBLE, 0, 0, \
Peter Zijlstraf13f4c42013-10-02 11:22:24 +0200425 schedule())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427/**
428 * wait_event_interruptible - sleep until a condition gets true
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100429 * @wq_head: the waitqueue to wait on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 * @condition: a C expression for the event to wait for
431 *
432 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
433 * @condition evaluates to true or a signal is received.
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100434 * The @condition is checked each time the waitqueue @wq_head is woken up.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 *
436 * wake_up() has to be called after changing any variable that could
437 * change the result of the wait condition.
438 *
439 * The function will return -ERESTARTSYS if it was interrupted by a
440 * signal and 0 if @condition evaluated to true.
441 */
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100442#define wait_event_interruptible(wq_head, condition) \
443({ \
444 int __ret = 0; \
445 might_sleep(); \
446 if (!(condition)) \
447 __ret = __wait_event_interruptible(wq_head, condition); \
448 __ret; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449})
450
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100451#define __wait_event_interruptible_timeout(wq_head, condition, timeout) \
452 ___wait_event(wq_head, ___wait_cond_timeout(condition), \
453 TASK_INTERRUPTIBLE, 0, timeout, \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200454 __ret = schedule_timeout(__ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456/**
457 * wait_event_interruptible_timeout - sleep until a condition gets true or a timeout elapses
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100458 * @wq_head: the waitqueue to wait on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 * @condition: a C expression for the event to wait for
460 * @timeout: timeout, in jiffies
461 *
462 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
463 * @condition evaluates to true or a signal is received.
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100464 * The @condition is checked each time the waitqueue @wq_head is woken up.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 *
466 * wake_up() has to be called after changing any variable that could
467 * change the result of the wait condition.
468 *
Imre Deak4c663cf2013-05-24 15:55:09 -0700469 * Returns:
Scot Doyle6b44f512014-08-24 17:12:27 +0000470 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 */
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100476#define wait_event_interruptible_timeout(wq_head, condition, timeout) \
477({ \
478 long __ret = timeout; \
479 might_sleep(); \
480 if (!___wait_cond_timeout(condition)) \
481 __ret = __wait_event_interruptible_timeout(wq_head, \
482 condition, timeout); \
483 __ret; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484})
485
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100486#define __wait_event_hrtimeout(wq_head, condition, timeout, state) \
487({ \
488 int __ret = 0; \
489 struct hrtimer_sleeper __t; \
490 \
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, \
496 HRTIMER_MODE_REL); \
497 \
498 __ret = ___wait_event(wq_head, condition, state, 0, 0, \
499 if (!__t.task) { \
500 __ret = -ETIME; \
501 break; \
502 } \
503 schedule()); \
504 \
505 hrtimer_cancel(&__t.timer); \
506 destroy_hrtimer_on_stack(&__t.timer); \
507 __ret; \
Kent Overstreet774a08b2013-05-07 16:18:43 -0700508})
509
510/**
511 * wait_event_hrtimeout - sleep until a condition gets true or a timeout elapses
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100512 * @wq_head: the waitqueue to wait on
Kent Overstreet774a08b2013-05-07 16:18:43 -0700513 * @condition: a C expression for the event to wait for
514 * @timeout: timeout, as a ktime_t
515 *
516 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
517 * @condition evaluates to true or a signal is received.
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100518 * The @condition is checked each time the waitqueue @wq_head is woken up.
Kent Overstreet774a08b2013-05-07 16:18:43 -0700519 *
520 * wake_up() has to be called after changing any variable that could
521 * change the result of the wait condition.
522 *
523 * The function returns 0 if @condition became true, or -ETIME if the timeout
524 * elapsed.
525 */
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100526#define wait_event_hrtimeout(wq_head, condition, timeout) \
527({ \
528 int __ret = 0; \
529 might_sleep(); \
530 if (!(condition)) \
531 __ret = __wait_event_hrtimeout(wq_head, condition, timeout, \
532 TASK_UNINTERRUPTIBLE); \
533 __ret; \
Kent Overstreet774a08b2013-05-07 16:18:43 -0700534})
535
536/**
537 * wait_event_interruptible_hrtimeout - sleep until a condition gets true or a timeout elapses
Jonathan Corbet6c423f52017-07-24 13:58:00 -0600538 * @wq: the waitqueue to wait on
Kent Overstreet774a08b2013-05-07 16:18:43 -0700539 * @condition: a C expression for the event to wait for
540 * @timeout: timeout, as a ktime_t
541 *
542 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
543 * @condition evaluates to true or a signal is received.
Jonathan Corbet6c423f52017-07-24 13:58:00 -0600544 * The @condition is checked each time the waitqueue @wq is woken up.
Kent Overstreet774a08b2013-05-07 16:18:43 -0700545 *
546 * wake_up() has to be called after changing any variable that could
547 * change the result of the wait condition.
548 *
549 * The function returns 0 if @condition became true, -ERESTARTSYS if it was
550 * interrupted by a signal, or -ETIME if the timeout elapsed.
551 */
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100552#define wait_event_interruptible_hrtimeout(wq, condition, timeout) \
553({ \
554 long __ret = 0; \
555 might_sleep(); \
556 if (!(condition)) \
557 __ret = __wait_event_hrtimeout(wq, condition, timeout, \
558 TASK_INTERRUPTIBLE); \
559 __ret; \
Kent Overstreet774a08b2013-05-07 16:18:43 -0700560})
561
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100562#define __wait_event_interruptible_exclusive(wq, condition) \
563 ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 1, 0, \
Peter Zijlstra48c25212013-10-02 11:22:26 +0200564 schedule())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100566#define wait_event_interruptible_exclusive(wq, condition) \
567({ \
568 int __ret = 0; \
569 might_sleep(); \
570 if (!(condition)) \
571 __ret = __wait_event_interruptible_exclusive(wq, condition); \
572 __ret; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573})
574
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100575#define __wait_event_killable_exclusive(wq, condition) \
576 ___wait_event(wq, condition, TASK_KILLABLE, 1, 0, \
Al Viro6a0fb302016-07-19 03:04:34 -0400577 schedule())
578
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100579#define wait_event_killable_exclusive(wq, condition) \
580({ \
581 int __ret = 0; \
582 might_sleep(); \
583 if (!(condition)) \
584 __ret = __wait_event_killable_exclusive(wq, condition); \
585 __ret; \
Al Viro6a0fb302016-07-19 03:04:34 -0400586})
587
Michal Nazarewicz22c43c82010-05-05 12:53:11 +0200588
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100589#define __wait_event_freezable_exclusive(wq, condition) \
590 ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 1, 0, \
Peter Zijlstra36df04b2014-10-29 12:21:57 +0100591 schedule(); try_to_freeze())
592
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100593#define wait_event_freezable_exclusive(wq, condition) \
594({ \
595 int __ret = 0; \
596 might_sleep(); \
597 if (!(condition)) \
598 __ret = __wait_event_freezable_exclusive(wq, condition); \
599 __ret; \
Peter Zijlstra36df04b2014-10-29 12:21:57 +0100600})
601
Ingo Molnarac6424b2017-06-20 12:06:13 +0200602extern int do_wait_intr(wait_queue_head_t *, wait_queue_entry_t *);
603extern int do_wait_intr_irq(wait_queue_head_t *, wait_queue_entry_t *);
Peter Zijlstra36df04b2014-10-29 12:21:57 +0100604
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100605#define __wait_event_interruptible_locked(wq, condition, exclusive, fn) \
606({ \
607 int __ret; \
608 DEFINE_WAIT(__wait); \
609 if (exclusive) \
610 __wait.flags |= WQ_FLAG_EXCLUSIVE; \
611 do { \
612 __ret = fn(&(wq), &__wait); \
613 if (__ret) \
614 break; \
615 } while (!(condition)); \
616 __remove_wait_queue(&(wq), &__wait); \
617 __set_current_state(TASK_RUNNING); \
618 __ret; \
Michal Nazarewicz22c43c82010-05-05 12:53:11 +0200619})
620
621
622/**
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
626 *
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.
630 *
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.
634 *
635 * The lock is locked/unlocked using spin_lock()/spin_unlock()
636 * functions which must match the way they are locked/unlocked outside
637 * of this macro.
638 *
639 * wake_up_locked() has to be called after changing any variable that could
640 * change the result of the wait condition.
641 *
642 * The function will return -ERESTARTSYS if it was interrupted by a
643 * signal and 0 if @condition evaluated to true.
644 */
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100645#define wait_event_interruptible_locked(wq, condition) \
646 ((condition) \
Linus Torvaldsbd0f9b32017-03-07 15:33:14 -0800647 ? 0 : __wait_event_interruptible_locked(wq, condition, 0, do_wait_intr))
Michal Nazarewicz22c43c82010-05-05 12:53:11 +0200648
649/**
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
653 *
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.
657 *
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.
661 *
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
664 * of this macro.
665 *
666 * wake_up_locked() has to be called after changing any variable that could
667 * change the result of the wait condition.
668 *
669 * The function will return -ERESTARTSYS if it was interrupted by a
670 * signal and 0 if @condition evaluated to true.
671 */
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100672#define wait_event_interruptible_locked_irq(wq, condition) \
673 ((condition) \
Linus Torvaldsbd0f9b32017-03-07 15:33:14 -0800674 ? 0 : __wait_event_interruptible_locked(wq, condition, 0, do_wait_intr_irq))
Michal Nazarewicz22c43c82010-05-05 12:53:11 +0200675
676/**
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
680 *
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.
684 *
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.
688 *
689 * The lock is locked/unlocked using spin_lock()/spin_unlock()
690 * functions which must match the way they are locked/unlocked outside
691 * of this macro.
692 *
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.
696 *
697 * wake_up_locked() has to be called after changing any variable that could
698 * change the result of the wait condition.
699 *
700 * The function will return -ERESTARTSYS if it was interrupted by a
701 * signal and 0 if @condition evaluated to true.
702 */
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100703#define wait_event_interruptible_exclusive_locked(wq, condition) \
704 ((condition) \
Linus Torvaldsbd0f9b32017-03-07 15:33:14 -0800705 ? 0 : __wait_event_interruptible_locked(wq, condition, 1, do_wait_intr))
Michal Nazarewicz22c43c82010-05-05 12:53:11 +0200706
707/**
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
711 *
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.
715 *
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.
719 *
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
722 * of this macro.
723 *
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.
727 *
728 * wake_up_locked() has to be called after changing any variable that could
729 * change the result of the wait condition.
730 *
731 * The function will return -ERESTARTSYS if it was interrupted by a
732 * signal and 0 if @condition evaluated to true.
733 */
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100734#define wait_event_interruptible_exclusive_locked_irq(wq, condition) \
735 ((condition) \
Linus Torvaldsbd0f9b32017-03-07 15:33:14 -0800736 ? 0 : __wait_event_interruptible_locked(wq, condition, 1, do_wait_intr_irq))
Michal Nazarewicz22c43c82010-05-05 12:53:11 +0200737
738
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100739#define __wait_event_killable(wq, condition) \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200740 ___wait_event(wq, condition, TASK_KILLABLE, 0, 0, schedule())
Matthew Wilcox1411d5a2007-12-06 12:00:00 -0500741
742/**
743 * wait_event_killable - sleep until a condition gets true
Jonathan Corbet6c423f52017-07-24 13:58:00 -0600744 * @wq_head: the waitqueue to wait on
Matthew Wilcox1411d5a2007-12-06 12:00:00 -0500745 * @condition: a C expression for the event to wait for
746 *
747 * The process is put to sleep (TASK_KILLABLE) until the
748 * @condition evaluates to true or a signal is received.
Jonathan Corbet6c423f52017-07-24 13:58:00 -0600749 * The @condition is checked each time the waitqueue @wq_head is woken up.
Matthew Wilcox1411d5a2007-12-06 12:00:00 -0500750 *
751 * wake_up() has to be called after changing any variable that could
752 * change the result of the wait condition.
753 *
754 * The function will return -ERESTARTSYS if it was interrupted by a
755 * signal and 0 if @condition evaluated to true.
756 */
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100757#define wait_event_killable(wq_head, condition) \
758({ \
759 int __ret = 0; \
760 might_sleep(); \
761 if (!(condition)) \
762 __ret = __wait_event_killable(wq_head, condition); \
763 __ret; \
Matthew Wilcox1411d5a2007-12-06 12:00:00 -0500764})
765
Luis R. Rodriguez8ada9272017-08-18 15:15:55 -0700766#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))
770
771/**
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
776 *
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.
780 *
781 * wake_up() has to be called after changing any variable that could
782 * change the result of the wait condition.
783 *
784 * Returns:
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.
790 *
791 * Only kill signals interrupt this process.
792 */
793#define wait_event_killable_timeout(wq_head, condition, timeout) \
794({ \
795 long __ret = timeout; \
796 might_sleep(); \
797 if (!___wait_cond_timeout(condition)) \
798 __ret = __wait_event_killable_timeout(wq_head, \
799 condition, timeout); \
800 __ret; \
801})
802
Lukas Czernereed8c022012-11-30 11:42:40 +0100803
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100804#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); \
807 cmd; \
808 schedule(); \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200809 spin_lock_irq(&lock))
Lukas Czernereed8c022012-11-30 11:42:40 +0100810
811/**
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
815 * taken.
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100816 * @wq_head: the waitqueue to wait on
Lukas Czernereed8c022012-11-30 11:42:40 +0100817 * @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
821 * sleep
822 *
823 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
824 * @condition evaluates to true. The @condition is checked each time
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100825 * the waitqueue @wq_head is woken up.
Lukas Czernereed8c022012-11-30 11:42:40 +0100826 *
827 * wake_up() has to be called after changing any variable that could
828 * change the result of the wait condition.
829 *
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
832 * afterwards.
833 */
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100834#define wait_event_lock_irq_cmd(wq_head, condition, lock, cmd) \
835do { \
836 if (condition) \
837 break; \
838 __wait_event_lock_irq(wq_head, condition, lock, cmd); \
Lukas Czernereed8c022012-11-30 11:42:40 +0100839} while (0)
840
841/**
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
845 * taken.
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100846 * @wq_head: the waitqueue to wait on
Lukas Czernereed8c022012-11-30 11:42:40 +0100847 * @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.
850 *
851 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
852 * @condition evaluates to true. The @condition is checked each time
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100853 * the waitqueue @wq_head is woken up.
Lukas Czernereed8c022012-11-30 11:42:40 +0100854 *
855 * wake_up() has to be called after changing any variable that could
856 * change the result of the wait condition.
857 *
858 * This is supposed to be called while holding the lock. The lock is
859 * dropped before going to sleep and is reacquired afterwards.
860 */
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100861#define wait_event_lock_irq(wq_head, condition, lock) \
862do { \
863 if (condition) \
864 break; \
865 __wait_event_lock_irq(wq_head, condition, lock, ); \
Lukas Czernereed8c022012-11-30 11:42:40 +0100866} while (0)
867
868
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100869#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); \
872 cmd; \
873 schedule(); \
Peter Zijlstra8fbd88f2013-10-02 11:22:28 +0200874 spin_lock_irq(&lock))
Lukas Czernereed8c022012-11-30 11:42:40 +0100875
876/**
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.
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100880 * @wq_head: the waitqueue to wait on
Lukas Czernereed8c022012-11-30 11:42:40 +0100881 * @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
885 * sleep
886 *
887 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
888 * @condition evaluates to true or a signal is received. The @condition is
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100889 * checked each time the waitqueue @wq_head is woken up.
Lukas Czernereed8c022012-11-30 11:42:40 +0100890 *
891 * wake_up() has to be called after changing any variable that could
892 * change the result of the wait condition.
893 *
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
896 * afterwards.
897 *
898 * The macro will return -ERESTARTSYS if it was interrupted by a signal
899 * and 0 if @condition evaluated to true.
900 */
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100901#define wait_event_interruptible_lock_irq_cmd(wq_head, condition, lock, cmd) \
902({ \
903 int __ret = 0; \
904 if (!(condition)) \
905 __ret = __wait_event_interruptible_lock_irq(wq_head, \
906 condition, lock, cmd); \
907 __ret; \
Lukas Czernereed8c022012-11-30 11:42:40 +0100908})
909
910/**
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.
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100914 * @wq_head: the waitqueue to wait on
Lukas Czernereed8c022012-11-30 11:42:40 +0100915 * @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.
918 *
919 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
920 * @condition evaluates to true or signal is received. The @condition is
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100921 * checked each time the waitqueue @wq_head is woken up.
Lukas Czernereed8c022012-11-30 11:42:40 +0100922 *
923 * wake_up() has to be called after changing any variable that could
924 * change the result of the wait condition.
925 *
926 * This is supposed to be called while holding the lock. The lock is
927 * dropped before going to sleep and is reacquired afterwards.
928 *
929 * The macro will return -ERESTARTSYS if it was interrupted by a signal
930 * and 0 if @condition evaluated to true.
931 */
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100932#define wait_event_interruptible_lock_irq(wq_head, condition, lock) \
933({ \
934 int __ret = 0; \
935 if (!(condition)) \
936 __ret = __wait_event_interruptible_lock_irq(wq_head, \
937 condition, lock,); \
938 __ret; \
Lukas Czernereed8c022012-11-30 11:42:40 +0100939})
940
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100941#define __wait_event_interruptible_lock_irq_timeout(wq_head, condition, \
942 lock, timeout) \
943 ___wait_event(wq_head, ___wait_cond_timeout(condition), \
944 TASK_INTERRUPTIBLE, 0, timeout, \
945 spin_unlock_irq(&lock); \
946 __ret = schedule_timeout(__ret); \
Peter Zijlstraa1dc6852013-10-02 11:22:29 +0200947 spin_lock_irq(&lock));
Martin Peschked79ff142013-08-22 17:45:36 +0200948
949/**
Ingo Molnarfb869b62013-10-04 10:24:49 +0200950 * 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.
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100953 * @wq_head: the waitqueue to wait on
Martin Peschked79ff142013-08-22 17:45:36 +0200954 * @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
958 *
959 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
960 * @condition evaluates to true or signal is received. The @condition is
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100961 * checked each time the waitqueue @wq_head is woken up.
Martin Peschked79ff142013-08-22 17:45:36 +0200962 *
963 * wake_up() has to be called after changing any variable that could
964 * change the result of the wait condition.
965 *
966 * This is supposed to be called while holding the lock. The lock is
967 * dropped before going to sleep and is reacquired afterwards.
968 *
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.
972 */
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100973#define wait_event_interruptible_lock_irq_timeout(wq_head, condition, lock, \
974 timeout) \
975({ \
976 long __ret = timeout; \
977 if (!___wait_cond_timeout(condition)) \
978 __ret = __wait_event_interruptible_lock_irq_timeout( \
979 wq_head, condition, lock, timeout); \
980 __ret; \
Martin Peschked79ff142013-08-22 17:45:36 +0200981})
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983/*
984 * Waitqueues which are removed from the waitqueue_head at wakeup time
985 */
Ingo Molnar9d9d6762017-03-05 11:10:18 +0100986void prepare_to_wait(struct wait_queue_head *wq_head, struct wait_queue_entry *wq_entry, int state);
987void prepare_to_wait_exclusive(struct wait_queue_head *wq_head, struct wait_queue_entry *wq_entry, int state);
988long prepare_to_wait_event(struct wait_queue_head *wq_head, struct wait_queue_entry *wq_entry, int state);
989void finish_wait(struct wait_queue_head *wq_head, struct wait_queue_entry *wq_entry);
Ingo Molnar50816c42017-03-05 10:33:16 +0100990long wait_woken(struct wait_queue_entry *wq_entry, unsigned mode, long timeout);
991int woken_wake_function(struct wait_queue_entry *wq_entry, unsigned mode, int sync, void *key);
992int autoremove_wake_function(struct wait_queue_entry *wq_entry, unsigned mode, int sync, void *key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Ingo Molnar4b1c4802017-03-05 12:07:33 +0100994#define DEFINE_WAIT_FUNC(name, function) \
995 struct wait_queue_entry name = { \
996 .private = current, \
997 .func = function, \
Ingo Molnar2055da92017-06-20 12:06:46 +0200998 .entry = LIST_HEAD_INIT((name).entry), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 }
1000
Eric Dumazetbf368e42009-04-28 02:24:21 -07001001#define DEFINE_WAIT(name) DEFINE_WAIT_FUNC(name, autoremove_wake_function)
1002
Ingo Molnar4b1c4802017-03-05 12:07:33 +01001003#define init_wait(wait) \
1004 do { \
1005 (wait)->private = current; \
1006 (wait)->func = autoremove_wake_function; \
Ingo Molnar2055da92017-06-20 12:06:46 +02001007 INIT_LIST_HEAD(&(wait)->entry); \
Ingo Molnar4b1c4802017-03-05 12:07:33 +01001008 (wait)->flags = 0; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 } while (0)
1010
Ingo Molnarfb869b62013-10-04 10:24:49 +02001011#endif /* _LINUX_WAIT_H */