blob: 2232ed16635ae0929c97f62e1c8c1b09109f0649 [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
105static inline int waitqueue_active(wait_queue_head_t *q)
106{
107 return !list_empty(&q->task_list);
108}
109
Harvey Harrisonb3c97522008-02-13 15:03:15 -0800110extern void add_wait_queue(wait_queue_head_t *q, wait_queue_t *wait);
111extern void add_wait_queue_exclusive(wait_queue_head_t *q, wait_queue_t *wait);
112extern void remove_wait_queue(wait_queue_head_t *q, wait_queue_t *wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114static inline void __add_wait_queue(wait_queue_head_t *head, wait_queue_t *new)
115{
116 list_add(&new->task_list, &head->task_list);
117}
118
119/*
120 * Used for wake-one threads:
121 */
Ingo Molnarfb869b62013-10-04 10:24:49 +0200122static inline void
123__add_wait_queue_exclusive(wait_queue_head_t *q, wait_queue_t *wait)
Changli Gaoa93d2f12010-05-07 14:33:26 +0800124{
125 wait->flags |= WQ_FLAG_EXCLUSIVE;
126 __add_wait_queue(q, wait);
127}
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129static inline void __add_wait_queue_tail(wait_queue_head_t *head,
Changli Gaoa93d2f12010-05-07 14:33:26 +0800130 wait_queue_t *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
132 list_add_tail(&new->task_list, &head->task_list);
133}
134
Ingo Molnarfb869b62013-10-04 10:24:49 +0200135static inline void
136__add_wait_queue_tail_exclusive(wait_queue_head_t *q, wait_queue_t *wait)
Changli Gaoa93d2f12010-05-07 14:33:26 +0800137{
138 wait->flags |= WQ_FLAG_EXCLUSIVE;
139 __add_wait_queue_tail(q, wait);
140}
141
Ingo Molnarfb869b62013-10-04 10:24:49 +0200142static inline void
143__remove_wait_queue(wait_queue_head_t *head, wait_queue_t *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
145 list_del(&old->task_list);
146}
147
NeilBrownc1221322014-07-07 15:16:04 +1000148typedef int wait_bit_action_f(struct wait_bit_key *);
Harvey Harrisonb3c97522008-02-13 15:03:15 -0800149void __wake_up(wait_queue_head_t *q, unsigned int mode, int nr, void *key);
Davide Libenzi4ede8162009-03-31 15:24:20 -0700150void __wake_up_locked_key(wait_queue_head_t *q, unsigned int mode, void *key);
Ingo Molnarfb869b62013-10-04 10:24:49 +0200151void __wake_up_sync_key(wait_queue_head_t *q, unsigned int mode, int nr, void *key);
Thomas Gleixner63b20012011-12-01 00:04:00 +0100152void __wake_up_locked(wait_queue_head_t *q, unsigned int mode, int nr);
Davide Libenzi4ede8162009-03-31 15:24:20 -0700153void __wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr);
Harvey Harrisonb3c97522008-02-13 15:03:15 -0800154void __wake_up_bit(wait_queue_head_t *, void *, int);
NeilBrownc1221322014-07-07 15:16:04 +1000155int __wait_on_bit(wait_queue_head_t *, struct wait_bit_queue *, wait_bit_action_f *, unsigned);
156int __wait_on_bit_lock(wait_queue_head_t *, struct wait_bit_queue *, wait_bit_action_f *, unsigned);
Harvey Harrisonb3c97522008-02-13 15:03:15 -0800157void wake_up_bit(void *, int);
David Howellscb655372013-05-10 19:50:26 +0100158void wake_up_atomic_t(atomic_t *);
NeilBrownc1221322014-07-07 15:16:04 +1000159int out_of_line_wait_on_bit(void *, int, wait_bit_action_f *, unsigned);
NeilBrowncbbce822014-09-25 13:55:19 +1000160int out_of_line_wait_on_bit_timeout(void *, int, wait_bit_action_f *, unsigned, unsigned long);
NeilBrownc1221322014-07-07 15:16:04 +1000161int out_of_line_wait_on_bit_lock(void *, int, wait_bit_action_f *, unsigned);
David Howellscb655372013-05-10 19:50:26 +0100162int out_of_line_wait_on_atomic_t(atomic_t *, int (*)(atomic_t *), unsigned);
Harvey Harrisonb3c97522008-02-13 15:03:15 -0800163wait_queue_head_t *bit_waitqueue(void *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Matthew Wilcoxe64d66c2007-12-06 17:34:36 -0500165#define wake_up(x) __wake_up(x, TASK_NORMAL, 1, NULL)
166#define wake_up_nr(x, nr) __wake_up(x, TASK_NORMAL, nr, NULL)
167#define wake_up_all(x) __wake_up(x, TASK_NORMAL, 0, NULL)
Thomas Gleixner63b20012011-12-01 00:04:00 +0100168#define wake_up_locked(x) __wake_up_locked((x), TASK_NORMAL, 1)
169#define wake_up_all_locked(x) __wake_up_locked((x), TASK_NORMAL, 0)
Matthew Wilcoxe64d66c2007-12-06 17:34:36 -0500170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171#define wake_up_interruptible(x) __wake_up(x, TASK_INTERRUPTIBLE, 1, NULL)
172#define wake_up_interruptible_nr(x, nr) __wake_up(x, TASK_INTERRUPTIBLE, nr, NULL)
173#define wake_up_interruptible_all(x) __wake_up(x, TASK_INTERRUPTIBLE, 0, NULL)
Matthew Wilcoxe64d66c2007-12-06 17:34:36 -0500174#define wake_up_interruptible_sync(x) __wake_up_sync((x), TASK_INTERRUPTIBLE, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Peter Zijlstra0ccf8312008-02-04 22:27:20 -0800176/*
Davide Libenzic0da3772009-03-31 15:24:20 -0700177 * Wakeup macros to be used to report events to the targets.
Peter Zijlstra0ccf8312008-02-04 22:27:20 -0800178 */
Ingo Molnarfb869b62013-10-04 10:24:49 +0200179#define wake_up_poll(x, m) \
Davide Libenzic0da3772009-03-31 15:24:20 -0700180 __wake_up(x, TASK_NORMAL, 1, (void *) (m))
Ingo Molnarfb869b62013-10-04 10:24:49 +0200181#define wake_up_locked_poll(x, m) \
Davide Libenzic0da3772009-03-31 15:24:20 -0700182 __wake_up_locked_key((x), TASK_NORMAL, (void *) (m))
Ingo Molnarfb869b62013-10-04 10:24:49 +0200183#define wake_up_interruptible_poll(x, m) \
Davide Libenzic0da3772009-03-31 15:24:20 -0700184 __wake_up(x, TASK_INTERRUPTIBLE, 1, (void *) (m))
185#define wake_up_interruptible_sync_poll(x, m) \
186 __wake_up_sync_key((x), TASK_INTERRUPTIBLE, 1, (void *) (m))
Peter Zijlstra0ccf8312008-02-04 22:27:20 -0800187
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200188#define ___wait_cond_timeout(condition) \
Peter Zijlstra2953ef22013-10-02 11:22:19 +0200189({ \
Ingo Molnarfb869b62013-10-04 10:24:49 +0200190 bool __cond = (condition); \
191 if (__cond && !__ret) \
192 __ret = 1; \
193 __cond || !__ret; \
Peter Zijlstra2953ef22013-10-02 11:22:19 +0200194})
195
Oleg Nesterovc2d81642013-10-07 18:18:24 +0200196#define ___wait_is_interruptible(state) \
197 (!__builtin_constant_p(state) || \
198 state == TASK_INTERRUPTIBLE || state == TASK_KILLABLE) \
Peter Zijlstra41a14312013-10-02 11:22:21 +0200199
Peter Zijlstra8b322012014-04-18 15:07:17 -0700200/*
201 * The below macro ___wait_event() has an explicit shadow of the __ret
202 * variable when used from the wait_event_*() macros.
203 *
204 * This is so that both can use the ___wait_cond_timeout() construct
205 * to wrap the condition.
206 *
207 * The type inconsistency of the wait_event_*() __ret variable is also
208 * on purpose; we use long where we can return timeout values and int
209 * otherwise.
210 */
211
Peter Zijlstra41a14312013-10-02 11:22:21 +0200212#define ___wait_event(wq, condition, state, exclusive, ret, cmd) \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200213({ \
Peter Zijlstra41a14312013-10-02 11:22:21 +0200214 __label__ __out; \
Oleg Nesterovc2d81642013-10-07 18:18:24 +0200215 wait_queue_t __wait; \
Peter Zijlstra8b322012014-04-18 15:07:17 -0700216 long __ret = ret; /* explicit shadow */ \
Peter Zijlstra41a14312013-10-02 11:22:21 +0200217 \
Oleg Nesterovc2d81642013-10-07 18:18:24 +0200218 INIT_LIST_HEAD(&__wait.task_list); \
219 if (exclusive) \
220 __wait.flags = WQ_FLAG_EXCLUSIVE; \
221 else \
222 __wait.flags = 0; \
223 \
Peter Zijlstra41a14312013-10-02 11:22:21 +0200224 for (;;) { \
Oleg Nesterovc2d81642013-10-07 18:18:24 +0200225 long __int = prepare_to_wait_event(&wq, &__wait, state);\
Peter Zijlstra41a14312013-10-02 11:22:21 +0200226 \
227 if (condition) \
228 break; \
229 \
Oleg Nesterovc2d81642013-10-07 18:18:24 +0200230 if (___wait_is_interruptible(state) && __int) { \
231 __ret = __int; \
Peter Zijlstra41a14312013-10-02 11:22:21 +0200232 if (exclusive) { \
Ingo Molnarfb869b62013-10-04 10:24:49 +0200233 abort_exclusive_wait(&wq, &__wait, \
234 state, NULL); \
Peter Zijlstra41a14312013-10-02 11:22:21 +0200235 goto __out; \
236 } \
237 break; \
238 } \
239 \
240 cmd; \
241 } \
242 finish_wait(&wq, &__wait); \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200243__out: __ret; \
244})
Peter Zijlstra41a14312013-10-02 11:22:21 +0200245
Ingo Molnarfb869b62013-10-04 10:24:49 +0200246#define __wait_event(wq, condition) \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200247 (void)___wait_event(wq, condition, TASK_UNINTERRUPTIBLE, 0, 0, \
248 schedule())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250/**
251 * wait_event - sleep until a condition gets true
252 * @wq: the waitqueue to wait on
253 * @condition: a C expression for the event to wait for
254 *
255 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
256 * @condition evaluates to true. The @condition is checked each time
257 * the waitqueue @wq is woken up.
258 *
259 * wake_up() has to be called after changing any variable that could
260 * change the result of the wait condition.
261 */
Ingo Molnarfb869b62013-10-04 10:24:49 +0200262#define wait_event(wq, condition) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263do { \
Peter Zijlstrae22b8862014-09-24 10:18:48 +0200264 might_sleep(); \
Ingo Molnarfb869b62013-10-04 10:24:49 +0200265 if (condition) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 break; \
267 __wait_event(wq, condition); \
268} while (0)
269
Peter Zijlstra36df04b2014-10-29 12:21:57 +0100270#define __wait_event_freezable(wq, condition) \
271 ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 0, 0, \
272 schedule(); try_to_freeze())
273
274/**
275 * wait_event - sleep (or freeze) until a condition gets true
276 * @wq: the waitqueue to wait on
277 * @condition: a C expression for the event to wait for
278 *
279 * The process is put to sleep (TASK_INTERRUPTIBLE -- so as not to contribute
280 * to system load) until the @condition evaluates to true. The
281 * @condition is checked each time the waitqueue @wq is woken up.
282 *
283 * wake_up() has to be called after changing any variable that could
284 * change the result of the wait condition.
285 */
286#define wait_event_freezable(wq, condition) \
287({ \
288 int __ret = 0; \
289 might_sleep(); \
290 if (!(condition)) \
291 __ret = __wait_event_freezable(wq, condition); \
292 __ret; \
293})
294
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200295#define __wait_event_timeout(wq, condition, timeout) \
296 ___wait_event(wq, ___wait_cond_timeout(condition), \
297 TASK_UNINTERRUPTIBLE, 0, timeout, \
298 __ret = schedule_timeout(__ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300/**
301 * wait_event_timeout - sleep until a condition gets true or a timeout elapses
302 * @wq: the waitqueue to wait on
303 * @condition: a C expression for the event to wait for
304 * @timeout: timeout, in jiffies
305 *
306 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
307 * @condition evaluates to true. The @condition is checked each time
308 * the waitqueue @wq is woken up.
309 *
310 * wake_up() has to be called after changing any variable that could
311 * change the result of the wait condition.
312 *
Scot Doyle6b44f512014-08-24 17:12:27 +0000313 * Returns:
314 * 0 if the @condition evaluated to %false after the @timeout elapsed,
315 * 1 if the @condition evaluated to %true after the @timeout elapsed,
316 * or the remaining jiffies (at least 1) if the @condition evaluated
317 * to %true before the @timeout elapsed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 */
319#define wait_event_timeout(wq, condition, timeout) \
320({ \
321 long __ret = timeout; \
Peter Zijlstrae22b8862014-09-24 10:18:48 +0200322 might_sleep(); \
Oleg Nesterov89229152013-10-07 20:31:06 +0200323 if (!___wait_cond_timeout(condition)) \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200324 __ret = __wait_event_timeout(wq, condition, timeout); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 __ret; \
326})
327
Peter Zijlstra36df04b2014-10-29 12:21:57 +0100328#define __wait_event_freezable_timeout(wq, condition, timeout) \
329 ___wait_event(wq, ___wait_cond_timeout(condition), \
330 TASK_INTERRUPTIBLE, 0, timeout, \
331 __ret = schedule_timeout(__ret); try_to_freeze())
332
333/*
334 * like wait_event_timeout() -- except it uses TASK_INTERRUPTIBLE to avoid
335 * increasing load and is freezable.
336 */
337#define wait_event_freezable_timeout(wq, condition, timeout) \
338({ \
339 long __ret = timeout; \
340 might_sleep(); \
341 if (!___wait_cond_timeout(condition)) \
342 __ret = __wait_event_freezable_timeout(wq, condition, timeout); \
343 __ret; \
344})
345
Shaohua Li82e06c82013-11-14 15:16:16 +1100346#define __wait_event_cmd(wq, condition, cmd1, cmd2) \
347 (void)___wait_event(wq, condition, TASK_UNINTERRUPTIBLE, 0, 0, \
348 cmd1; schedule(); cmd2)
349
350/**
351 * wait_event_cmd - sleep until a condition gets true
352 * @wq: the waitqueue to wait on
353 * @condition: a C expression for the event to wait for
Masanari Iidaf434f7a2014-01-22 01:22:06 +0900354 * @cmd1: the command will be executed before sleep
355 * @cmd2: the command will be executed after sleep
Shaohua Li82e06c82013-11-14 15:16:16 +1100356 *
357 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
358 * @condition evaluates to true. The @condition is checked each time
359 * the waitqueue @wq is woken up.
360 *
361 * wake_up() has to be called after changing any variable that could
362 * change the result of the wait condition.
363 */
364#define wait_event_cmd(wq, condition, cmd1, cmd2) \
365do { \
Peter Zijlstrae22b8862014-09-24 10:18:48 +0200366 might_sleep(); \
Shaohua Li82e06c82013-11-14 15:16:16 +1100367 if (condition) \
368 break; \
369 __wait_event_cmd(wq, condition, cmd1, cmd2); \
370} while (0)
371
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200372#define __wait_event_interruptible(wq, condition) \
373 ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 0, 0, \
Peter Zijlstraf13f4c42013-10-02 11:22:24 +0200374 schedule())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376/**
377 * wait_event_interruptible - sleep until a condition gets true
378 * @wq: the waitqueue to wait on
379 * @condition: a C expression for the event to wait for
380 *
381 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
382 * @condition evaluates to true or a signal is received.
383 * The @condition is checked each time the waitqueue @wq is woken up.
384 *
385 * wake_up() has to be called after changing any variable that could
386 * change the result of the wait condition.
387 *
388 * The function will return -ERESTARTSYS if it was interrupted by a
389 * signal and 0 if @condition evaluated to true.
390 */
391#define wait_event_interruptible(wq, condition) \
392({ \
393 int __ret = 0; \
Peter Zijlstrae22b8862014-09-24 10:18:48 +0200394 might_sleep(); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (!(condition)) \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200396 __ret = __wait_event_interruptible(wq, condition); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 __ret; \
398})
399
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200400#define __wait_event_interruptible_timeout(wq, condition, timeout) \
401 ___wait_event(wq, ___wait_cond_timeout(condition), \
402 TASK_INTERRUPTIBLE, 0, timeout, \
403 __ret = schedule_timeout(__ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405/**
406 * wait_event_interruptible_timeout - sleep until a condition gets true or a timeout elapses
407 * @wq: the waitqueue to wait on
408 * @condition: a C expression for the event to wait for
409 * @timeout: timeout, in jiffies
410 *
411 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
412 * @condition evaluates to true or a signal is received.
413 * The @condition is checked each time the waitqueue @wq is woken up.
414 *
415 * wake_up() has to be called after changing any variable that could
416 * change the result of the wait condition.
417 *
Imre Deak4c663cf2013-05-24 15:55:09 -0700418 * Returns:
Scot Doyle6b44f512014-08-24 17:12:27 +0000419 * 0 if the @condition evaluated to %false after the @timeout elapsed,
420 * 1 if the @condition evaluated to %true after the @timeout elapsed,
421 * the remaining jiffies (at least 1) if the @condition evaluated
422 * to %true before the @timeout elapsed, or -%ERESTARTSYS if it was
423 * interrupted by a signal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 */
425#define wait_event_interruptible_timeout(wq, condition, timeout) \
426({ \
427 long __ret = timeout; \
Peter Zijlstrae22b8862014-09-24 10:18:48 +0200428 might_sleep(); \
Oleg Nesterov89229152013-10-07 20:31:06 +0200429 if (!___wait_cond_timeout(condition)) \
Ingo Molnarfb869b62013-10-04 10:24:49 +0200430 __ret = __wait_event_interruptible_timeout(wq, \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200431 condition, timeout); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 __ret; \
433})
434
Kent Overstreet774a08b2013-05-07 16:18:43 -0700435#define __wait_event_hrtimeout(wq, condition, timeout, state) \
436({ \
437 int __ret = 0; \
Kent Overstreet774a08b2013-05-07 16:18:43 -0700438 struct hrtimer_sleeper __t; \
439 \
440 hrtimer_init_on_stack(&__t.timer, CLOCK_MONOTONIC, \
441 HRTIMER_MODE_REL); \
442 hrtimer_init_sleeper(&__t, current); \
443 if ((timeout).tv64 != KTIME_MAX) \
444 hrtimer_start_range_ns(&__t.timer, timeout, \
445 current->timer_slack_ns, \
446 HRTIMER_MODE_REL); \
447 \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200448 __ret = ___wait_event(wq, condition, state, 0, 0, \
Kent Overstreet774a08b2013-05-07 16:18:43 -0700449 if (!__t.task) { \
450 __ret = -ETIME; \
451 break; \
452 } \
Peter Zijlstraebdc1952013-10-02 11:22:32 +0200453 schedule()); \
Kent Overstreet774a08b2013-05-07 16:18:43 -0700454 \
455 hrtimer_cancel(&__t.timer); \
456 destroy_hrtimer_on_stack(&__t.timer); \
Kent Overstreet774a08b2013-05-07 16:18:43 -0700457 __ret; \
458})
459
460/**
461 * wait_event_hrtimeout - sleep until a condition gets true or a timeout elapses
462 * @wq: the waitqueue to wait on
463 * @condition: a C expression for the event to wait for
464 * @timeout: timeout, as a ktime_t
465 *
466 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
467 * @condition evaluates to true or a signal is received.
468 * The @condition is checked each time the waitqueue @wq is woken up.
469 *
470 * wake_up() has to be called after changing any variable that could
471 * change the result of the wait condition.
472 *
473 * The function returns 0 if @condition became true, or -ETIME if the timeout
474 * elapsed.
475 */
476#define wait_event_hrtimeout(wq, condition, timeout) \
477({ \
478 int __ret = 0; \
Peter Zijlstrae22b8862014-09-24 10:18:48 +0200479 might_sleep(); \
Kent Overstreet774a08b2013-05-07 16:18:43 -0700480 if (!(condition)) \
481 __ret = __wait_event_hrtimeout(wq, condition, timeout, \
482 TASK_UNINTERRUPTIBLE); \
483 __ret; \
484})
485
486/**
487 * wait_event_interruptible_hrtimeout - sleep until a condition gets true or a timeout elapses
488 * @wq: the waitqueue to wait on
489 * @condition: a C expression for the event to wait for
490 * @timeout: timeout, as a ktime_t
491 *
492 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
493 * @condition evaluates to true or a signal is received.
494 * The @condition is checked each time the waitqueue @wq is woken up.
495 *
496 * wake_up() has to be called after changing any variable that could
497 * change the result of the wait condition.
498 *
499 * The function returns 0 if @condition became true, -ERESTARTSYS if it was
500 * interrupted by a signal, or -ETIME if the timeout elapsed.
501 */
502#define wait_event_interruptible_hrtimeout(wq, condition, timeout) \
503({ \
504 long __ret = 0; \
Peter Zijlstrae22b8862014-09-24 10:18:48 +0200505 might_sleep(); \
Kent Overstreet774a08b2013-05-07 16:18:43 -0700506 if (!(condition)) \
507 __ret = __wait_event_hrtimeout(wq, condition, timeout, \
508 TASK_INTERRUPTIBLE); \
509 __ret; \
510})
511
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200512#define __wait_event_interruptible_exclusive(wq, condition) \
513 ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 1, 0, \
Peter Zijlstra48c25212013-10-02 11:22:26 +0200514 schedule())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516#define wait_event_interruptible_exclusive(wq, condition) \
517({ \
518 int __ret = 0; \
Peter Zijlstrae22b8862014-09-24 10:18:48 +0200519 might_sleep(); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 if (!(condition)) \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200521 __ret = __wait_event_interruptible_exclusive(wq, condition);\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 __ret; \
523})
524
Michal Nazarewicz22c43c82010-05-05 12:53:11 +0200525
Peter Zijlstra36df04b2014-10-29 12:21:57 +0100526#define __wait_event_freezable_exclusive(wq, condition) \
527 ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 1, 0, \
528 schedule(); try_to_freeze())
529
530#define wait_event_freezable_exclusive(wq, condition) \
531({ \
532 int __ret = 0; \
533 might_sleep(); \
534 if (!(condition)) \
535 __ret = __wait_event_freezable_exclusive(wq, condition);\
536 __ret; \
537})
538
539
Michal Nazarewicz22c43c82010-05-05 12:53:11 +0200540#define __wait_event_interruptible_locked(wq, condition, exclusive, irq) \
541({ \
542 int __ret = 0; \
543 DEFINE_WAIT(__wait); \
544 if (exclusive) \
545 __wait.flags |= WQ_FLAG_EXCLUSIVE; \
546 do { \
547 if (likely(list_empty(&__wait.task_list))) \
548 __add_wait_queue_tail(&(wq), &__wait); \
549 set_current_state(TASK_INTERRUPTIBLE); \
550 if (signal_pending(current)) { \
551 __ret = -ERESTARTSYS; \
552 break; \
553 } \
554 if (irq) \
555 spin_unlock_irq(&(wq).lock); \
556 else \
557 spin_unlock(&(wq).lock); \
558 schedule(); \
559 if (irq) \
560 spin_lock_irq(&(wq).lock); \
561 else \
562 spin_lock(&(wq).lock); \
563 } while (!(condition)); \
564 __remove_wait_queue(&(wq), &__wait); \
565 __set_current_state(TASK_RUNNING); \
566 __ret; \
567})
568
569
570/**
571 * wait_event_interruptible_locked - sleep until a condition gets true
572 * @wq: the waitqueue to wait on
573 * @condition: a C expression for the event to wait for
574 *
575 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
576 * @condition evaluates to true or a signal is received.
577 * The @condition is checked each time the waitqueue @wq is woken up.
578 *
579 * It must be called with wq.lock being held. This spinlock is
580 * unlocked while sleeping but @condition testing is done while lock
581 * is held and when this macro exits the lock is held.
582 *
583 * The lock is locked/unlocked using spin_lock()/spin_unlock()
584 * functions which must match the way they are locked/unlocked outside
585 * of this macro.
586 *
587 * wake_up_locked() has to be called after changing any variable that could
588 * change the result of the wait condition.
589 *
590 * The function will return -ERESTARTSYS if it was interrupted by a
591 * signal and 0 if @condition evaluated to true.
592 */
593#define wait_event_interruptible_locked(wq, condition) \
594 ((condition) \
595 ? 0 : __wait_event_interruptible_locked(wq, condition, 0, 0))
596
597/**
598 * wait_event_interruptible_locked_irq - sleep until a condition gets true
599 * @wq: the waitqueue to wait on
600 * @condition: a C expression for the event to wait for
601 *
602 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
603 * @condition evaluates to true or a signal is received.
604 * The @condition is checked each time the waitqueue @wq is woken up.
605 *
606 * It must be called with wq.lock being held. This spinlock is
607 * unlocked while sleeping but @condition testing is done while lock
608 * is held and when this macro exits the lock is held.
609 *
610 * The lock is locked/unlocked using spin_lock_irq()/spin_unlock_irq()
611 * functions which must match the way they are locked/unlocked outside
612 * of this macro.
613 *
614 * wake_up_locked() has to be called after changing any variable that could
615 * change the result of the wait condition.
616 *
617 * The function will return -ERESTARTSYS if it was interrupted by a
618 * signal and 0 if @condition evaluated to true.
619 */
620#define wait_event_interruptible_locked_irq(wq, condition) \
621 ((condition) \
622 ? 0 : __wait_event_interruptible_locked(wq, condition, 0, 1))
623
624/**
625 * wait_event_interruptible_exclusive_locked - sleep exclusively until a condition gets true
626 * @wq: the waitqueue to wait on
627 * @condition: a C expression for the event to wait for
628 *
629 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
630 * @condition evaluates to true or a signal is received.
631 * The @condition is checked each time the waitqueue @wq is woken up.
632 *
633 * It must be called with wq.lock being held. This spinlock is
634 * unlocked while sleeping but @condition testing is done while lock
635 * is held and when this macro exits the lock is held.
636 *
637 * The lock is locked/unlocked using spin_lock()/spin_unlock()
638 * functions which must match the way they are locked/unlocked outside
639 * of this macro.
640 *
641 * The process is put on the wait queue with an WQ_FLAG_EXCLUSIVE flag
642 * set thus when other process waits process on the list if this
643 * process is awaken further processes are not considered.
644 *
645 * wake_up_locked() has to be called after changing any variable that could
646 * change the result of the wait condition.
647 *
648 * The function will return -ERESTARTSYS if it was interrupted by a
649 * signal and 0 if @condition evaluated to true.
650 */
651#define wait_event_interruptible_exclusive_locked(wq, condition) \
652 ((condition) \
653 ? 0 : __wait_event_interruptible_locked(wq, condition, 1, 0))
654
655/**
656 * wait_event_interruptible_exclusive_locked_irq - sleep until a condition gets true
657 * @wq: the waitqueue to wait on
658 * @condition: a C expression for the event to wait for
659 *
660 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
661 * @condition evaluates to true or a signal is received.
662 * The @condition is checked each time the waitqueue @wq is woken up.
663 *
664 * It must be called with wq.lock being held. This spinlock is
665 * unlocked while sleeping but @condition testing is done while lock
666 * is held and when this macro exits the lock is held.
667 *
668 * The lock is locked/unlocked using spin_lock_irq()/spin_unlock_irq()
669 * functions which must match the way they are locked/unlocked outside
670 * of this macro.
671 *
672 * The process is put on the wait queue with an WQ_FLAG_EXCLUSIVE flag
673 * set thus when other process waits process on the list if this
674 * process is awaken further processes are not considered.
675 *
676 * wake_up_locked() has to be called after changing any variable that could
677 * change the result of the wait condition.
678 *
679 * The function will return -ERESTARTSYS if it was interrupted by a
680 * signal and 0 if @condition evaluated to true.
681 */
682#define wait_event_interruptible_exclusive_locked_irq(wq, condition) \
683 ((condition) \
684 ? 0 : __wait_event_interruptible_locked(wq, condition, 1, 1))
685
686
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200687#define __wait_event_killable(wq, condition) \
688 ___wait_event(wq, condition, TASK_KILLABLE, 0, 0, schedule())
Matthew Wilcox1411d5a2007-12-06 12:00:00 -0500689
690/**
691 * wait_event_killable - sleep until a condition gets true
692 * @wq: the waitqueue to wait on
693 * @condition: a C expression for the event to wait for
694 *
695 * The process is put to sleep (TASK_KILLABLE) until the
696 * @condition evaluates to true or a signal is received.
697 * The @condition is checked each time the waitqueue @wq is woken up.
698 *
699 * wake_up() has to be called after changing any variable that could
700 * change the result of the wait condition.
701 *
702 * The function will return -ERESTARTSYS if it was interrupted by a
703 * signal and 0 if @condition evaluated to true.
704 */
705#define wait_event_killable(wq, condition) \
706({ \
707 int __ret = 0; \
Peter Zijlstrae22b8862014-09-24 10:18:48 +0200708 might_sleep(); \
Matthew Wilcox1411d5a2007-12-06 12:00:00 -0500709 if (!(condition)) \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200710 __ret = __wait_event_killable(wq, condition); \
Matthew Wilcox1411d5a2007-12-06 12:00:00 -0500711 __ret; \
712})
713
Lukas Czernereed8c022012-11-30 11:42:40 +0100714
715#define __wait_event_lock_irq(wq, condition, lock, cmd) \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200716 (void)___wait_event(wq, condition, TASK_UNINTERRUPTIBLE, 0, 0, \
717 spin_unlock_irq(&lock); \
718 cmd; \
719 schedule(); \
720 spin_lock_irq(&lock))
Lukas Czernereed8c022012-11-30 11:42:40 +0100721
722/**
723 * wait_event_lock_irq_cmd - sleep until a condition gets true. The
724 * condition is checked under the lock. This
725 * is expected to be called with the lock
726 * taken.
727 * @wq: the waitqueue to wait on
728 * @condition: a C expression for the event to wait for
729 * @lock: a locked spinlock_t, which will be released before cmd
730 * and schedule() and reacquired afterwards.
731 * @cmd: a command which is invoked outside the critical section before
732 * sleep
733 *
734 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
735 * @condition evaluates to true. The @condition is checked each time
736 * the waitqueue @wq is woken up.
737 *
738 * wake_up() has to be called after changing any variable that could
739 * change the result of the wait condition.
740 *
741 * This is supposed to be called while holding the lock. The lock is
742 * dropped before invoking the cmd and going to sleep and is reacquired
743 * afterwards.
744 */
745#define wait_event_lock_irq_cmd(wq, condition, lock, cmd) \
746do { \
747 if (condition) \
748 break; \
749 __wait_event_lock_irq(wq, condition, lock, cmd); \
750} while (0)
751
752/**
753 * wait_event_lock_irq - sleep until a condition gets true. The
754 * condition is checked under the lock. This
755 * is expected to be called with the lock
756 * taken.
757 * @wq: the waitqueue to wait on
758 * @condition: a C expression for the event to wait for
759 * @lock: a locked spinlock_t, which will be released before schedule()
760 * and reacquired afterwards.
761 *
762 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
763 * @condition evaluates to true. The @condition is checked each time
764 * the waitqueue @wq is woken up.
765 *
766 * wake_up() has to be called after changing any variable that could
767 * change the result of the wait condition.
768 *
769 * This is supposed to be called while holding the lock. The lock is
770 * dropped before going to sleep and is reacquired afterwards.
771 */
772#define wait_event_lock_irq(wq, condition, lock) \
773do { \
774 if (condition) \
775 break; \
776 __wait_event_lock_irq(wq, condition, lock, ); \
777} while (0)
778
779
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200780#define __wait_event_interruptible_lock_irq(wq, condition, lock, cmd) \
Ingo Molnarfb869b62013-10-04 10:24:49 +0200781 ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 0, 0, \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200782 spin_unlock_irq(&lock); \
783 cmd; \
784 schedule(); \
Peter Zijlstra8fbd88f2013-10-02 11:22:28 +0200785 spin_lock_irq(&lock))
Lukas Czernereed8c022012-11-30 11:42:40 +0100786
787/**
788 * wait_event_interruptible_lock_irq_cmd - sleep until a condition gets true.
789 * The condition is checked under the lock. This is expected to
790 * be called with the lock taken.
791 * @wq: the waitqueue to wait on
792 * @condition: a C expression for the event to wait for
793 * @lock: a locked spinlock_t, which will be released before cmd and
794 * schedule() and reacquired afterwards.
795 * @cmd: a command which is invoked outside the critical section before
796 * sleep
797 *
798 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
799 * @condition evaluates to true or a signal is received. The @condition is
800 * checked each time the waitqueue @wq is woken up.
801 *
802 * wake_up() has to be called after changing any variable that could
803 * change the result of the wait condition.
804 *
805 * This is supposed to be called while holding the lock. The lock is
806 * dropped before invoking the cmd and going to sleep and is reacquired
807 * afterwards.
808 *
809 * The macro will return -ERESTARTSYS if it was interrupted by a signal
810 * and 0 if @condition evaluated to true.
811 */
812#define wait_event_interruptible_lock_irq_cmd(wq, condition, lock, cmd) \
813({ \
814 int __ret = 0; \
Lukas Czernereed8c022012-11-30 11:42:40 +0100815 if (!(condition)) \
Ingo Molnarfb869b62013-10-04 10:24:49 +0200816 __ret = __wait_event_interruptible_lock_irq(wq, \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200817 condition, lock, cmd); \
Lukas Czernereed8c022012-11-30 11:42:40 +0100818 __ret; \
819})
820
821/**
822 * wait_event_interruptible_lock_irq - sleep until a condition gets true.
823 * The condition is checked under the lock. This is expected
824 * to be called with the lock taken.
825 * @wq: the waitqueue to wait on
826 * @condition: a C expression for the event to wait for
827 * @lock: a locked spinlock_t, which will be released before schedule()
828 * and reacquired afterwards.
829 *
830 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
831 * @condition evaluates to true or signal is received. The @condition is
832 * checked each time the waitqueue @wq is woken up.
833 *
834 * wake_up() has to be called after changing any variable that could
835 * change the result of the wait condition.
836 *
837 * This is supposed to be called while holding the lock. The lock is
838 * dropped before going to sleep and is reacquired afterwards.
839 *
840 * The macro will return -ERESTARTSYS if it was interrupted by a signal
841 * and 0 if @condition evaluated to true.
842 */
843#define wait_event_interruptible_lock_irq(wq, condition, lock) \
844({ \
845 int __ret = 0; \
Lukas Czernereed8c022012-11-30 11:42:40 +0100846 if (!(condition)) \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200847 __ret = __wait_event_interruptible_lock_irq(wq, \
Thierry Reding92ec1182013-10-23 13:40:55 +0200848 condition, lock,); \
Lukas Czernereed8c022012-11-30 11:42:40 +0100849 __ret; \
850})
851
Ingo Molnarfb869b62013-10-04 10:24:49 +0200852#define __wait_event_interruptible_lock_irq_timeout(wq, condition, \
853 lock, timeout) \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200854 ___wait_event(wq, ___wait_cond_timeout(condition), \
Heiko Carstens7d716452013-10-31 12:48:14 +0100855 TASK_INTERRUPTIBLE, 0, timeout, \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200856 spin_unlock_irq(&lock); \
857 __ret = schedule_timeout(__ret); \
Peter Zijlstraa1dc68522013-10-02 11:22:29 +0200858 spin_lock_irq(&lock));
Martin Peschked79ff142013-08-22 17:45:36 +0200859
860/**
Ingo Molnarfb869b62013-10-04 10:24:49 +0200861 * wait_event_interruptible_lock_irq_timeout - sleep until a condition gets
862 * true or a timeout elapses. The condition is checked under
863 * the lock. This is expected to be called with the lock taken.
Martin Peschked79ff142013-08-22 17:45:36 +0200864 * @wq: the waitqueue to wait on
865 * @condition: a C expression for the event to wait for
866 * @lock: a locked spinlock_t, which will be released before schedule()
867 * and reacquired afterwards.
868 * @timeout: timeout, in jiffies
869 *
870 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
871 * @condition evaluates to true or signal is received. The @condition is
872 * checked each time the waitqueue @wq is woken up.
873 *
874 * wake_up() has to be called after changing any variable that could
875 * change the result of the wait condition.
876 *
877 * This is supposed to be called while holding the lock. The lock is
878 * dropped before going to sleep and is reacquired afterwards.
879 *
880 * The function returns 0 if the @timeout elapsed, -ERESTARTSYS if it
881 * was interrupted by a signal, and the remaining jiffies otherwise
882 * if the condition evaluated to true before the timeout elapsed.
883 */
884#define wait_event_interruptible_lock_irq_timeout(wq, condition, lock, \
885 timeout) \
886({ \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200887 long __ret = timeout; \
Oleg Nesterov89229152013-10-07 20:31:06 +0200888 if (!___wait_cond_timeout(condition)) \
Peter Zijlstra35a2af92013-10-02 11:22:33 +0200889 __ret = __wait_event_interruptible_lock_irq_timeout( \
890 wq, condition, lock, timeout); \
Martin Peschked79ff142013-08-22 17:45:36 +0200891 __ret; \
892})
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894/*
895 * Waitqueues which are removed from the waitqueue_head at wakeup time
896 */
Harvey Harrisonb3c97522008-02-13 15:03:15 -0800897void prepare_to_wait(wait_queue_head_t *q, wait_queue_t *wait, int state);
898void prepare_to_wait_exclusive(wait_queue_head_t *q, wait_queue_t *wait, int state);
Oleg Nesterovc2d81642013-10-07 18:18:24 +0200899long prepare_to_wait_event(wait_queue_head_t *q, wait_queue_t *wait, int state);
Harvey Harrisonb3c97522008-02-13 15:03:15 -0800900void finish_wait(wait_queue_head_t *q, wait_queue_t *wait);
Ingo Molnarfb869b62013-10-04 10:24:49 +0200901void abort_exclusive_wait(wait_queue_head_t *q, wait_queue_t *wait, unsigned int mode, void *key);
Peter Zijlstra61ada522014-09-24 10:18:47 +0200902long wait_woken(wait_queue_t *wait, unsigned mode, long timeout);
903int woken_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904int autoremove_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key);
905int wake_bit_function(wait_queue_t *wait, unsigned mode, int sync, void *key);
906
Eric Dumazetbf368e42009-04-28 02:24:21 -0700907#define DEFINE_WAIT_FUNC(name, function) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 wait_queue_t name = { \
Benjamin LaHaisec43dc2f2005-06-23 00:10:27 -0700909 .private = current, \
Eric Dumazetbf368e42009-04-28 02:24:21 -0700910 .func = function, \
blaisorblade@yahoo.it7e43c842005-05-25 01:31:42 +0200911 .task_list = LIST_HEAD_INIT((name).task_list), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 }
913
Eric Dumazetbf368e42009-04-28 02:24:21 -0700914#define DEFINE_WAIT(name) DEFINE_WAIT_FUNC(name, autoremove_wake_function)
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916#define DEFINE_WAIT_BIT(name, word, bit) \
917 struct wait_bit_queue name = { \
918 .key = __WAIT_BIT_KEY_INITIALIZER(word, bit), \
919 .wait = { \
Benjamin LaHaisec43dc2f2005-06-23 00:10:27 -0700920 .private = current, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 .func = wake_bit_function, \
922 .task_list = \
923 LIST_HEAD_INIT((name).wait.task_list), \
924 }, \
925 }
926
927#define init_wait(wait) \
928 do { \
Benjamin LaHaisec43dc2f2005-06-23 00:10:27 -0700929 (wait)->private = current; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 (wait)->func = autoremove_wake_function; \
931 INIT_LIST_HEAD(&(wait)->task_list); \
Evgeny Kuznetsov231d0ae2010-10-05 12:47:57 +0400932 (wait)->flags = 0; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 } while (0)
934
NeilBrown74316202014-07-07 15:16:04 +1000935
NeilBrownc1221322014-07-07 15:16:04 +1000936extern int bit_wait(struct wait_bit_key *);
937extern int bit_wait_io(struct wait_bit_key *);
NeilBrowncbbce822014-09-25 13:55:19 +1000938extern int bit_wait_timeout(struct wait_bit_key *);
939extern int bit_wait_io_timeout(struct wait_bit_key *);
NeilBrown74316202014-07-07 15:16:04 +1000940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941/**
942 * wait_on_bit - wait for a bit to be cleared
943 * @word: the word being waited on, a kernel virtual address
944 * @bit: the bit of the word being waited on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 * @mode: the task state to sleep in
946 *
947 * There is a standard hashed waitqueue table for generic use. This
948 * is the part of the hashtable's accessor API that waits on a bit.
949 * For instance, if one were to have waiters on a bitflag, one would
950 * call wait_on_bit() in threads waiting for the bit to clear.
951 * One uses wait_on_bit() where one is waiting for the bit to clear,
952 * but has no intention of setting it.
NeilBrown74316202014-07-07 15:16:04 +1000953 * Returned value will be zero if the bit was cleared, or non-zero
954 * if the process received a signal and the mode permitted wakeup
955 * on that signal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 */
Ingo Molnarfb869b62013-10-04 10:24:49 +0200957static inline int
NeilBrown74316202014-07-07 15:16:04 +1000958wait_on_bit(void *word, int bit, unsigned mode)
959{
Peter Zijlstrae22b8862014-09-24 10:18:48 +0200960 might_sleep();
NeilBrown74316202014-07-07 15:16:04 +1000961 if (!test_bit(bit, word))
962 return 0;
963 return out_of_line_wait_on_bit(word, bit,
964 bit_wait,
965 mode);
966}
967
968/**
969 * wait_on_bit_io - wait for a bit to be cleared
970 * @word: the word being waited on, a kernel virtual address
971 * @bit: the bit of the word being waited on
972 * @mode: the task state to sleep in
973 *
974 * Use the standard hashed waitqueue table to wait for a bit
975 * to be cleared. This is similar to wait_on_bit(), but calls
976 * io_schedule() instead of schedule() for the actual waiting.
977 *
978 * Returned value will be zero if the bit was cleared, or non-zero
979 * if the process received a signal and the mode permitted wakeup
980 * on that signal.
981 */
982static inline int
983wait_on_bit_io(void *word, int bit, unsigned mode)
984{
Peter Zijlstrae22b8862014-09-24 10:18:48 +0200985 might_sleep();
NeilBrown74316202014-07-07 15:16:04 +1000986 if (!test_bit(bit, word))
987 return 0;
988 return out_of_line_wait_on_bit(word, bit,
989 bit_wait_io,
990 mode);
991}
992
993/**
994 * wait_on_bit_action - wait for a bit to be cleared
995 * @word: the word being waited on, a kernel virtual address
996 * @bit: the bit of the word being waited on
997 * @action: the function used to sleep, which may take special actions
998 * @mode: the task state to sleep in
999 *
1000 * Use the standard hashed waitqueue table to wait for a bit
1001 * to be cleared, and allow the waiting action to be specified.
1002 * This is like wait_on_bit() but allows fine control of how the waiting
1003 * is done.
1004 *
1005 * Returned value will be zero if the bit was cleared, or non-zero
1006 * if the process received a signal and the mode permitted wakeup
1007 * on that signal.
1008 */
1009static inline int
NeilBrownc1221322014-07-07 15:16:04 +10001010wait_on_bit_action(void *word, int bit, wait_bit_action_f *action, unsigned mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
Peter Zijlstrae22b8862014-09-24 10:18:48 +02001012 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 if (!test_bit(bit, word))
1014 return 0;
1015 return out_of_line_wait_on_bit(word, bit, action, mode);
1016}
1017
1018/**
1019 * wait_on_bit_lock - wait for a bit to be cleared, when wanting to set it
1020 * @word: the word being waited on, a kernel virtual address
1021 * @bit: the bit of the word being waited on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 * @mode: the task state to sleep in
1023 *
1024 * There is a standard hashed waitqueue table for generic use. This
1025 * is the part of the hashtable's accessor API that waits on a bit
1026 * when one intends to set it, for instance, trying to lock bitflags.
1027 * For instance, if one were to have waiters trying to set bitflag
1028 * and waiting for it to clear before setting it, one would call
1029 * wait_on_bit() in threads waiting to be able to set the bit.
1030 * One uses wait_on_bit_lock() where one is waiting for the bit to
1031 * clear with the intention of setting it, and when done, clearing it.
NeilBrown74316202014-07-07 15:16:04 +10001032 *
1033 * Returns zero if the bit was (eventually) found to be clear and was
1034 * set. Returns non-zero if a signal was delivered to the process and
1035 * the @mode allows that signal to wake the process.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 */
Ingo Molnarfb869b62013-10-04 10:24:49 +02001037static inline int
NeilBrown74316202014-07-07 15:16:04 +10001038wait_on_bit_lock(void *word, int bit, unsigned mode)
1039{
Peter Zijlstrae22b8862014-09-24 10:18:48 +02001040 might_sleep();
NeilBrown74316202014-07-07 15:16:04 +10001041 if (!test_and_set_bit(bit, word))
1042 return 0;
1043 return out_of_line_wait_on_bit_lock(word, bit, bit_wait, mode);
1044}
1045
1046/**
1047 * wait_on_bit_lock_io - wait for a bit to be cleared, when wanting to set it
1048 * @word: the word being waited on, a kernel virtual address
1049 * @bit: the bit of the word being waited on
1050 * @mode: the task state to sleep in
1051 *
1052 * Use the standard hashed waitqueue table to wait for a bit
1053 * to be cleared and then to atomically set it. This is similar
1054 * to wait_on_bit(), but calls io_schedule() instead of schedule()
1055 * for the actual waiting.
1056 *
1057 * Returns zero if the bit was (eventually) found to be clear and was
1058 * set. Returns non-zero if a signal was delivered to the process and
1059 * the @mode allows that signal to wake the process.
1060 */
1061static inline int
1062wait_on_bit_lock_io(void *word, int bit, unsigned mode)
1063{
Peter Zijlstrae22b8862014-09-24 10:18:48 +02001064 might_sleep();
NeilBrown74316202014-07-07 15:16:04 +10001065 if (!test_and_set_bit(bit, word))
1066 return 0;
1067 return out_of_line_wait_on_bit_lock(word, bit, bit_wait_io, mode);
1068}
1069
1070/**
1071 * wait_on_bit_lock_action - wait for a bit to be cleared, when wanting to set it
1072 * @word: the word being waited on, a kernel virtual address
1073 * @bit: the bit of the word being waited on
1074 * @action: the function used to sleep, which may take special actions
1075 * @mode: the task state to sleep in
1076 *
1077 * Use the standard hashed waitqueue table to wait for a bit
1078 * to be cleared and then to set it, and allow the waiting action
1079 * to be specified.
1080 * This is like wait_on_bit() but allows fine control of how the waiting
1081 * is done.
1082 *
1083 * Returns zero if the bit was (eventually) found to be clear and was
1084 * set. Returns non-zero if a signal was delivered to the process and
1085 * the @mode allows that signal to wake the process.
1086 */
1087static inline int
NeilBrownc1221322014-07-07 15:16:04 +10001088wait_on_bit_lock_action(void *word, int bit, wait_bit_action_f *action, unsigned mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
Peter Zijlstrae22b8862014-09-24 10:18:48 +02001090 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 if (!test_and_set_bit(bit, word))
1092 return 0;
1093 return out_of_line_wait_on_bit_lock(word, bit, action, mode);
1094}
David Howellscb655372013-05-10 19:50:26 +01001095
1096/**
1097 * wait_on_atomic_t - Wait for an atomic_t to become 0
1098 * @val: The atomic value being waited on, a kernel virtual address
1099 * @action: the function used to sleep, which may take special actions
1100 * @mode: the task state to sleep in
1101 *
1102 * Wait for an atomic_t to become 0. We abuse the bit-wait waitqueue table for
1103 * the purpose of getting a waitqueue, but we set the key to a bit number
1104 * outside of the target 'word'.
1105 */
1106static inline
1107int wait_on_atomic_t(atomic_t *val, int (*action)(atomic_t *), unsigned mode)
1108{
Peter Zijlstrae22b8862014-09-24 10:18:48 +02001109 might_sleep();
David Howellscb655372013-05-10 19:50:26 +01001110 if (atomic_read(val) == 0)
1111 return 0;
1112 return out_of_line_wait_on_atomic_t(val, action, mode);
1113}
Ingo Molnarfb869b62013-10-04 10:24:49 +02001114
1115#endif /* _LINUX_WAIT_H */