blob: 2408e8d5c05ccbfc50713416f0473a478fa26bc4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_WAIT_H
2#define _LINUX_WAIT_H
Ingo Molnarfb869b62013-10-04 10:24:49 +02003/*
4 * Linux wait queue related types and methods
5 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/list.h>
7#include <linux/stddef.h>
8#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <asm/current.h>
David Howells607ca462012-10-13 10:46:48 +010010#include <uapi/linux/wait.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12typedef struct __wait_queue wait_queue_t;
Peter Zijlstra7d478722009-09-14 19:55:44 +020013typedef int (*wait_queue_func_t)(wait_queue_t *wait, unsigned mode, int flags, void *key);
14int default_wake_function(wait_queue_t *wait, unsigned mode, int flags, void *key);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Peter Zijlstra61ada522014-09-24 10:18:47 +020016/* __wait_queue::flags */
17#define WQ_FLAG_EXCLUSIVE 0x01
18#define WQ_FLAG_WOKEN 0x02
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020struct __wait_queue {
Ingo Molnarfb869b62013-10-04 10:24:49 +020021 unsigned int flags;
Ingo Molnarfb869b62013-10-04 10:24:49 +020022 void *private;
23 wait_queue_func_t func;
24 struct list_head task_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025};
26
27struct wait_bit_key {
Ingo Molnarfb869b62013-10-04 10:24:49 +020028 void *flags;
29 int bit_nr;
30#define WAIT_ATOMIC_T_BIT_NR -1
NeilBrowncbbce822014-09-25 13:55:19 +100031 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032};
33
34struct wait_bit_queue {
Ingo Molnarfb869b62013-10-04 10:24:49 +020035 struct wait_bit_key key;
36 wait_queue_t wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037};
38
39struct __wait_queue_head {
Ingo Molnarfb869b62013-10-04 10:24:49 +020040 spinlock_t lock;
41 struct list_head task_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042};
43typedef struct __wait_queue_head wait_queue_head_t;
44
Tim Schmielau8c65b4a2005-11-07 00:59:43 -080045struct task_struct;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/*
48 * Macros for declaration and initialisaton of the datatypes
49 */
50
51#define __WAITQUEUE_INITIALIZER(name, tsk) { \
Benjamin LaHaisec43dc2f2005-06-23 00:10:27 -070052 .private = tsk, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 .func = default_wake_function, \
54 .task_list = { NULL, NULL } }
55
56#define DECLARE_WAITQUEUE(name, tsk) \
57 wait_queue_t name = __WAITQUEUE_INITIALIZER(name, tsk)
58
59#define __WAIT_QUEUE_HEAD_INITIALIZER(name) { \
Ingo Molnare4d91912006-07-03 00:24:34 -070060 .lock = __SPIN_LOCK_UNLOCKED(name.lock), \
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 .task_list = { &(name).task_list, &(name).task_list } }
62
63#define DECLARE_WAIT_QUEUE_HEAD(name) \
64 wait_queue_head_t name = __WAIT_QUEUE_HEAD_INITIALIZER(name)
65
66#define __WAIT_BIT_KEY_INITIALIZER(word, bit) \
67 { .flags = word, .bit_nr = bit, }
68
David Howellscb655372013-05-10 19:50:26 +010069#define __WAIT_ATOMIC_T_KEY_INITIALIZER(p) \
70 { .flags = p, .bit_nr = WAIT_ATOMIC_T_BIT_NR, }
71
Peter Zijlstraf07fdec2011-12-13 13:20:54 +010072extern void __init_waitqueue_head(wait_queue_head_t *q, const char *name, struct lock_class_key *);
Peter Zijlstra2fc39112009-08-10 12:33:05 +010073
74#define init_waitqueue_head(q) \
75 do { \
76 static struct lock_class_key __key; \
77 \
Peter Zijlstraf07fdec2011-12-13 13:20:54 +010078 __init_waitqueue_head((q), #q, &__key); \
Peter Zijlstra2fc39112009-08-10 12:33:05 +010079 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Peter Zijlstra7259f0d2006-10-29 22:46:36 -080081#ifdef CONFIG_LOCKDEP
82# define __WAIT_QUEUE_HEAD_INIT_ONSTACK(name) \
83 ({ init_waitqueue_head(&name); name; })
84# define DECLARE_WAIT_QUEUE_HEAD_ONSTACK(name) \
85 wait_queue_head_t name = __WAIT_QUEUE_HEAD_INIT_ONSTACK(name)
86#else
87# define DECLARE_WAIT_QUEUE_HEAD_ONSTACK(name) DECLARE_WAIT_QUEUE_HEAD(name)
88#endif
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static inline void init_waitqueue_entry(wait_queue_t *q, struct task_struct *p)
91{
Ingo Molnarfb869b62013-10-04 10:24:49 +020092 q->flags = 0;
93 q->private = p;
94 q->func = default_wake_function;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
Ingo Molnarfb869b62013-10-04 10:24:49 +020097static inline void
98init_waitqueue_func_entry(wait_queue_t *q, wait_queue_func_t func)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Ingo Molnarfb869b62013-10-04 10:24:49 +0200100 q->flags = 0;
101 q->private = NULL;
102 q->func = func;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
104
Peter Zijlstra69e51e922015-10-23 14:32:34 +0200105/**
106 * waitqueue_active -- locklessly test for waiters on the queue
107 * @q: the waitqueue to test for waiters
108 *
109 * returns true if the wait list is not empty
110 *
111 * NOTE: this function is lockless and requires care, incorrect usage _will_
112 * lead to sporadic and non-obvious failure.
113 *
114 * Use either while holding wait_queue_head_t::lock or when used for wakeups
115 * with an extra smp_mb() like:
116 *
117 * CPU0 - waker CPU1 - waiter
118 *
119 * for (;;) {
120 * @cond = true; prepare_to_wait(&wq, &wait, state);
121 * smp_mb(); // smp_mb() from set_current_state()
122 * if (waitqueue_active(wq)) if (@cond)
123 * wake_up(wq); break;
124 * schedule();
125 * }
126 * finish_wait(&wq, &wait);
127 *
128 * Because without the explicit smp_mb() it's possible for the
129 * waitqueue_active() load to get hoisted over the @cond store such that we'll
130 * observe an empty wait list while the waiter might not observe @cond.
131 *
132 * Also note that this 'optimization' trades a spin_lock() for an smp_mb(),
133 * which (when the lock is uncontended) are of roughly equal cost.
134 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135static inline int waitqueue_active(wait_queue_head_t *q)
136{
137 return !list_empty(&q->task_list);
138}
139
Herbert Xu1ce0bf52015-11-26 13:55:39 +0800140/**
141 * wq_has_sleeper - check if there are any waiting processes
142 * @wq: wait queue head
143 *
144 * Returns true if wq has waiting processes
145 *
146 * Please refer to the comment for waitqueue_active.
147 */
148static inline bool wq_has_sleeper(wait_queue_head_t *wq)
149{
150 /*
151 * We need to be sure we are in sync with the
152 * add_wait_queue modifications to the wait queue.
153 *
154 * This memory barrier should be paired with one on the
155 * waiting side.
156 */
157 smp_mb();
158 return waitqueue_active(wq);
159}
160
Harvey Harrisonb3c97522008-02-13 15:03:15 -0800161extern void add_wait_queue(wait_queue_head_t *q, wait_queue_t *wait);
162extern void add_wait_queue_exclusive(wait_queue_head_t *q, wait_queue_t *wait);
163extern void remove_wait_queue(wait_queue_head_t *q, wait_queue_t *wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165static inline void __add_wait_queue(wait_queue_head_t *head, wait_queue_t *new)
166{
167 list_add(&new->task_list, &head->task_list);
168}
169
170/*
171 * Used for wake-one threads:
172 */
Ingo Molnarfb869b62013-10-04 10:24:49 +0200173static inline void
174__add_wait_queue_exclusive(wait_queue_head_t *q, wait_queue_t *wait)
Changli Gaoa93d2f12010-05-07 14:33:26 +0800175{
176 wait->flags |= WQ_FLAG_EXCLUSIVE;
177 __add_wait_queue(q, wait);
178}
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180static inline void __add_wait_queue_tail(wait_queue_head_t *head,
Changli Gaoa93d2f12010-05-07 14:33:26 +0800181 wait_queue_t *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
183 list_add_tail(&new->task_list, &head->task_list);
184}
185
Ingo Molnarfb869b62013-10-04 10:24:49 +0200186static inline void
187__add_wait_queue_tail_exclusive(wait_queue_head_t *q, wait_queue_t *wait)
Changli Gaoa93d2f12010-05-07 14:33:26 +0800188{
189 wait->flags |= WQ_FLAG_EXCLUSIVE;
190 __add_wait_queue_tail(q, wait);
191}
192
Ingo Molnarfb869b62013-10-04 10:24:49 +0200193static inline void
194__remove_wait_queue(wait_queue_head_t *head, wait_queue_t *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
196 list_del(&old->task_list);
197}
198
Peter Zijlstradfd01f02015-12-13 22:11:16 +0100199typedef int wait_bit_action_f(struct wait_bit_key *, int mode);
Harvey Harrisonb3c97522008-02-13 15:03:15 -0800200void __wake_up(wait_queue_head_t *q, unsigned int mode, int nr, void *key);
Andrea Arcangeliac5be6b2015-09-22 14:58:49 -0700201void __wake_up_locked_key(wait_queue_head_t *q, unsigned int mode, void *key);
Ingo Molnarfb869b62013-10-04 10:24:49 +0200202void __wake_up_sync_key(wait_queue_head_t *q, unsigned int mode, int nr, void *key);
Thomas Gleixner63b20012011-12-01 00:04:00 +0100203void __wake_up_locked(wait_queue_head_t *q, unsigned int mode, int nr);
Davide Libenzi4ede8162009-03-31 15:24:20 -0700204void __wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr);
Harvey Harrisonb3c97522008-02-13 15:03:15 -0800205void __wake_up_bit(wait_queue_head_t *, void *, int);
NeilBrownc1221322014-07-07 15:16:04 +1000206int __wait_on_bit(wait_queue_head_t *, struct wait_bit_queue *, wait_bit_action_f *, unsigned);
207int __wait_on_bit_lock(wait_queue_head_t *, struct wait_bit_queue *, wait_bit_action_f *, unsigned);
Harvey Harrisonb3c97522008-02-13 15:03:15 -0800208void wake_up_bit(void *, int);
David Howellscb655372013-05-10 19:50:26 +0100209void wake_up_atomic_t(atomic_t *);
NeilBrownc1221322014-07-07 15:16:04 +1000210int out_of_line_wait_on_bit(void *, int, wait_bit_action_f *, unsigned);
NeilBrowncbbce822014-09-25 13:55:19 +1000211int out_of_line_wait_on_bit_timeout(void *, int, wait_bit_action_f *, unsigned, unsigned long);
NeilBrownc1221322014-07-07 15:16:04 +1000212int out_of_line_wait_on_bit_lock(void *, int, wait_bit_action_f *, unsigned);
David Howellscb655372013-05-10 19:50:26 +0100213int out_of_line_wait_on_atomic_t(atomic_t *, int (*)(atomic_t *), unsigned);
Harvey Harrisonb3c97522008-02-13 15:03:15 -0800214wait_queue_head_t *bit_waitqueue(void *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Matthew Wilcoxe64d66c2007-12-06 17:34:36 -0500216#define wake_up(x) __wake_up(x, TASK_NORMAL, 1, NULL)
217#define wake_up_nr(x, nr) __wake_up(x, TASK_NORMAL, nr, NULL)
218#define wake_up_all(x) __wake_up(x, TASK_NORMAL, 0, NULL)
Thomas Gleixner63b20012011-12-01 00:04:00 +0100219#define wake_up_locked(x) __wake_up_locked((x), TASK_NORMAL, 1)
220#define wake_up_all_locked(x) __wake_up_locked((x), TASK_NORMAL, 0)
Matthew Wilcoxe64d66c2007-12-06 17:34:36 -0500221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222#define wake_up_interruptible(x) __wake_up(x, TASK_INTERRUPTIBLE, 1, NULL)
223#define wake_up_interruptible_nr(x, nr) __wake_up(x, TASK_INTERRUPTIBLE, nr, NULL)
224#define wake_up_interruptible_all(x) __wake_up(x, TASK_INTERRUPTIBLE, 0, NULL)
Matthew Wilcoxe64d66c2007-12-06 17:34:36 -0500225#define wake_up_interruptible_sync(x) __wake_up_sync((x), TASK_INTERRUPTIBLE, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Peter Zijlstra0ccf8312008-02-04 22:27:20 -0800227/*
Davide Libenzic0da3772009-03-31 15:24:20 -0700228 * Wakeup macros to be used to report events to the targets.
Peter Zijlstra0ccf8312008-02-04 22:27:20 -0800229 */
Ingo Molnarfb869b62013-10-04 10:24:49 +0200230#define wake_up_poll(x, m) \
Davide Libenzic0da3772009-03-31 15:24:20 -0700231 __wake_up(x, TASK_NORMAL, 1, (void *) (m))
Ingo Molnarfb869b62013-10-04 10:24:49 +0200232#define wake_up_locked_poll(x, m) \
Andrea Arcangeliac5be6b2015-09-22 14:58:49 -0700233 __wake_up_locked_key((x), TASK_NORMAL, (void *) (m))
Ingo Molnarfb869b62013-10-04 10:24:49 +0200234#define wake_up_interruptible_poll(x, m) \
Davide Libenzic0da3772009-03-31 15:24:20 -0700235 __wake_up(x, TASK_INTERRUPTIBLE, 1, (void *) (m))
236#define wake_up_interruptible_sync_poll(x, m) \
237 __wake_up_sync_key((x), TASK_INTERRUPTIBLE, 1, (void *) (m))
Peter Zijlstra0ccf8312008-02-04 22:27:20 -0800238
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200239#define ___wait_cond_timeout(condition) \
Peter Zijlstra2953ef22013-10-02 11:22:19 +0200240({ \
Ingo Molnarfb869b62013-10-04 10:24:49 +0200241 bool __cond = (condition); \
242 if (__cond && !__ret) \
243 __ret = 1; \
244 __cond || !__ret; \
Peter Zijlstra2953ef22013-10-02 11:22:19 +0200245})
246
Oleg Nesterovc2d81642013-10-07 18:18:24 +0200247#define ___wait_is_interruptible(state) \
248 (!__builtin_constant_p(state) || \
249 state == TASK_INTERRUPTIBLE || state == TASK_KILLABLE) \
Peter Zijlstra41a14312013-10-02 11:22:21 +0200250
Oleg Nesterov0176bea2016-09-06 16:00:55 +0200251extern void init_wait_entry(wait_queue_t *__wait, int flags);
252
Peter Zijlstra8b322012014-04-18 15:07:17 -0700253/*
254 * The below macro ___wait_event() has an explicit shadow of the __ret
255 * variable when used from the wait_event_*() macros.
256 *
257 * This is so that both can use the ___wait_cond_timeout() construct
258 * to wrap the condition.
259 *
260 * The type inconsistency of the wait_event_*() __ret variable is also
261 * on purpose; we use long where we can return timeout values and int
262 * otherwise.
263 */
264
Peter Zijlstra41a14312013-10-02 11:22:21 +0200265#define ___wait_event(wq, condition, state, exclusive, ret, cmd) \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200266({ \
Peter Zijlstra41a14312013-10-02 11:22:21 +0200267 __label__ __out; \
Oleg Nesterovc2d81642013-10-07 18:18:24 +0200268 wait_queue_t __wait; \
Peter Zijlstra8b322012014-04-18 15:07:17 -0700269 long __ret = ret; /* explicit shadow */ \
Peter Zijlstra41a14312013-10-02 11:22:21 +0200270 \
Oleg Nesterov0176bea2016-09-06 16:00:55 +0200271 init_wait_entry(&__wait, exclusive ? WQ_FLAG_EXCLUSIVE : 0); \
Peter Zijlstra41a14312013-10-02 11:22:21 +0200272 for (;;) { \
Oleg Nesterovc2d81642013-10-07 18:18:24 +0200273 long __int = prepare_to_wait_event(&wq, &__wait, state);\
Peter Zijlstra41a14312013-10-02 11:22:21 +0200274 \
275 if (condition) \
276 break; \
277 \
Oleg Nesterovc2d81642013-10-07 18:18:24 +0200278 if (___wait_is_interruptible(state) && __int) { \
279 __ret = __int; \
Oleg Nesterovb1ea06a2016-09-08 18:48:15 +0200280 goto __out; \
Peter Zijlstra41a14312013-10-02 11:22:21 +0200281 } \
282 \
283 cmd; \
284 } \
285 finish_wait(&wq, &__wait); \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200286__out: __ret; \
287})
Peter Zijlstra41a14312013-10-02 11:22:21 +0200288
Ingo Molnarfb869b62013-10-04 10:24:49 +0200289#define __wait_event(wq, condition) \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200290 (void)___wait_event(wq, condition, TASK_UNINTERRUPTIBLE, 0, 0, \
291 schedule())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293/**
294 * wait_event - sleep until a condition gets true
295 * @wq: the waitqueue to wait on
296 * @condition: a C expression for the event to wait for
297 *
298 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
299 * @condition evaluates to true. The @condition is checked each time
300 * the waitqueue @wq is woken up.
301 *
302 * wake_up() has to be called after changing any variable that could
303 * change the result of the wait condition.
304 */
Ingo Molnarfb869b62013-10-04 10:24:49 +0200305#define wait_event(wq, condition) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306do { \
Peter Zijlstrae22b8862014-09-24 10:18:48 +0200307 might_sleep(); \
Ingo Molnarfb869b62013-10-04 10:24:49 +0200308 if (condition) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 break; \
310 __wait_event(wq, condition); \
311} while (0)
312
Peter Zijlstra2c561242015-02-03 12:55:31 +0100313#define __io_wait_event(wq, condition) \
314 (void)___wait_event(wq, condition, TASK_UNINTERRUPTIBLE, 0, 0, \
315 io_schedule())
316
317/*
318 * io_wait_event() -- like wait_event() but with io_schedule()
319 */
320#define io_wait_event(wq, condition) \
321do { \
322 might_sleep(); \
323 if (condition) \
324 break; \
325 __io_wait_event(wq, condition); \
326} while (0)
327
Peter Zijlstra36df04b2014-10-29 12:21:57 +0100328#define __wait_event_freezable(wq, condition) \
329 ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 0, 0, \
330 schedule(); try_to_freeze())
331
332/**
Stafford Hornef4bcfa12016-02-23 22:39:28 +0900333 * wait_event_freezable - sleep (or freeze) until a condition gets true
Peter Zijlstra36df04b2014-10-29 12:21:57 +0100334 * @wq: the waitqueue to wait on
335 * @condition: a C expression for the event to wait for
336 *
337 * The process is put to sleep (TASK_INTERRUPTIBLE -- so as not to contribute
338 * to system load) until the @condition evaluates to true. The
339 * @condition is checked each time the waitqueue @wq is woken up.
340 *
341 * wake_up() has to be called after changing any variable that could
342 * change the result of the wait condition.
343 */
344#define wait_event_freezable(wq, condition) \
345({ \
346 int __ret = 0; \
347 might_sleep(); \
348 if (!(condition)) \
349 __ret = __wait_event_freezable(wq, condition); \
350 __ret; \
351})
352
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200353#define __wait_event_timeout(wq, condition, timeout) \
354 ___wait_event(wq, ___wait_cond_timeout(condition), \
355 TASK_UNINTERRUPTIBLE, 0, timeout, \
356 __ret = schedule_timeout(__ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358/**
359 * wait_event_timeout - sleep until a condition gets true or a timeout elapses
360 * @wq: the waitqueue to wait on
361 * @condition: a C expression for the event to wait for
362 * @timeout: timeout, in jiffies
363 *
364 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
365 * @condition evaluates to true. The @condition is checked each time
366 * the waitqueue @wq is woken up.
367 *
368 * wake_up() has to be called after changing any variable that could
369 * change the result of the wait condition.
370 *
Scot Doyle6b44f512014-08-24 17:12:27 +0000371 * Returns:
372 * 0 if the @condition evaluated to %false after the @timeout elapsed,
373 * 1 if the @condition evaluated to %true after the @timeout elapsed,
374 * or the remaining jiffies (at least 1) if the @condition evaluated
375 * to %true before the @timeout elapsed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 */
377#define wait_event_timeout(wq, condition, timeout) \
378({ \
379 long __ret = timeout; \
Peter Zijlstrae22b8862014-09-24 10:18:48 +0200380 might_sleep(); \
Oleg Nesterov89229152013-10-07 20:31:06 +0200381 if (!___wait_cond_timeout(condition)) \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200382 __ret = __wait_event_timeout(wq, condition, timeout); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 __ret; \
384})
385
Peter Zijlstra36df04b2014-10-29 12:21:57 +0100386#define __wait_event_freezable_timeout(wq, condition, timeout) \
387 ___wait_event(wq, ___wait_cond_timeout(condition), \
388 TASK_INTERRUPTIBLE, 0, timeout, \
389 __ret = schedule_timeout(__ret); try_to_freeze())
390
391/*
392 * like wait_event_timeout() -- except it uses TASK_INTERRUPTIBLE to avoid
393 * increasing load and is freezable.
394 */
395#define wait_event_freezable_timeout(wq, condition, timeout) \
396({ \
397 long __ret = timeout; \
398 might_sleep(); \
399 if (!___wait_cond_timeout(condition)) \
400 __ret = __wait_event_freezable_timeout(wq, condition, timeout); \
401 __ret; \
402})
403
Yuanhan Liu9f3520c2015-05-08 18:19:05 +1000404#define __wait_event_exclusive_cmd(wq, condition, cmd1, cmd2) \
405 (void)___wait_event(wq, condition, TASK_UNINTERRUPTIBLE, 1, 0, \
406 cmd1; schedule(); cmd2)
407/*
408 * Just like wait_event_cmd(), except it sets exclusive flag
409 */
410#define wait_event_exclusive_cmd(wq, condition, cmd1, cmd2) \
411do { \
412 if (condition) \
413 break; \
414 __wait_event_exclusive_cmd(wq, condition, cmd1, cmd2); \
415} while (0)
416
Shaohua Li82e06c82013-11-14 15:16:16 +1100417#define __wait_event_cmd(wq, condition, cmd1, cmd2) \
418 (void)___wait_event(wq, condition, TASK_UNINTERRUPTIBLE, 0, 0, \
419 cmd1; schedule(); cmd2)
420
421/**
422 * wait_event_cmd - sleep until a condition gets true
423 * @wq: the waitqueue to wait on
424 * @condition: a C expression for the event to wait for
Masanari Iidaf434f7a2014-01-22 01:22:06 +0900425 * @cmd1: the command will be executed before sleep
426 * @cmd2: the command will be executed after sleep
Shaohua Li82e06c82013-11-14 15:16:16 +1100427 *
428 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
429 * @condition evaluates to true. The @condition is checked each time
430 * the waitqueue @wq is woken up.
431 *
432 * wake_up() has to be called after changing any variable that could
433 * change the result of the wait condition.
434 */
435#define wait_event_cmd(wq, condition, cmd1, cmd2) \
436do { \
437 if (condition) \
438 break; \
439 __wait_event_cmd(wq, condition, cmd1, cmd2); \
440} while (0)
441
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200442#define __wait_event_interruptible(wq, condition) \
443 ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 0, 0, \
Peter Zijlstraf13f4c42013-10-02 11:22:24 +0200444 schedule())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446/**
447 * wait_event_interruptible - sleep until a condition gets true
448 * @wq: the waitqueue to wait on
449 * @condition: a C expression for the event to wait for
450 *
451 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
452 * @condition evaluates to true or a signal is received.
453 * The @condition is checked each time the waitqueue @wq is woken up.
454 *
455 * wake_up() has to be called after changing any variable that could
456 * change the result of the wait condition.
457 *
458 * The function will return -ERESTARTSYS if it was interrupted by a
459 * signal and 0 if @condition evaluated to true.
460 */
461#define wait_event_interruptible(wq, condition) \
462({ \
463 int __ret = 0; \
Peter Zijlstrae22b8862014-09-24 10:18:48 +0200464 might_sleep(); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (!(condition)) \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200466 __ret = __wait_event_interruptible(wq, condition); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 __ret; \
468})
469
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200470#define __wait_event_interruptible_timeout(wq, condition, timeout) \
471 ___wait_event(wq, ___wait_cond_timeout(condition), \
472 TASK_INTERRUPTIBLE, 0, timeout, \
473 __ret = schedule_timeout(__ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475/**
476 * wait_event_interruptible_timeout - sleep until a condition gets true or a timeout elapses
477 * @wq: the waitqueue to wait on
478 * @condition: a C expression for the event to wait for
479 * @timeout: timeout, in jiffies
480 *
481 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
482 * @condition evaluates to true or a signal is received.
483 * The @condition is checked each time the waitqueue @wq is woken up.
484 *
485 * wake_up() has to be called after changing any variable that could
486 * change the result of the wait condition.
487 *
Imre Deak4c663cf2013-05-24 15:55:09 -0700488 * Returns:
Scot Doyle6b44f512014-08-24 17:12:27 +0000489 * 0 if the @condition evaluated to %false after the @timeout elapsed,
490 * 1 if the @condition evaluated to %true after the @timeout elapsed,
491 * the remaining jiffies (at least 1) if the @condition evaluated
492 * to %true before the @timeout elapsed, or -%ERESTARTSYS if it was
493 * interrupted by a signal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 */
495#define wait_event_interruptible_timeout(wq, condition, timeout) \
496({ \
497 long __ret = timeout; \
Peter Zijlstrae22b8862014-09-24 10:18:48 +0200498 might_sleep(); \
Oleg Nesterov89229152013-10-07 20:31:06 +0200499 if (!___wait_cond_timeout(condition)) \
Ingo Molnarfb869b62013-10-04 10:24:49 +0200500 __ret = __wait_event_interruptible_timeout(wq, \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200501 condition, timeout); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 __ret; \
503})
504
Kent Overstreet774a08b2013-05-07 16:18:43 -0700505#define __wait_event_hrtimeout(wq, condition, timeout, state) \
506({ \
507 int __ret = 0; \
Kent Overstreet774a08b2013-05-07 16:18:43 -0700508 struct hrtimer_sleeper __t; \
509 \
510 hrtimer_init_on_stack(&__t.timer, CLOCK_MONOTONIC, \
511 HRTIMER_MODE_REL); \
512 hrtimer_init_sleeper(&__t, current); \
513 if ((timeout).tv64 != KTIME_MAX) \
514 hrtimer_start_range_ns(&__t.timer, timeout, \
515 current->timer_slack_ns, \
516 HRTIMER_MODE_REL); \
517 \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200518 __ret = ___wait_event(wq, condition, state, 0, 0, \
Kent Overstreet774a08b2013-05-07 16:18:43 -0700519 if (!__t.task) { \
520 __ret = -ETIME; \
521 break; \
522 } \
Peter Zijlstraebdc1952013-10-02 11:22:32 +0200523 schedule()); \
Kent Overstreet774a08b2013-05-07 16:18:43 -0700524 \
525 hrtimer_cancel(&__t.timer); \
526 destroy_hrtimer_on_stack(&__t.timer); \
Kent Overstreet774a08b2013-05-07 16:18:43 -0700527 __ret; \
528})
529
530/**
531 * wait_event_hrtimeout - sleep until a condition gets true or a timeout elapses
532 * @wq: the waitqueue to wait on
533 * @condition: a C expression for the event to wait for
534 * @timeout: timeout, as a ktime_t
535 *
536 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
537 * @condition evaluates to true or a signal is received.
538 * The @condition is checked each time the waitqueue @wq is woken up.
539 *
540 * wake_up() has to be called after changing any variable that could
541 * change the result of the wait condition.
542 *
543 * The function returns 0 if @condition became true, or -ETIME if the timeout
544 * elapsed.
545 */
546#define wait_event_hrtimeout(wq, condition, timeout) \
547({ \
548 int __ret = 0; \
Peter Zijlstrae22b8862014-09-24 10:18:48 +0200549 might_sleep(); \
Kent Overstreet774a08b2013-05-07 16:18:43 -0700550 if (!(condition)) \
551 __ret = __wait_event_hrtimeout(wq, condition, timeout, \
552 TASK_UNINTERRUPTIBLE); \
553 __ret; \
554})
555
556/**
557 * wait_event_interruptible_hrtimeout - sleep until a condition gets true or a timeout elapses
558 * @wq: the waitqueue to wait on
559 * @condition: a C expression for the event to wait for
560 * @timeout: timeout, as a ktime_t
561 *
562 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
563 * @condition evaluates to true or a signal is received.
564 * The @condition is checked each time the waitqueue @wq is woken up.
565 *
566 * wake_up() has to be called after changing any variable that could
567 * change the result of the wait condition.
568 *
569 * The function returns 0 if @condition became true, -ERESTARTSYS if it was
570 * interrupted by a signal, or -ETIME if the timeout elapsed.
571 */
572#define wait_event_interruptible_hrtimeout(wq, condition, timeout) \
573({ \
574 long __ret = 0; \
Peter Zijlstrae22b8862014-09-24 10:18:48 +0200575 might_sleep(); \
Kent Overstreet774a08b2013-05-07 16:18:43 -0700576 if (!(condition)) \
577 __ret = __wait_event_hrtimeout(wq, condition, timeout, \
578 TASK_INTERRUPTIBLE); \
579 __ret; \
580})
581
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200582#define __wait_event_interruptible_exclusive(wq, condition) \
583 ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 1, 0, \
Peter Zijlstra48c25212013-10-02 11:22:26 +0200584 schedule())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586#define wait_event_interruptible_exclusive(wq, condition) \
587({ \
588 int __ret = 0; \
Peter Zijlstrae22b8862014-09-24 10:18:48 +0200589 might_sleep(); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 if (!(condition)) \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200591 __ret = __wait_event_interruptible_exclusive(wq, condition);\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 __ret; \
593})
594
Al Viro6a0fb302016-07-19 03:04:34 -0400595#define __wait_event_killable_exclusive(wq, condition) \
596 ___wait_event(wq, condition, TASK_KILLABLE, 1, 0, \
597 schedule())
598
599#define wait_event_killable_exclusive(wq, condition) \
600({ \
601 int __ret = 0; \
602 might_sleep(); \
603 if (!(condition)) \
604 __ret = __wait_event_killable_exclusive(wq, condition); \
605 __ret; \
606})
607
Michal Nazarewicz22c43c82010-05-05 12:53:11 +0200608
Peter Zijlstra36df04b2014-10-29 12:21:57 +0100609#define __wait_event_freezable_exclusive(wq, condition) \
610 ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 1, 0, \
611 schedule(); try_to_freeze())
612
613#define wait_event_freezable_exclusive(wq, condition) \
614({ \
615 int __ret = 0; \
616 might_sleep(); \
617 if (!(condition)) \
618 __ret = __wait_event_freezable_exclusive(wq, condition);\
619 __ret; \
620})
621
622
Michal Nazarewicz22c43c82010-05-05 12:53:11 +0200623#define __wait_event_interruptible_locked(wq, condition, exclusive, irq) \
624({ \
625 int __ret = 0; \
626 DEFINE_WAIT(__wait); \
627 if (exclusive) \
628 __wait.flags |= WQ_FLAG_EXCLUSIVE; \
629 do { \
630 if (likely(list_empty(&__wait.task_list))) \
631 __add_wait_queue_tail(&(wq), &__wait); \
632 set_current_state(TASK_INTERRUPTIBLE); \
633 if (signal_pending(current)) { \
634 __ret = -ERESTARTSYS; \
635 break; \
636 } \
637 if (irq) \
638 spin_unlock_irq(&(wq).lock); \
639 else \
640 spin_unlock(&(wq).lock); \
641 schedule(); \
642 if (irq) \
643 spin_lock_irq(&(wq).lock); \
644 else \
645 spin_lock(&(wq).lock); \
646 } while (!(condition)); \
647 __remove_wait_queue(&(wq), &__wait); \
648 __set_current_state(TASK_RUNNING); \
649 __ret; \
650})
651
652
653/**
654 * wait_event_interruptible_locked - sleep until a condition gets true
655 * @wq: the waitqueue to wait on
656 * @condition: a C expression for the event to wait for
657 *
658 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
659 * @condition evaluates to true or a signal is received.
660 * The @condition is checked each time the waitqueue @wq is woken up.
661 *
662 * It must be called with wq.lock being held. This spinlock is
663 * unlocked while sleeping but @condition testing is done while lock
664 * is held and when this macro exits the lock is held.
665 *
666 * The lock is locked/unlocked using spin_lock()/spin_unlock()
667 * functions which must match the way they are locked/unlocked outside
668 * of this macro.
669 *
670 * wake_up_locked() has to be called after changing any variable that could
671 * change the result of the wait condition.
672 *
673 * The function will return -ERESTARTSYS if it was interrupted by a
674 * signal and 0 if @condition evaluated to true.
675 */
676#define wait_event_interruptible_locked(wq, condition) \
677 ((condition) \
678 ? 0 : __wait_event_interruptible_locked(wq, condition, 0, 0))
679
680/**
681 * wait_event_interruptible_locked_irq - sleep until a condition gets true
682 * @wq: the waitqueue to wait on
683 * @condition: a C expression for the event to wait for
684 *
685 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
686 * @condition evaluates to true or a signal is received.
687 * The @condition is checked each time the waitqueue @wq is woken up.
688 *
689 * It must be called with wq.lock being held. This spinlock is
690 * unlocked while sleeping but @condition testing is done while lock
691 * is held and when this macro exits the lock is held.
692 *
693 * The lock is locked/unlocked using spin_lock_irq()/spin_unlock_irq()
694 * functions which must match the way they are locked/unlocked outside
695 * of this macro.
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 */
703#define wait_event_interruptible_locked_irq(wq, condition) \
704 ((condition) \
705 ? 0 : __wait_event_interruptible_locked(wq, condition, 0, 1))
706
707/**
708 * wait_event_interruptible_exclusive_locked - sleep exclusively 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()/spin_unlock()
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 */
734#define wait_event_interruptible_exclusive_locked(wq, condition) \
735 ((condition) \
736 ? 0 : __wait_event_interruptible_locked(wq, condition, 1, 0))
737
738/**
739 * wait_event_interruptible_exclusive_locked_irq - sleep until a condition gets true
740 * @wq: the waitqueue to wait on
741 * @condition: a C expression for the event to wait for
742 *
743 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
744 * @condition evaluates to true or a signal is received.
745 * The @condition is checked each time the waitqueue @wq is woken up.
746 *
747 * It must be called with wq.lock being held. This spinlock is
748 * unlocked while sleeping but @condition testing is done while lock
749 * is held and when this macro exits the lock is held.
750 *
751 * The lock is locked/unlocked using spin_lock_irq()/spin_unlock_irq()
752 * functions which must match the way they are locked/unlocked outside
753 * of this macro.
754 *
755 * The process is put on the wait queue with an WQ_FLAG_EXCLUSIVE flag
756 * set thus when other process waits process on the list if this
757 * process is awaken further processes are not considered.
758 *
759 * wake_up_locked() has to be called after changing any variable that could
760 * change the result of the wait condition.
761 *
762 * The function will return -ERESTARTSYS if it was interrupted by a
763 * signal and 0 if @condition evaluated to true.
764 */
765#define wait_event_interruptible_exclusive_locked_irq(wq, condition) \
766 ((condition) \
767 ? 0 : __wait_event_interruptible_locked(wq, condition, 1, 1))
768
769
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200770#define __wait_event_killable(wq, condition) \
771 ___wait_event(wq, condition, TASK_KILLABLE, 0, 0, schedule())
Matthew Wilcox1411d5a2007-12-06 12:00:00 -0500772
773/**
774 * wait_event_killable - sleep until a condition gets true
775 * @wq: the waitqueue to wait on
776 * @condition: a C expression for the event to wait for
777 *
778 * The process is put to sleep (TASK_KILLABLE) until the
779 * @condition evaluates to true or a signal is received.
780 * The @condition is checked each time the waitqueue @wq is woken up.
781 *
782 * wake_up() has to be called after changing any variable that could
783 * change the result of the wait condition.
784 *
785 * The function will return -ERESTARTSYS if it was interrupted by a
786 * signal and 0 if @condition evaluated to true.
787 */
788#define wait_event_killable(wq, condition) \
789({ \
790 int __ret = 0; \
Peter Zijlstrae22b8862014-09-24 10:18:48 +0200791 might_sleep(); \
Matthew Wilcox1411d5a2007-12-06 12:00:00 -0500792 if (!(condition)) \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200793 __ret = __wait_event_killable(wq, condition); \
Matthew Wilcox1411d5a2007-12-06 12:00:00 -0500794 __ret; \
795})
796
Lukas Czernereed8c022012-11-30 11:42:40 +0100797
798#define __wait_event_lock_irq(wq, condition, lock, cmd) \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200799 (void)___wait_event(wq, condition, TASK_UNINTERRUPTIBLE, 0, 0, \
800 spin_unlock_irq(&lock); \
801 cmd; \
802 schedule(); \
803 spin_lock_irq(&lock))
Lukas Czernereed8c022012-11-30 11:42:40 +0100804
805/**
806 * wait_event_lock_irq_cmd - sleep until a condition gets true. The
807 * condition is checked under the lock. This
808 * is expected to be called with the lock
809 * taken.
810 * @wq: the waitqueue to wait on
811 * @condition: a C expression for the event to wait for
812 * @lock: a locked spinlock_t, which will be released before cmd
813 * and schedule() and reacquired afterwards.
814 * @cmd: a command which is invoked outside the critical section before
815 * sleep
816 *
817 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
818 * @condition evaluates to true. The @condition is checked each time
819 * the waitqueue @wq is woken up.
820 *
821 * wake_up() has to be called after changing any variable that could
822 * change the result of the wait condition.
823 *
824 * This is supposed to be called while holding the lock. The lock is
825 * dropped before invoking the cmd and going to sleep and is reacquired
826 * afterwards.
827 */
828#define wait_event_lock_irq_cmd(wq, condition, lock, cmd) \
829do { \
830 if (condition) \
831 break; \
832 __wait_event_lock_irq(wq, condition, lock, cmd); \
833} while (0)
834
835/**
836 * wait_event_lock_irq - sleep until a condition gets true. The
837 * condition is checked under the lock. This
838 * is expected to be called with the lock
839 * taken.
840 * @wq: the waitqueue to wait on
841 * @condition: a C expression for the event to wait for
842 * @lock: a locked spinlock_t, which will be released before schedule()
843 * and reacquired afterwards.
844 *
845 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
846 * @condition evaluates to true. The @condition is checked each time
847 * the waitqueue @wq is woken up.
848 *
849 * wake_up() has to be called after changing any variable that could
850 * change the result of the wait condition.
851 *
852 * This is supposed to be called while holding the lock. The lock is
853 * dropped before going to sleep and is reacquired afterwards.
854 */
855#define wait_event_lock_irq(wq, condition, lock) \
856do { \
857 if (condition) \
858 break; \
859 __wait_event_lock_irq(wq, condition, lock, ); \
860} while (0)
861
862
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200863#define __wait_event_interruptible_lock_irq(wq, condition, lock, cmd) \
Ingo Molnarfb869b62013-10-04 10:24:49 +0200864 ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 0, 0, \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200865 spin_unlock_irq(&lock); \
866 cmd; \
867 schedule(); \
Peter Zijlstra8fbd88f2013-10-02 11:22:28 +0200868 spin_lock_irq(&lock))
Lukas Czernereed8c022012-11-30 11:42:40 +0100869
870/**
871 * wait_event_interruptible_lock_irq_cmd - sleep until a condition gets true.
872 * The condition is checked under the lock. This is expected to
873 * be called with the lock taken.
874 * @wq: the waitqueue to wait on
875 * @condition: a C expression for the event to wait for
876 * @lock: a locked spinlock_t, which will be released before cmd and
877 * schedule() and reacquired afterwards.
878 * @cmd: a command which is invoked outside the critical section before
879 * sleep
880 *
881 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
882 * @condition evaluates to true or a signal is received. The @condition is
883 * checked each time the waitqueue @wq is woken up.
884 *
885 * wake_up() has to be called after changing any variable that could
886 * change the result of the wait condition.
887 *
888 * This is supposed to be called while holding the lock. The lock is
889 * dropped before invoking the cmd and going to sleep and is reacquired
890 * afterwards.
891 *
892 * The macro will return -ERESTARTSYS if it was interrupted by a signal
893 * and 0 if @condition evaluated to true.
894 */
895#define wait_event_interruptible_lock_irq_cmd(wq, condition, lock, cmd) \
896({ \
897 int __ret = 0; \
Lukas Czernereed8c022012-11-30 11:42:40 +0100898 if (!(condition)) \
Ingo Molnarfb869b62013-10-04 10:24:49 +0200899 __ret = __wait_event_interruptible_lock_irq(wq, \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200900 condition, lock, cmd); \
Lukas Czernereed8c022012-11-30 11:42:40 +0100901 __ret; \
902})
903
904/**
905 * wait_event_interruptible_lock_irq - sleep until a condition gets true.
906 * The condition is checked under the lock. This is expected
907 * to be called with the lock taken.
908 * @wq: the waitqueue to wait on
909 * @condition: a C expression for the event to wait for
910 * @lock: a locked spinlock_t, which will be released before schedule()
911 * and reacquired afterwards.
912 *
913 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
914 * @condition evaluates to true or signal is received. The @condition is
915 * checked each time the waitqueue @wq is woken up.
916 *
917 * wake_up() has to be called after changing any variable that could
918 * change the result of the wait condition.
919 *
920 * This is supposed to be called while holding the lock. The lock is
921 * dropped before going to sleep and is reacquired afterwards.
922 *
923 * The macro will return -ERESTARTSYS if it was interrupted by a signal
924 * and 0 if @condition evaluated to true.
925 */
926#define wait_event_interruptible_lock_irq(wq, condition, lock) \
927({ \
928 int __ret = 0; \
Lukas Czernereed8c022012-11-30 11:42:40 +0100929 if (!(condition)) \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200930 __ret = __wait_event_interruptible_lock_irq(wq, \
Thierry Reding92ec1182013-10-23 13:40:55 +0200931 condition, lock,); \
Lukas Czernereed8c022012-11-30 11:42:40 +0100932 __ret; \
933})
934
Ingo Molnarfb869b62013-10-04 10:24:49 +0200935#define __wait_event_interruptible_lock_irq_timeout(wq, condition, \
936 lock, timeout) \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200937 ___wait_event(wq, ___wait_cond_timeout(condition), \
Heiko Carstens7d716452013-10-31 12:48:14 +0100938 TASK_INTERRUPTIBLE, 0, timeout, \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200939 spin_unlock_irq(&lock); \
940 __ret = schedule_timeout(__ret); \
Peter Zijlstraa1dc68522013-10-02 11:22:29 +0200941 spin_lock_irq(&lock));
Martin Peschked79ff142013-08-22 17:45:36 +0200942
943/**
Ingo Molnarfb869b62013-10-04 10:24:49 +0200944 * wait_event_interruptible_lock_irq_timeout - sleep until a condition gets
945 * true or a timeout elapses. The condition is checked under
946 * the lock. This is expected to be called with the lock taken.
Martin Peschked79ff142013-08-22 17:45:36 +0200947 * @wq: the waitqueue to wait on
948 * @condition: a C expression for the event to wait for
949 * @lock: a locked spinlock_t, which will be released before schedule()
950 * and reacquired afterwards.
951 * @timeout: timeout, in jiffies
952 *
953 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
954 * @condition evaluates to true or signal is received. The @condition is
955 * checked each time the waitqueue @wq is woken up.
956 *
957 * wake_up() has to be called after changing any variable that could
958 * change the result of the wait condition.
959 *
960 * This is supposed to be called while holding the lock. The lock is
961 * dropped before going to sleep and is reacquired afterwards.
962 *
963 * The function returns 0 if the @timeout elapsed, -ERESTARTSYS if it
964 * was interrupted by a signal, and the remaining jiffies otherwise
965 * if the condition evaluated to true before the timeout elapsed.
966 */
967#define wait_event_interruptible_lock_irq_timeout(wq, condition, lock, \
968 timeout) \
969({ \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200970 long __ret = timeout; \
Oleg Nesterov89229152013-10-07 20:31:06 +0200971 if (!___wait_cond_timeout(condition)) \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200972 __ret = __wait_event_interruptible_lock_irq_timeout( \
973 wq, condition, lock, timeout); \
Martin Peschked79ff142013-08-22 17:45:36 +0200974 __ret; \
975})
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977/*
978 * Waitqueues which are removed from the waitqueue_head at wakeup time
979 */
Harvey Harrisonb3c97522008-02-13 15:03:15 -0800980void prepare_to_wait(wait_queue_head_t *q, wait_queue_t *wait, int state);
981void prepare_to_wait_exclusive(wait_queue_head_t *q, wait_queue_t *wait, int state);
Oleg Nesterovc2d81642013-10-07 18:18:24 +0200982long prepare_to_wait_event(wait_queue_head_t *q, wait_queue_t *wait, int state);
Harvey Harrisonb3c97522008-02-13 15:03:15 -0800983void finish_wait(wait_queue_head_t *q, wait_queue_t *wait);
Peter Zijlstra61ada522014-09-24 10:18:47 +0200984long wait_woken(wait_queue_t *wait, unsigned mode, long timeout);
985int woken_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986int autoremove_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key);
987int wake_bit_function(wait_queue_t *wait, unsigned mode, int sync, void *key);
988
Eric Dumazetbf368e42009-04-28 02:24:21 -0700989#define DEFINE_WAIT_FUNC(name, function) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 wait_queue_t name = { \
Benjamin LaHaisec43dc2f2005-06-23 00:10:27 -0700991 .private = current, \
Eric Dumazetbf368e42009-04-28 02:24:21 -0700992 .func = function, \
blaisorblade@yahoo.it7e43c842005-05-25 01:31:42 +0200993 .task_list = LIST_HEAD_INIT((name).task_list), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
995
Eric Dumazetbf368e42009-04-28 02:24:21 -0700996#define DEFINE_WAIT(name) DEFINE_WAIT_FUNC(name, autoremove_wake_function)
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998#define DEFINE_WAIT_BIT(name, word, bit) \
999 struct wait_bit_queue name = { \
1000 .key = __WAIT_BIT_KEY_INITIALIZER(word, bit), \
1001 .wait = { \
Benjamin LaHaisec43dc2f2005-06-23 00:10:27 -07001002 .private = current, \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 .func = wake_bit_function, \
1004 .task_list = \
1005 LIST_HEAD_INIT((name).wait.task_list), \
1006 }, \
1007 }
1008
1009#define init_wait(wait) \
1010 do { \
Benjamin LaHaisec43dc2f2005-06-23 00:10:27 -07001011 (wait)->private = current; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 (wait)->func = autoremove_wake_function; \
1013 INIT_LIST_HEAD(&(wait)->task_list); \
Evgeny Kuznetsov231d0ae2010-10-05 12:47:57 +04001014 (wait)->flags = 0; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 } while (0)
1016
NeilBrown74316202014-07-07 15:16:04 +10001017
Peter Zijlstradfd01f02015-12-13 22:11:16 +01001018extern int bit_wait(struct wait_bit_key *, int);
1019extern int bit_wait_io(struct wait_bit_key *, int);
1020extern int bit_wait_timeout(struct wait_bit_key *, int);
1021extern int bit_wait_io_timeout(struct wait_bit_key *, int);
NeilBrown74316202014-07-07 15:16:04 +10001022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023/**
1024 * wait_on_bit - wait for a bit to be cleared
1025 * @word: the word being waited on, a kernel virtual address
1026 * @bit: the bit of the word being waited on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 * @mode: the task state to sleep in
1028 *
1029 * There is a standard hashed waitqueue table for generic use. This
1030 * is the part of the hashtable's accessor API that waits on a bit.
1031 * For instance, if one were to have waiters on a bitflag, one would
1032 * call wait_on_bit() in threads waiting for the bit to clear.
1033 * One uses wait_on_bit() where one is waiting for the bit to clear,
1034 * but has no intention of setting it.
NeilBrown74316202014-07-07 15:16:04 +10001035 * Returned value will be zero if the bit was cleared, or non-zero
1036 * if the process received a signal and the mode permitted wakeup
1037 * on that signal.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 */
Ingo Molnarfb869b62013-10-04 10:24:49 +02001039static inline int
Palmer Dabbelt7e605982015-04-30 21:19:56 -07001040wait_on_bit(unsigned long *word, int bit, unsigned mode)
NeilBrown74316202014-07-07 15:16:04 +10001041{
Peter Zijlstrae22b8862014-09-24 10:18:48 +02001042 might_sleep();
NeilBrown74316202014-07-07 15:16:04 +10001043 if (!test_bit(bit, word))
1044 return 0;
1045 return out_of_line_wait_on_bit(word, bit,
1046 bit_wait,
1047 mode);
1048}
1049
1050/**
1051 * wait_on_bit_io - wait for a bit to be cleared
1052 * @word: the word being waited on, a kernel virtual address
1053 * @bit: the bit of the word being waited on
1054 * @mode: the task state to sleep in
1055 *
1056 * Use the standard hashed waitqueue table to wait for a bit
1057 * to be cleared. This is similar to wait_on_bit(), but calls
1058 * io_schedule() instead of schedule() for the actual waiting.
1059 *
1060 * Returned value will be zero if the bit was cleared, or non-zero
1061 * if the process received a signal and the mode permitted wakeup
1062 * on that signal.
1063 */
1064static inline int
Palmer Dabbelt7e605982015-04-30 21:19:56 -07001065wait_on_bit_io(unsigned long *word, int bit, unsigned mode)
NeilBrown74316202014-07-07 15:16:04 +10001066{
Peter Zijlstrae22b8862014-09-24 10:18:48 +02001067 might_sleep();
NeilBrown74316202014-07-07 15:16:04 +10001068 if (!test_bit(bit, word))
1069 return 0;
1070 return out_of_line_wait_on_bit(word, bit,
1071 bit_wait_io,
1072 mode);
1073}
1074
1075/**
Johan Hedberg44fc0e52015-01-30 13:14:36 +02001076 * wait_on_bit_timeout - wait for a bit to be cleared or a timeout elapses
1077 * @word: the word being waited on, a kernel virtual address
1078 * @bit: the bit of the word being waited on
1079 * @mode: the task state to sleep in
1080 * @timeout: timeout, in jiffies
1081 *
1082 * Use the standard hashed waitqueue table to wait for a bit
1083 * to be cleared. This is similar to wait_on_bit(), except also takes a
1084 * timeout parameter.
1085 *
1086 * Returned value will be zero if the bit was cleared before the
1087 * @timeout elapsed, or non-zero if the @timeout elapsed or process
1088 * received a signal and the mode permitted wakeup on that signal.
1089 */
1090static inline int
Palmer Dabbelt7e605982015-04-30 21:19:56 -07001091wait_on_bit_timeout(unsigned long *word, int bit, unsigned mode,
1092 unsigned long timeout)
Johan Hedberg44fc0e52015-01-30 13:14:36 +02001093{
1094 might_sleep();
1095 if (!test_bit(bit, word))
1096 return 0;
1097 return out_of_line_wait_on_bit_timeout(word, bit,
1098 bit_wait_timeout,
1099 mode, timeout);
1100}
1101
1102/**
NeilBrown74316202014-07-07 15:16:04 +10001103 * wait_on_bit_action - wait for a bit to be cleared
1104 * @word: the word being waited on, a kernel virtual address
1105 * @bit: the bit of the word being waited on
1106 * @action: the function used to sleep, which may take special actions
1107 * @mode: the task state to sleep in
1108 *
1109 * Use the standard hashed waitqueue table to wait for a bit
1110 * to be cleared, and allow the waiting action to be specified.
1111 * This is like wait_on_bit() but allows fine control of how the waiting
1112 * is done.
1113 *
1114 * Returned value will be zero if the bit was cleared, or non-zero
1115 * if the process received a signal and the mode permitted wakeup
1116 * on that signal.
1117 */
1118static inline int
Palmer Dabbelt7e605982015-04-30 21:19:56 -07001119wait_on_bit_action(unsigned long *word, int bit, wait_bit_action_f *action,
1120 unsigned mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121{
Peter Zijlstrae22b8862014-09-24 10:18:48 +02001122 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 if (!test_bit(bit, word))
1124 return 0;
1125 return out_of_line_wait_on_bit(word, bit, action, mode);
1126}
1127
1128/**
1129 * wait_on_bit_lock - wait for a bit to be cleared, when wanting to set it
1130 * @word: the word being waited on, a kernel virtual address
1131 * @bit: the bit of the word being waited on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 * @mode: the task state to sleep in
1133 *
1134 * There is a standard hashed waitqueue table for generic use. This
1135 * is the part of the hashtable's accessor API that waits on a bit
1136 * when one intends to set it, for instance, trying to lock bitflags.
1137 * For instance, if one were to have waiters trying to set bitflag
1138 * and waiting for it to clear before setting it, one would call
1139 * wait_on_bit() in threads waiting to be able to set the bit.
1140 * One uses wait_on_bit_lock() where one is waiting for the bit to
1141 * clear with the intention of setting it, and when done, clearing it.
NeilBrown74316202014-07-07 15:16:04 +10001142 *
1143 * Returns zero if the bit was (eventually) found to be clear and was
1144 * set. Returns non-zero if a signal was delivered to the process and
1145 * the @mode allows that signal to wake the process.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 */
Ingo Molnarfb869b62013-10-04 10:24:49 +02001147static inline int
Palmer Dabbelt7e605982015-04-30 21:19:56 -07001148wait_on_bit_lock(unsigned long *word, int bit, unsigned mode)
NeilBrown74316202014-07-07 15:16:04 +10001149{
Peter Zijlstrae22b8862014-09-24 10:18:48 +02001150 might_sleep();
NeilBrown74316202014-07-07 15:16:04 +10001151 if (!test_and_set_bit(bit, word))
1152 return 0;
1153 return out_of_line_wait_on_bit_lock(word, bit, bit_wait, mode);
1154}
1155
1156/**
1157 * wait_on_bit_lock_io - wait for a bit to be cleared, when wanting to set it
1158 * @word: the word being waited on, a kernel virtual address
1159 * @bit: the bit of the word being waited on
1160 * @mode: the task state to sleep in
1161 *
1162 * Use the standard hashed waitqueue table to wait for a bit
1163 * to be cleared and then to atomically set it. This is similar
1164 * to wait_on_bit(), but calls io_schedule() instead of schedule()
1165 * for the actual waiting.
1166 *
1167 * Returns zero if the bit was (eventually) found to be clear and was
1168 * set. Returns non-zero if a signal was delivered to the process and
1169 * the @mode allows that signal to wake the process.
1170 */
1171static inline int
Palmer Dabbelt7e605982015-04-30 21:19:56 -07001172wait_on_bit_lock_io(unsigned long *word, int bit, unsigned mode)
NeilBrown74316202014-07-07 15:16:04 +10001173{
Peter Zijlstrae22b8862014-09-24 10:18:48 +02001174 might_sleep();
NeilBrown74316202014-07-07 15:16:04 +10001175 if (!test_and_set_bit(bit, word))
1176 return 0;
1177 return out_of_line_wait_on_bit_lock(word, bit, bit_wait_io, mode);
1178}
1179
1180/**
1181 * wait_on_bit_lock_action - wait for a bit to be cleared, when wanting to set it
1182 * @word: the word being waited on, a kernel virtual address
1183 * @bit: the bit of the word being waited on
1184 * @action: the function used to sleep, which may take special actions
1185 * @mode: the task state to sleep in
1186 *
1187 * Use the standard hashed waitqueue table to wait for a bit
1188 * to be cleared and then to set it, and allow the waiting action
1189 * to be specified.
1190 * This is like wait_on_bit() but allows fine control of how the waiting
1191 * is done.
1192 *
1193 * Returns zero if the bit was (eventually) found to be clear and was
1194 * set. Returns non-zero if a signal was delivered to the process and
1195 * the @mode allows that signal to wake the process.
1196 */
1197static inline int
Palmer Dabbelt7e605982015-04-30 21:19:56 -07001198wait_on_bit_lock_action(unsigned long *word, int bit, wait_bit_action_f *action,
1199 unsigned mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
Peter Zijlstrae22b8862014-09-24 10:18:48 +02001201 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 if (!test_and_set_bit(bit, word))
1203 return 0;
1204 return out_of_line_wait_on_bit_lock(word, bit, action, mode);
1205}
David Howellscb655372013-05-10 19:50:26 +01001206
1207/**
1208 * wait_on_atomic_t - Wait for an atomic_t to become 0
1209 * @val: The atomic value being waited on, a kernel virtual address
1210 * @action: the function used to sleep, which may take special actions
1211 * @mode: the task state to sleep in
1212 *
1213 * Wait for an atomic_t to become 0. We abuse the bit-wait waitqueue table for
1214 * the purpose of getting a waitqueue, but we set the key to a bit number
1215 * outside of the target 'word'.
1216 */
1217static inline
1218int wait_on_atomic_t(atomic_t *val, int (*action)(atomic_t *), unsigned mode)
1219{
Peter Zijlstrae22b8862014-09-24 10:18:48 +02001220 might_sleep();
David Howellscb655372013-05-10 19:50:26 +01001221 if (atomic_read(val) == 0)
1222 return 0;
1223 return out_of_line_wait_on_atomic_t(val, action, mode);
1224}
Ingo Molnarfb869b62013-10-04 10:24:49 +02001225
1226#endif /* _LINUX_WAIT_H */