Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_WAIT_H |
| 2 | #define _LINUX_WAIT_H |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 3 | /* |
| 4 | * Linux wait queue related types and methods |
| 5 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | #include <linux/list.h> |
| 7 | #include <linux/stddef.h> |
| 8 | #include <linux/spinlock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <asm/current.h> |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 10 | #include <uapi/linux/wait.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
| 12 | typedef struct __wait_queue wait_queue_t; |
Peter Zijlstra | 7d47872 | 2009-09-14 19:55:44 +0200 | [diff] [blame] | 13 | typedef int (*wait_queue_func_t)(wait_queue_t *wait, unsigned mode, int flags, void *key); |
| 14 | int default_wake_function(wait_queue_t *wait, unsigned mode, int flags, void *key); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | |
Peter Zijlstra | 61ada52 | 2014-09-24 10:18:47 +0200 | [diff] [blame] | 16 | /* __wait_queue::flags */ |
| 17 | #define WQ_FLAG_EXCLUSIVE 0x01 |
| 18 | #define WQ_FLAG_WOKEN 0x02 |
| 19 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | struct __wait_queue { |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 21 | unsigned int flags; |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 22 | void *private; |
| 23 | wait_queue_func_t func; |
| 24 | struct list_head task_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | }; |
| 26 | |
| 27 | struct wait_bit_key { |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 28 | void *flags; |
| 29 | int bit_nr; |
| 30 | #define WAIT_ATOMIC_T_BIT_NR -1 |
NeilBrown | cbbce82 | 2014-09-25 13:55:19 +1000 | [diff] [blame] | 31 | unsigned long timeout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | }; |
| 33 | |
| 34 | struct wait_bit_queue { |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 35 | struct wait_bit_key key; |
| 36 | wait_queue_t wait; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | }; |
| 38 | |
| 39 | struct __wait_queue_head { |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 40 | spinlock_t lock; |
| 41 | struct list_head task_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | }; |
| 43 | typedef struct __wait_queue_head wait_queue_head_t; |
| 44 | |
Tim Schmielau | 8c65b4a | 2005-11-07 00:59:43 -0800 | [diff] [blame] | 45 | struct task_struct; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
| 47 | /* |
| 48 | * Macros for declaration and initialisaton of the datatypes |
| 49 | */ |
| 50 | |
| 51 | #define __WAITQUEUE_INITIALIZER(name, tsk) { \ |
Benjamin LaHaise | c43dc2f | 2005-06-23 00:10:27 -0700 | [diff] [blame] | 52 | .private = tsk, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | .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 Molnar | e4d9191 | 2006-07-03 00:24:34 -0700 | [diff] [blame] | 60 | .lock = __SPIN_LOCK_UNLOCKED(name.lock), \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | .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 Howells | cb65537 | 2013-05-10 19:50:26 +0100 | [diff] [blame] | 69 | #define __WAIT_ATOMIC_T_KEY_INITIALIZER(p) \ |
| 70 | { .flags = p, .bit_nr = WAIT_ATOMIC_T_BIT_NR, } |
| 71 | |
Peter Zijlstra | f07fdec | 2011-12-13 13:20:54 +0100 | [diff] [blame] | 72 | extern void __init_waitqueue_head(wait_queue_head_t *q, const char *name, struct lock_class_key *); |
Peter Zijlstra | 2fc3911 | 2009-08-10 12:33:05 +0100 | [diff] [blame] | 73 | |
| 74 | #define init_waitqueue_head(q) \ |
| 75 | do { \ |
| 76 | static struct lock_class_key __key; \ |
| 77 | \ |
Peter Zijlstra | f07fdec | 2011-12-13 13:20:54 +0100 | [diff] [blame] | 78 | __init_waitqueue_head((q), #q, &__key); \ |
Peter Zijlstra | 2fc3911 | 2009-08-10 12:33:05 +0100 | [diff] [blame] | 79 | } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | |
Peter Zijlstra | 7259f0d | 2006-10-29 22:46:36 -0800 | [diff] [blame] | 81 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | static inline void init_waitqueue_entry(wait_queue_t *q, struct task_struct *p) |
| 91 | { |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 92 | q->flags = 0; |
| 93 | q->private = p; |
| 94 | q->func = default_wake_function; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | } |
| 96 | |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 97 | static inline void |
| 98 | init_waitqueue_func_entry(wait_queue_t *q, wait_queue_func_t func) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | { |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 100 | q->flags = 0; |
| 101 | q->private = NULL; |
| 102 | q->func = func; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | static inline int waitqueue_active(wait_queue_head_t *q) |
| 106 | { |
| 107 | return !list_empty(&q->task_list); |
| 108 | } |
| 109 | |
Herbert Xu | 1ce0bf5 | 2015-11-26 13:55:39 +0800 | [diff] [blame] | 110 | /** |
| 111 | * wq_has_sleeper - check if there are any waiting processes |
| 112 | * @wq: wait queue head |
| 113 | * |
| 114 | * Returns true if wq has waiting processes |
| 115 | * |
| 116 | * Please refer to the comment for waitqueue_active. |
| 117 | */ |
| 118 | static inline bool wq_has_sleeper(wait_queue_head_t *wq) |
| 119 | { |
| 120 | /* |
| 121 | * We need to be sure we are in sync with the |
| 122 | * add_wait_queue modifications to the wait queue. |
| 123 | * |
| 124 | * This memory barrier should be paired with one on the |
| 125 | * waiting side. |
| 126 | */ |
| 127 | smp_mb(); |
| 128 | return waitqueue_active(wq); |
| 129 | } |
| 130 | |
Harvey Harrison | b3c9752 | 2008-02-13 15:03:15 -0800 | [diff] [blame] | 131 | extern void add_wait_queue(wait_queue_head_t *q, wait_queue_t *wait); |
| 132 | extern void add_wait_queue_exclusive(wait_queue_head_t *q, wait_queue_t *wait); |
| 133 | extern void remove_wait_queue(wait_queue_head_t *q, wait_queue_t *wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
| 135 | static inline void __add_wait_queue(wait_queue_head_t *head, wait_queue_t *new) |
| 136 | { |
| 137 | list_add(&new->task_list, &head->task_list); |
| 138 | } |
| 139 | |
| 140 | /* |
| 141 | * Used for wake-one threads: |
| 142 | */ |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 143 | static inline void |
| 144 | __add_wait_queue_exclusive(wait_queue_head_t *q, wait_queue_t *wait) |
Changli Gao | a93d2f1 | 2010-05-07 14:33:26 +0800 | [diff] [blame] | 145 | { |
| 146 | wait->flags |= WQ_FLAG_EXCLUSIVE; |
| 147 | __add_wait_queue(q, wait); |
| 148 | } |
| 149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | static inline void __add_wait_queue_tail(wait_queue_head_t *head, |
Changli Gao | a93d2f1 | 2010-05-07 14:33:26 +0800 | [diff] [blame] | 151 | wait_queue_t *new) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | { |
| 153 | list_add_tail(&new->task_list, &head->task_list); |
| 154 | } |
| 155 | |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 156 | static inline void |
| 157 | __add_wait_queue_tail_exclusive(wait_queue_head_t *q, wait_queue_t *wait) |
Changli Gao | a93d2f1 | 2010-05-07 14:33:26 +0800 | [diff] [blame] | 158 | { |
| 159 | wait->flags |= WQ_FLAG_EXCLUSIVE; |
| 160 | __add_wait_queue_tail(q, wait); |
| 161 | } |
| 162 | |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 163 | static inline void |
| 164 | __remove_wait_queue(wait_queue_head_t *head, wait_queue_t *old) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | { |
| 166 | list_del(&old->task_list); |
| 167 | } |
| 168 | |
NeilBrown | c122132 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 169 | typedef int wait_bit_action_f(struct wait_bit_key *); |
Harvey Harrison | b3c9752 | 2008-02-13 15:03:15 -0800 | [diff] [blame] | 170 | void __wake_up(wait_queue_head_t *q, unsigned int mode, int nr, void *key); |
Andrea Arcangeli | ac5be6b | 2015-09-22 14:58:49 -0700 | [diff] [blame] | 171 | void __wake_up_locked_key(wait_queue_head_t *q, unsigned int mode, void *key); |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 172 | void __wake_up_sync_key(wait_queue_head_t *q, unsigned int mode, int nr, void *key); |
Thomas Gleixner | 63b2001 | 2011-12-01 00:04:00 +0100 | [diff] [blame] | 173 | void __wake_up_locked(wait_queue_head_t *q, unsigned int mode, int nr); |
Davide Libenzi | 4ede816 | 2009-03-31 15:24:20 -0700 | [diff] [blame] | 174 | void __wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr); |
Harvey Harrison | b3c9752 | 2008-02-13 15:03:15 -0800 | [diff] [blame] | 175 | void __wake_up_bit(wait_queue_head_t *, void *, int); |
NeilBrown | c122132 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 176 | int __wait_on_bit(wait_queue_head_t *, struct wait_bit_queue *, wait_bit_action_f *, unsigned); |
| 177 | int __wait_on_bit_lock(wait_queue_head_t *, struct wait_bit_queue *, wait_bit_action_f *, unsigned); |
Harvey Harrison | b3c9752 | 2008-02-13 15:03:15 -0800 | [diff] [blame] | 178 | void wake_up_bit(void *, int); |
David Howells | cb65537 | 2013-05-10 19:50:26 +0100 | [diff] [blame] | 179 | void wake_up_atomic_t(atomic_t *); |
NeilBrown | c122132 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 180 | int out_of_line_wait_on_bit(void *, int, wait_bit_action_f *, unsigned); |
NeilBrown | cbbce82 | 2014-09-25 13:55:19 +1000 | [diff] [blame] | 181 | int out_of_line_wait_on_bit_timeout(void *, int, wait_bit_action_f *, unsigned, unsigned long); |
NeilBrown | c122132 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 182 | int out_of_line_wait_on_bit_lock(void *, int, wait_bit_action_f *, unsigned); |
David Howells | cb65537 | 2013-05-10 19:50:26 +0100 | [diff] [blame] | 183 | int out_of_line_wait_on_atomic_t(atomic_t *, int (*)(atomic_t *), unsigned); |
Harvey Harrison | b3c9752 | 2008-02-13 15:03:15 -0800 | [diff] [blame] | 184 | wait_queue_head_t *bit_waitqueue(void *, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | |
Matthew Wilcox | e64d66c | 2007-12-06 17:34:36 -0500 | [diff] [blame] | 186 | #define wake_up(x) __wake_up(x, TASK_NORMAL, 1, NULL) |
| 187 | #define wake_up_nr(x, nr) __wake_up(x, TASK_NORMAL, nr, NULL) |
| 188 | #define wake_up_all(x) __wake_up(x, TASK_NORMAL, 0, NULL) |
Thomas Gleixner | 63b2001 | 2011-12-01 00:04:00 +0100 | [diff] [blame] | 189 | #define wake_up_locked(x) __wake_up_locked((x), TASK_NORMAL, 1) |
| 190 | #define wake_up_all_locked(x) __wake_up_locked((x), TASK_NORMAL, 0) |
Matthew Wilcox | e64d66c | 2007-12-06 17:34:36 -0500 | [diff] [blame] | 191 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | #define wake_up_interruptible(x) __wake_up(x, TASK_INTERRUPTIBLE, 1, NULL) |
| 193 | #define wake_up_interruptible_nr(x, nr) __wake_up(x, TASK_INTERRUPTIBLE, nr, NULL) |
| 194 | #define wake_up_interruptible_all(x) __wake_up(x, TASK_INTERRUPTIBLE, 0, NULL) |
Matthew Wilcox | e64d66c | 2007-12-06 17:34:36 -0500 | [diff] [blame] | 195 | #define wake_up_interruptible_sync(x) __wake_up_sync((x), TASK_INTERRUPTIBLE, 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | |
Peter Zijlstra | 0ccf831 | 2008-02-04 22:27:20 -0800 | [diff] [blame] | 197 | /* |
Davide Libenzi | c0da377 | 2009-03-31 15:24:20 -0700 | [diff] [blame] | 198 | * Wakeup macros to be used to report events to the targets. |
Peter Zijlstra | 0ccf831 | 2008-02-04 22:27:20 -0800 | [diff] [blame] | 199 | */ |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 200 | #define wake_up_poll(x, m) \ |
Davide Libenzi | c0da377 | 2009-03-31 15:24:20 -0700 | [diff] [blame] | 201 | __wake_up(x, TASK_NORMAL, 1, (void *) (m)) |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 202 | #define wake_up_locked_poll(x, m) \ |
Andrea Arcangeli | ac5be6b | 2015-09-22 14:58:49 -0700 | [diff] [blame] | 203 | __wake_up_locked_key((x), TASK_NORMAL, (void *) (m)) |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 204 | #define wake_up_interruptible_poll(x, m) \ |
Davide Libenzi | c0da377 | 2009-03-31 15:24:20 -0700 | [diff] [blame] | 205 | __wake_up(x, TASK_INTERRUPTIBLE, 1, (void *) (m)) |
| 206 | #define wake_up_interruptible_sync_poll(x, m) \ |
| 207 | __wake_up_sync_key((x), TASK_INTERRUPTIBLE, 1, (void *) (m)) |
Peter Zijlstra | 0ccf831 | 2008-02-04 22:27:20 -0800 | [diff] [blame] | 208 | |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 209 | #define ___wait_cond_timeout(condition) \ |
Peter Zijlstra | 2953ef2 | 2013-10-02 11:22:19 +0200 | [diff] [blame] | 210 | ({ \ |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 211 | bool __cond = (condition); \ |
| 212 | if (__cond && !__ret) \ |
| 213 | __ret = 1; \ |
| 214 | __cond || !__ret; \ |
Peter Zijlstra | 2953ef2 | 2013-10-02 11:22:19 +0200 | [diff] [blame] | 215 | }) |
| 216 | |
Oleg Nesterov | c2d8164 | 2013-10-07 18:18:24 +0200 | [diff] [blame] | 217 | #define ___wait_is_interruptible(state) \ |
| 218 | (!__builtin_constant_p(state) || \ |
| 219 | state == TASK_INTERRUPTIBLE || state == TASK_KILLABLE) \ |
Peter Zijlstra | 41a1431 | 2013-10-02 11:22:21 +0200 | [diff] [blame] | 220 | |
Peter Zijlstra | 8b32201 | 2014-04-18 15:07:17 -0700 | [diff] [blame] | 221 | /* |
| 222 | * The below macro ___wait_event() has an explicit shadow of the __ret |
| 223 | * variable when used from the wait_event_*() macros. |
| 224 | * |
| 225 | * This is so that both can use the ___wait_cond_timeout() construct |
| 226 | * to wrap the condition. |
| 227 | * |
| 228 | * The type inconsistency of the wait_event_*() __ret variable is also |
| 229 | * on purpose; we use long where we can return timeout values and int |
| 230 | * otherwise. |
| 231 | */ |
| 232 | |
Peter Zijlstra | 41a1431 | 2013-10-02 11:22:21 +0200 | [diff] [blame] | 233 | #define ___wait_event(wq, condition, state, exclusive, ret, cmd) \ |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 234 | ({ \ |
Peter Zijlstra | 41a1431 | 2013-10-02 11:22:21 +0200 | [diff] [blame] | 235 | __label__ __out; \ |
Oleg Nesterov | c2d8164 | 2013-10-07 18:18:24 +0200 | [diff] [blame] | 236 | wait_queue_t __wait; \ |
Peter Zijlstra | 8b32201 | 2014-04-18 15:07:17 -0700 | [diff] [blame] | 237 | long __ret = ret; /* explicit shadow */ \ |
Peter Zijlstra | 41a1431 | 2013-10-02 11:22:21 +0200 | [diff] [blame] | 238 | \ |
Oleg Nesterov | c2d8164 | 2013-10-07 18:18:24 +0200 | [diff] [blame] | 239 | INIT_LIST_HEAD(&__wait.task_list); \ |
| 240 | if (exclusive) \ |
| 241 | __wait.flags = WQ_FLAG_EXCLUSIVE; \ |
| 242 | else \ |
| 243 | __wait.flags = 0; \ |
| 244 | \ |
Peter Zijlstra | 41a1431 | 2013-10-02 11:22:21 +0200 | [diff] [blame] | 245 | for (;;) { \ |
Oleg Nesterov | c2d8164 | 2013-10-07 18:18:24 +0200 | [diff] [blame] | 246 | long __int = prepare_to_wait_event(&wq, &__wait, state);\ |
Peter Zijlstra | 41a1431 | 2013-10-02 11:22:21 +0200 | [diff] [blame] | 247 | \ |
| 248 | if (condition) \ |
| 249 | break; \ |
| 250 | \ |
Oleg Nesterov | c2d8164 | 2013-10-07 18:18:24 +0200 | [diff] [blame] | 251 | if (___wait_is_interruptible(state) && __int) { \ |
| 252 | __ret = __int; \ |
Peter Zijlstra | 41a1431 | 2013-10-02 11:22:21 +0200 | [diff] [blame] | 253 | if (exclusive) { \ |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 254 | abort_exclusive_wait(&wq, &__wait, \ |
| 255 | state, NULL); \ |
Peter Zijlstra | 41a1431 | 2013-10-02 11:22:21 +0200 | [diff] [blame] | 256 | goto __out; \ |
| 257 | } \ |
| 258 | break; \ |
| 259 | } \ |
| 260 | \ |
| 261 | cmd; \ |
| 262 | } \ |
| 263 | finish_wait(&wq, &__wait); \ |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 264 | __out: __ret; \ |
| 265 | }) |
Peter Zijlstra | 41a1431 | 2013-10-02 11:22:21 +0200 | [diff] [blame] | 266 | |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 267 | #define __wait_event(wq, condition) \ |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 268 | (void)___wait_event(wq, condition, TASK_UNINTERRUPTIBLE, 0, 0, \ |
| 269 | schedule()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | |
| 271 | /** |
| 272 | * wait_event - sleep until a condition gets true |
| 273 | * @wq: the waitqueue to wait on |
| 274 | * @condition: a C expression for the event to wait for |
| 275 | * |
| 276 | * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the |
| 277 | * @condition evaluates to true. The @condition is checked each time |
| 278 | * the waitqueue @wq is woken up. |
| 279 | * |
| 280 | * wake_up() has to be called after changing any variable that could |
| 281 | * change the result of the wait condition. |
| 282 | */ |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 283 | #define wait_event(wq, condition) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | do { \ |
Peter Zijlstra | e22b886 | 2014-09-24 10:18:48 +0200 | [diff] [blame] | 285 | might_sleep(); \ |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 286 | if (condition) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | break; \ |
| 288 | __wait_event(wq, condition); \ |
| 289 | } while (0) |
| 290 | |
Peter Zijlstra | 2c56124 | 2015-02-03 12:55:31 +0100 | [diff] [blame] | 291 | #define __io_wait_event(wq, condition) \ |
| 292 | (void)___wait_event(wq, condition, TASK_UNINTERRUPTIBLE, 0, 0, \ |
| 293 | io_schedule()) |
| 294 | |
| 295 | /* |
| 296 | * io_wait_event() -- like wait_event() but with io_schedule() |
| 297 | */ |
| 298 | #define io_wait_event(wq, condition) \ |
| 299 | do { \ |
| 300 | might_sleep(); \ |
| 301 | if (condition) \ |
| 302 | break; \ |
| 303 | __io_wait_event(wq, condition); \ |
| 304 | } while (0) |
| 305 | |
Peter Zijlstra | 36df04b | 2014-10-29 12:21:57 +0100 | [diff] [blame] | 306 | #define __wait_event_freezable(wq, condition) \ |
| 307 | ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 0, 0, \ |
| 308 | schedule(); try_to_freeze()) |
| 309 | |
| 310 | /** |
| 311 | * wait_event - sleep (or freeze) until a condition gets true |
| 312 | * @wq: the waitqueue to wait on |
| 313 | * @condition: a C expression for the event to wait for |
| 314 | * |
| 315 | * The process is put to sleep (TASK_INTERRUPTIBLE -- so as not to contribute |
| 316 | * to system load) until the @condition evaluates to true. The |
| 317 | * @condition is checked each time the waitqueue @wq is woken up. |
| 318 | * |
| 319 | * wake_up() has to be called after changing any variable that could |
| 320 | * change the result of the wait condition. |
| 321 | */ |
| 322 | #define wait_event_freezable(wq, condition) \ |
| 323 | ({ \ |
| 324 | int __ret = 0; \ |
| 325 | might_sleep(); \ |
| 326 | if (!(condition)) \ |
| 327 | __ret = __wait_event_freezable(wq, condition); \ |
| 328 | __ret; \ |
| 329 | }) |
| 330 | |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 331 | #define __wait_event_timeout(wq, condition, timeout) \ |
| 332 | ___wait_event(wq, ___wait_cond_timeout(condition), \ |
| 333 | TASK_UNINTERRUPTIBLE, 0, timeout, \ |
| 334 | __ret = schedule_timeout(__ret)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | |
| 336 | /** |
| 337 | * wait_event_timeout - sleep until a condition gets true or a timeout elapses |
| 338 | * @wq: the waitqueue to wait on |
| 339 | * @condition: a C expression for the event to wait for |
| 340 | * @timeout: timeout, in jiffies |
| 341 | * |
| 342 | * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the |
| 343 | * @condition evaluates to true. The @condition is checked each time |
| 344 | * the waitqueue @wq is woken up. |
| 345 | * |
| 346 | * wake_up() has to be called after changing any variable that could |
| 347 | * change the result of the wait condition. |
| 348 | * |
Scot Doyle | 6b44f51 | 2014-08-24 17:12:27 +0000 | [diff] [blame] | 349 | * Returns: |
| 350 | * 0 if the @condition evaluated to %false after the @timeout elapsed, |
| 351 | * 1 if the @condition evaluated to %true after the @timeout elapsed, |
| 352 | * or the remaining jiffies (at least 1) if the @condition evaluated |
| 353 | * to %true before the @timeout elapsed. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | */ |
| 355 | #define wait_event_timeout(wq, condition, timeout) \ |
| 356 | ({ \ |
| 357 | long __ret = timeout; \ |
Peter Zijlstra | e22b886 | 2014-09-24 10:18:48 +0200 | [diff] [blame] | 358 | might_sleep(); \ |
Oleg Nesterov | 8922915 | 2013-10-07 20:31:06 +0200 | [diff] [blame] | 359 | if (!___wait_cond_timeout(condition)) \ |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 360 | __ret = __wait_event_timeout(wq, condition, timeout); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | __ret; \ |
| 362 | }) |
| 363 | |
Peter Zijlstra | 36df04b | 2014-10-29 12:21:57 +0100 | [diff] [blame] | 364 | #define __wait_event_freezable_timeout(wq, condition, timeout) \ |
| 365 | ___wait_event(wq, ___wait_cond_timeout(condition), \ |
| 366 | TASK_INTERRUPTIBLE, 0, timeout, \ |
| 367 | __ret = schedule_timeout(__ret); try_to_freeze()) |
| 368 | |
| 369 | /* |
| 370 | * like wait_event_timeout() -- except it uses TASK_INTERRUPTIBLE to avoid |
| 371 | * increasing load and is freezable. |
| 372 | */ |
| 373 | #define wait_event_freezable_timeout(wq, condition, timeout) \ |
| 374 | ({ \ |
| 375 | long __ret = timeout; \ |
| 376 | might_sleep(); \ |
| 377 | if (!___wait_cond_timeout(condition)) \ |
| 378 | __ret = __wait_event_freezable_timeout(wq, condition, timeout); \ |
| 379 | __ret; \ |
| 380 | }) |
| 381 | |
Yuanhan Liu | 9f3520c | 2015-05-08 18:19:05 +1000 | [diff] [blame] | 382 | #define __wait_event_exclusive_cmd(wq, condition, cmd1, cmd2) \ |
| 383 | (void)___wait_event(wq, condition, TASK_UNINTERRUPTIBLE, 1, 0, \ |
| 384 | cmd1; schedule(); cmd2) |
| 385 | /* |
| 386 | * Just like wait_event_cmd(), except it sets exclusive flag |
| 387 | */ |
| 388 | #define wait_event_exclusive_cmd(wq, condition, cmd1, cmd2) \ |
| 389 | do { \ |
| 390 | if (condition) \ |
| 391 | break; \ |
| 392 | __wait_event_exclusive_cmd(wq, condition, cmd1, cmd2); \ |
| 393 | } while (0) |
| 394 | |
Shaohua Li | 82e06c8 | 2013-11-14 15:16:16 +1100 | [diff] [blame] | 395 | #define __wait_event_cmd(wq, condition, cmd1, cmd2) \ |
| 396 | (void)___wait_event(wq, condition, TASK_UNINTERRUPTIBLE, 0, 0, \ |
| 397 | cmd1; schedule(); cmd2) |
| 398 | |
| 399 | /** |
| 400 | * wait_event_cmd - sleep until a condition gets true |
| 401 | * @wq: the waitqueue to wait on |
| 402 | * @condition: a C expression for the event to wait for |
Masanari Iida | f434f7a | 2014-01-22 01:22:06 +0900 | [diff] [blame] | 403 | * @cmd1: the command will be executed before sleep |
| 404 | * @cmd2: the command will be executed after sleep |
Shaohua Li | 82e06c8 | 2013-11-14 15:16:16 +1100 | [diff] [blame] | 405 | * |
| 406 | * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the |
| 407 | * @condition evaluates to true. The @condition is checked each time |
| 408 | * the waitqueue @wq is woken up. |
| 409 | * |
| 410 | * wake_up() has to be called after changing any variable that could |
| 411 | * change the result of the wait condition. |
| 412 | */ |
| 413 | #define wait_event_cmd(wq, condition, cmd1, cmd2) \ |
| 414 | do { \ |
| 415 | if (condition) \ |
| 416 | break; \ |
| 417 | __wait_event_cmd(wq, condition, cmd1, cmd2); \ |
| 418 | } while (0) |
| 419 | |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 420 | #define __wait_event_interruptible(wq, condition) \ |
| 421 | ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 0, 0, \ |
Peter Zijlstra | f13f4c4 | 2013-10-02 11:22:24 +0200 | [diff] [blame] | 422 | schedule()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | |
| 424 | /** |
| 425 | * wait_event_interruptible - sleep until a condition gets true |
| 426 | * @wq: the waitqueue to wait on |
| 427 | * @condition: a C expression for the event to wait for |
| 428 | * |
| 429 | * The process is put to sleep (TASK_INTERRUPTIBLE) until the |
| 430 | * @condition evaluates to true or a signal is received. |
| 431 | * The @condition is checked each time the waitqueue @wq is woken up. |
| 432 | * |
| 433 | * wake_up() has to be called after changing any variable that could |
| 434 | * change the result of the wait condition. |
| 435 | * |
| 436 | * The function will return -ERESTARTSYS if it was interrupted by a |
| 437 | * signal and 0 if @condition evaluated to true. |
| 438 | */ |
| 439 | #define wait_event_interruptible(wq, condition) \ |
| 440 | ({ \ |
| 441 | int __ret = 0; \ |
Peter Zijlstra | e22b886 | 2014-09-24 10:18:48 +0200 | [diff] [blame] | 442 | might_sleep(); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | if (!(condition)) \ |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 444 | __ret = __wait_event_interruptible(wq, condition); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | __ret; \ |
| 446 | }) |
| 447 | |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 448 | #define __wait_event_interruptible_timeout(wq, condition, timeout) \ |
| 449 | ___wait_event(wq, ___wait_cond_timeout(condition), \ |
| 450 | TASK_INTERRUPTIBLE, 0, timeout, \ |
| 451 | __ret = schedule_timeout(__ret)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
| 453 | /** |
| 454 | * wait_event_interruptible_timeout - sleep until a condition gets true or a timeout elapses |
| 455 | * @wq: the waitqueue to wait on |
| 456 | * @condition: a C expression for the event to wait for |
| 457 | * @timeout: timeout, in jiffies |
| 458 | * |
| 459 | * The process is put to sleep (TASK_INTERRUPTIBLE) until the |
| 460 | * @condition evaluates to true or a signal is received. |
| 461 | * The @condition is checked each time the waitqueue @wq is woken up. |
| 462 | * |
| 463 | * wake_up() has to be called after changing any variable that could |
| 464 | * change the result of the wait condition. |
| 465 | * |
Imre Deak | 4c663cf | 2013-05-24 15:55:09 -0700 | [diff] [blame] | 466 | * Returns: |
Scot Doyle | 6b44f51 | 2014-08-24 17:12:27 +0000 | [diff] [blame] | 467 | * 0 if the @condition evaluated to %false after the @timeout elapsed, |
| 468 | * 1 if the @condition evaluated to %true after the @timeout elapsed, |
| 469 | * the remaining jiffies (at least 1) if the @condition evaluated |
| 470 | * to %true before the @timeout elapsed, or -%ERESTARTSYS if it was |
| 471 | * interrupted by a signal. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | */ |
| 473 | #define wait_event_interruptible_timeout(wq, condition, timeout) \ |
| 474 | ({ \ |
| 475 | long __ret = timeout; \ |
Peter Zijlstra | e22b886 | 2014-09-24 10:18:48 +0200 | [diff] [blame] | 476 | might_sleep(); \ |
Oleg Nesterov | 8922915 | 2013-10-07 20:31:06 +0200 | [diff] [blame] | 477 | if (!___wait_cond_timeout(condition)) \ |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 478 | __ret = __wait_event_interruptible_timeout(wq, \ |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 479 | condition, timeout); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | __ret; \ |
| 481 | }) |
| 482 | |
Kent Overstreet | 774a08b | 2013-05-07 16:18:43 -0700 | [diff] [blame] | 483 | #define __wait_event_hrtimeout(wq, condition, timeout, state) \ |
| 484 | ({ \ |
| 485 | int __ret = 0; \ |
Kent Overstreet | 774a08b | 2013-05-07 16:18:43 -0700 | [diff] [blame] | 486 | struct hrtimer_sleeper __t; \ |
| 487 | \ |
| 488 | hrtimer_init_on_stack(&__t.timer, CLOCK_MONOTONIC, \ |
| 489 | HRTIMER_MODE_REL); \ |
| 490 | hrtimer_init_sleeper(&__t, current); \ |
| 491 | if ((timeout).tv64 != KTIME_MAX) \ |
| 492 | hrtimer_start_range_ns(&__t.timer, timeout, \ |
| 493 | current->timer_slack_ns, \ |
| 494 | HRTIMER_MODE_REL); \ |
| 495 | \ |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 496 | __ret = ___wait_event(wq, condition, state, 0, 0, \ |
Kent Overstreet | 774a08b | 2013-05-07 16:18:43 -0700 | [diff] [blame] | 497 | if (!__t.task) { \ |
| 498 | __ret = -ETIME; \ |
| 499 | break; \ |
| 500 | } \ |
Peter Zijlstra | ebdc195 | 2013-10-02 11:22:32 +0200 | [diff] [blame] | 501 | schedule()); \ |
Kent Overstreet | 774a08b | 2013-05-07 16:18:43 -0700 | [diff] [blame] | 502 | \ |
| 503 | hrtimer_cancel(&__t.timer); \ |
| 504 | destroy_hrtimer_on_stack(&__t.timer); \ |
Kent Overstreet | 774a08b | 2013-05-07 16:18:43 -0700 | [diff] [blame] | 505 | __ret; \ |
| 506 | }) |
| 507 | |
| 508 | /** |
| 509 | * wait_event_hrtimeout - sleep until a condition gets true or a timeout elapses |
| 510 | * @wq: the waitqueue to wait on |
| 511 | * @condition: a C expression for the event to wait for |
| 512 | * @timeout: timeout, as a ktime_t |
| 513 | * |
| 514 | * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the |
| 515 | * @condition evaluates to true or a signal is received. |
| 516 | * The @condition is checked each time the waitqueue @wq is woken up. |
| 517 | * |
| 518 | * wake_up() has to be called after changing any variable that could |
| 519 | * change the result of the wait condition. |
| 520 | * |
| 521 | * The function returns 0 if @condition became true, or -ETIME if the timeout |
| 522 | * elapsed. |
| 523 | */ |
| 524 | #define wait_event_hrtimeout(wq, condition, timeout) \ |
| 525 | ({ \ |
| 526 | int __ret = 0; \ |
Peter Zijlstra | e22b886 | 2014-09-24 10:18:48 +0200 | [diff] [blame] | 527 | might_sleep(); \ |
Kent Overstreet | 774a08b | 2013-05-07 16:18:43 -0700 | [diff] [blame] | 528 | if (!(condition)) \ |
| 529 | __ret = __wait_event_hrtimeout(wq, condition, timeout, \ |
| 530 | TASK_UNINTERRUPTIBLE); \ |
| 531 | __ret; \ |
| 532 | }) |
| 533 | |
| 534 | /** |
| 535 | * wait_event_interruptible_hrtimeout - sleep until a condition gets true or a timeout elapses |
| 536 | * @wq: the waitqueue to wait on |
| 537 | * @condition: a C expression for the event to wait for |
| 538 | * @timeout: timeout, as a ktime_t |
| 539 | * |
| 540 | * The process is put to sleep (TASK_INTERRUPTIBLE) until the |
| 541 | * @condition evaluates to true or a signal is received. |
| 542 | * The @condition is checked each time the waitqueue @wq is woken up. |
| 543 | * |
| 544 | * wake_up() has to be called after changing any variable that could |
| 545 | * change the result of the wait condition. |
| 546 | * |
| 547 | * The function returns 0 if @condition became true, -ERESTARTSYS if it was |
| 548 | * interrupted by a signal, or -ETIME if the timeout elapsed. |
| 549 | */ |
| 550 | #define wait_event_interruptible_hrtimeout(wq, condition, timeout) \ |
| 551 | ({ \ |
| 552 | long __ret = 0; \ |
Peter Zijlstra | e22b886 | 2014-09-24 10:18:48 +0200 | [diff] [blame] | 553 | might_sleep(); \ |
Kent Overstreet | 774a08b | 2013-05-07 16:18:43 -0700 | [diff] [blame] | 554 | if (!(condition)) \ |
| 555 | __ret = __wait_event_hrtimeout(wq, condition, timeout, \ |
| 556 | TASK_INTERRUPTIBLE); \ |
| 557 | __ret; \ |
| 558 | }) |
| 559 | |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 560 | #define __wait_event_interruptible_exclusive(wq, condition) \ |
| 561 | ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 1, 0, \ |
Peter Zijlstra | 48c2521 | 2013-10-02 11:22:26 +0200 | [diff] [blame] | 562 | schedule()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | |
| 564 | #define wait_event_interruptible_exclusive(wq, condition) \ |
| 565 | ({ \ |
| 566 | int __ret = 0; \ |
Peter Zijlstra | e22b886 | 2014-09-24 10:18:48 +0200 | [diff] [blame] | 567 | might_sleep(); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | if (!(condition)) \ |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 569 | __ret = __wait_event_interruptible_exclusive(wq, condition);\ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | __ret; \ |
| 571 | }) |
| 572 | |
Michal Nazarewicz | 22c43c8 | 2010-05-05 12:53:11 +0200 | [diff] [blame] | 573 | |
Peter Zijlstra | 36df04b | 2014-10-29 12:21:57 +0100 | [diff] [blame] | 574 | #define __wait_event_freezable_exclusive(wq, condition) \ |
| 575 | ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 1, 0, \ |
| 576 | schedule(); try_to_freeze()) |
| 577 | |
| 578 | #define wait_event_freezable_exclusive(wq, condition) \ |
| 579 | ({ \ |
| 580 | int __ret = 0; \ |
| 581 | might_sleep(); \ |
| 582 | if (!(condition)) \ |
| 583 | __ret = __wait_event_freezable_exclusive(wq, condition);\ |
| 584 | __ret; \ |
| 585 | }) |
| 586 | |
| 587 | |
Michal Nazarewicz | 22c43c8 | 2010-05-05 12:53:11 +0200 | [diff] [blame] | 588 | #define __wait_event_interruptible_locked(wq, condition, exclusive, irq) \ |
| 589 | ({ \ |
| 590 | int __ret = 0; \ |
| 591 | DEFINE_WAIT(__wait); \ |
| 592 | if (exclusive) \ |
| 593 | __wait.flags |= WQ_FLAG_EXCLUSIVE; \ |
| 594 | do { \ |
| 595 | if (likely(list_empty(&__wait.task_list))) \ |
| 596 | __add_wait_queue_tail(&(wq), &__wait); \ |
| 597 | set_current_state(TASK_INTERRUPTIBLE); \ |
| 598 | if (signal_pending(current)) { \ |
| 599 | __ret = -ERESTARTSYS; \ |
| 600 | break; \ |
| 601 | } \ |
| 602 | if (irq) \ |
| 603 | spin_unlock_irq(&(wq).lock); \ |
| 604 | else \ |
| 605 | spin_unlock(&(wq).lock); \ |
| 606 | schedule(); \ |
| 607 | if (irq) \ |
| 608 | spin_lock_irq(&(wq).lock); \ |
| 609 | else \ |
| 610 | spin_lock(&(wq).lock); \ |
| 611 | } while (!(condition)); \ |
| 612 | __remove_wait_queue(&(wq), &__wait); \ |
| 613 | __set_current_state(TASK_RUNNING); \ |
| 614 | __ret; \ |
| 615 | }) |
| 616 | |
| 617 | |
| 618 | /** |
| 619 | * wait_event_interruptible_locked - sleep until a condition gets true |
| 620 | * @wq: the waitqueue to wait on |
| 621 | * @condition: a C expression for the event to wait for |
| 622 | * |
| 623 | * The process is put to sleep (TASK_INTERRUPTIBLE) until the |
| 624 | * @condition evaluates to true or a signal is received. |
| 625 | * The @condition is checked each time the waitqueue @wq is woken up. |
| 626 | * |
| 627 | * It must be called with wq.lock being held. This spinlock is |
| 628 | * unlocked while sleeping but @condition testing is done while lock |
| 629 | * is held and when this macro exits the lock is held. |
| 630 | * |
| 631 | * The lock is locked/unlocked using spin_lock()/spin_unlock() |
| 632 | * functions which must match the way they are locked/unlocked outside |
| 633 | * of this macro. |
| 634 | * |
| 635 | * wake_up_locked() has to be called after changing any variable that could |
| 636 | * change the result of the wait condition. |
| 637 | * |
| 638 | * The function will return -ERESTARTSYS if it was interrupted by a |
| 639 | * signal and 0 if @condition evaluated to true. |
| 640 | */ |
| 641 | #define wait_event_interruptible_locked(wq, condition) \ |
| 642 | ((condition) \ |
| 643 | ? 0 : __wait_event_interruptible_locked(wq, condition, 0, 0)) |
| 644 | |
| 645 | /** |
| 646 | * wait_event_interruptible_locked_irq - sleep until a condition gets true |
| 647 | * @wq: the waitqueue to wait on |
| 648 | * @condition: a C expression for the event to wait for |
| 649 | * |
| 650 | * The process is put to sleep (TASK_INTERRUPTIBLE) until the |
| 651 | * @condition evaluates to true or a signal is received. |
| 652 | * The @condition is checked each time the waitqueue @wq is woken up. |
| 653 | * |
| 654 | * It must be called with wq.lock being held. This spinlock is |
| 655 | * unlocked while sleeping but @condition testing is done while lock |
| 656 | * is held and when this macro exits the lock is held. |
| 657 | * |
| 658 | * The lock is locked/unlocked using spin_lock_irq()/spin_unlock_irq() |
| 659 | * functions which must match the way they are locked/unlocked outside |
| 660 | * of this macro. |
| 661 | * |
| 662 | * wake_up_locked() has to be called after changing any variable that could |
| 663 | * change the result of the wait condition. |
| 664 | * |
| 665 | * The function will return -ERESTARTSYS if it was interrupted by a |
| 666 | * signal and 0 if @condition evaluated to true. |
| 667 | */ |
| 668 | #define wait_event_interruptible_locked_irq(wq, condition) \ |
| 669 | ((condition) \ |
| 670 | ? 0 : __wait_event_interruptible_locked(wq, condition, 0, 1)) |
| 671 | |
| 672 | /** |
| 673 | * wait_event_interruptible_exclusive_locked - sleep exclusively until a condition gets true |
| 674 | * @wq: the waitqueue to wait on |
| 675 | * @condition: a C expression for the event to wait for |
| 676 | * |
| 677 | * The process is put to sleep (TASK_INTERRUPTIBLE) until the |
| 678 | * @condition evaluates to true or a signal is received. |
| 679 | * The @condition is checked each time the waitqueue @wq is woken up. |
| 680 | * |
| 681 | * It must be called with wq.lock being held. This spinlock is |
| 682 | * unlocked while sleeping but @condition testing is done while lock |
| 683 | * is held and when this macro exits the lock is held. |
| 684 | * |
| 685 | * The lock is locked/unlocked using spin_lock()/spin_unlock() |
| 686 | * functions which must match the way they are locked/unlocked outside |
| 687 | * of this macro. |
| 688 | * |
| 689 | * The process is put on the wait queue with an WQ_FLAG_EXCLUSIVE flag |
| 690 | * set thus when other process waits process on the list if this |
| 691 | * process is awaken further processes are not considered. |
| 692 | * |
| 693 | * wake_up_locked() has to be called after changing any variable that could |
| 694 | * change the result of the wait condition. |
| 695 | * |
| 696 | * The function will return -ERESTARTSYS if it was interrupted by a |
| 697 | * signal and 0 if @condition evaluated to true. |
| 698 | */ |
| 699 | #define wait_event_interruptible_exclusive_locked(wq, condition) \ |
| 700 | ((condition) \ |
| 701 | ? 0 : __wait_event_interruptible_locked(wq, condition, 1, 0)) |
| 702 | |
| 703 | /** |
| 704 | * wait_event_interruptible_exclusive_locked_irq - sleep until a condition gets true |
| 705 | * @wq: the waitqueue to wait on |
| 706 | * @condition: a C expression for the event to wait for |
| 707 | * |
| 708 | * The process is put to sleep (TASK_INTERRUPTIBLE) until the |
| 709 | * @condition evaluates to true or a signal is received. |
| 710 | * The @condition is checked each time the waitqueue @wq is woken up. |
| 711 | * |
| 712 | * It must be called with wq.lock being held. This spinlock is |
| 713 | * unlocked while sleeping but @condition testing is done while lock |
| 714 | * is held and when this macro exits the lock is held. |
| 715 | * |
| 716 | * The lock is locked/unlocked using spin_lock_irq()/spin_unlock_irq() |
| 717 | * functions which must match the way they are locked/unlocked outside |
| 718 | * of this macro. |
| 719 | * |
| 720 | * The process is put on the wait queue with an WQ_FLAG_EXCLUSIVE flag |
| 721 | * set thus when other process waits process on the list if this |
| 722 | * process is awaken further processes are not considered. |
| 723 | * |
| 724 | * wake_up_locked() has to be called after changing any variable that could |
| 725 | * change the result of the wait condition. |
| 726 | * |
| 727 | * The function will return -ERESTARTSYS if it was interrupted by a |
| 728 | * signal and 0 if @condition evaluated to true. |
| 729 | */ |
| 730 | #define wait_event_interruptible_exclusive_locked_irq(wq, condition) \ |
| 731 | ((condition) \ |
| 732 | ? 0 : __wait_event_interruptible_locked(wq, condition, 1, 1)) |
| 733 | |
| 734 | |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 735 | #define __wait_event_killable(wq, condition) \ |
| 736 | ___wait_event(wq, condition, TASK_KILLABLE, 0, 0, schedule()) |
Matthew Wilcox | 1411d5a | 2007-12-06 12:00:00 -0500 | [diff] [blame] | 737 | |
| 738 | /** |
| 739 | * wait_event_killable - 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_KILLABLE) 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 | * wake_up() has to be called after changing any variable that could |
| 748 | * change the result of the wait condition. |
| 749 | * |
| 750 | * The function will return -ERESTARTSYS if it was interrupted by a |
| 751 | * signal and 0 if @condition evaluated to true. |
| 752 | */ |
| 753 | #define wait_event_killable(wq, condition) \ |
| 754 | ({ \ |
| 755 | int __ret = 0; \ |
Peter Zijlstra | e22b886 | 2014-09-24 10:18:48 +0200 | [diff] [blame] | 756 | might_sleep(); \ |
Matthew Wilcox | 1411d5a | 2007-12-06 12:00:00 -0500 | [diff] [blame] | 757 | if (!(condition)) \ |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 758 | __ret = __wait_event_killable(wq, condition); \ |
Matthew Wilcox | 1411d5a | 2007-12-06 12:00:00 -0500 | [diff] [blame] | 759 | __ret; \ |
| 760 | }) |
| 761 | |
Lukas Czerner | eed8c02 | 2012-11-30 11:42:40 +0100 | [diff] [blame] | 762 | |
| 763 | #define __wait_event_lock_irq(wq, condition, lock, cmd) \ |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 764 | (void)___wait_event(wq, condition, TASK_UNINTERRUPTIBLE, 0, 0, \ |
| 765 | spin_unlock_irq(&lock); \ |
| 766 | cmd; \ |
| 767 | schedule(); \ |
| 768 | spin_lock_irq(&lock)) |
Lukas Czerner | eed8c02 | 2012-11-30 11:42:40 +0100 | [diff] [blame] | 769 | |
| 770 | /** |
| 771 | * wait_event_lock_irq_cmd - sleep until a condition gets true. The |
| 772 | * condition is checked under the lock. This |
| 773 | * is expected to be called with the lock |
| 774 | * taken. |
| 775 | * @wq: the waitqueue to wait on |
| 776 | * @condition: a C expression for the event to wait for |
| 777 | * @lock: a locked spinlock_t, which will be released before cmd |
| 778 | * and schedule() and reacquired afterwards. |
| 779 | * @cmd: a command which is invoked outside the critical section before |
| 780 | * sleep |
| 781 | * |
| 782 | * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the |
| 783 | * @condition evaluates to true. The @condition is checked each time |
| 784 | * the waitqueue @wq is woken up. |
| 785 | * |
| 786 | * wake_up() has to be called after changing any variable that could |
| 787 | * change the result of the wait condition. |
| 788 | * |
| 789 | * This is supposed to be called while holding the lock. The lock is |
| 790 | * dropped before invoking the cmd and going to sleep and is reacquired |
| 791 | * afterwards. |
| 792 | */ |
| 793 | #define wait_event_lock_irq_cmd(wq, condition, lock, cmd) \ |
| 794 | do { \ |
| 795 | if (condition) \ |
| 796 | break; \ |
| 797 | __wait_event_lock_irq(wq, condition, lock, cmd); \ |
| 798 | } while (0) |
| 799 | |
| 800 | /** |
| 801 | * wait_event_lock_irq - sleep until a condition gets true. The |
| 802 | * condition is checked under the lock. This |
| 803 | * is expected to be called with the lock |
| 804 | * taken. |
| 805 | * @wq: the waitqueue to wait on |
| 806 | * @condition: a C expression for the event to wait for |
| 807 | * @lock: a locked spinlock_t, which will be released before schedule() |
| 808 | * and reacquired afterwards. |
| 809 | * |
| 810 | * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the |
| 811 | * @condition evaluates to true. The @condition is checked each time |
| 812 | * the waitqueue @wq is woken up. |
| 813 | * |
| 814 | * wake_up() has to be called after changing any variable that could |
| 815 | * change the result of the wait condition. |
| 816 | * |
| 817 | * This is supposed to be called while holding the lock. The lock is |
| 818 | * dropped before going to sleep and is reacquired afterwards. |
| 819 | */ |
| 820 | #define wait_event_lock_irq(wq, condition, lock) \ |
| 821 | do { \ |
| 822 | if (condition) \ |
| 823 | break; \ |
| 824 | __wait_event_lock_irq(wq, condition, lock, ); \ |
| 825 | } while (0) |
| 826 | |
| 827 | |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 828 | #define __wait_event_interruptible_lock_irq(wq, condition, lock, cmd) \ |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 829 | ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 0, 0, \ |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 830 | spin_unlock_irq(&lock); \ |
| 831 | cmd; \ |
| 832 | schedule(); \ |
Peter Zijlstra | 8fbd88f | 2013-10-02 11:22:28 +0200 | [diff] [blame] | 833 | spin_lock_irq(&lock)) |
Lukas Czerner | eed8c02 | 2012-11-30 11:42:40 +0100 | [diff] [blame] | 834 | |
| 835 | /** |
| 836 | * wait_event_interruptible_lock_irq_cmd - sleep until a condition gets true. |
| 837 | * The condition is checked under the lock. This is expected to |
| 838 | * be called with the lock taken. |
| 839 | * @wq: the waitqueue to wait on |
| 840 | * @condition: a C expression for the event to wait for |
| 841 | * @lock: a locked spinlock_t, which will be released before cmd and |
| 842 | * schedule() and reacquired afterwards. |
| 843 | * @cmd: a command which is invoked outside the critical section before |
| 844 | * sleep |
| 845 | * |
| 846 | * The process is put to sleep (TASK_INTERRUPTIBLE) until the |
| 847 | * @condition evaluates to true or a signal is received. The @condition is |
| 848 | * checked each time the waitqueue @wq is woken up. |
| 849 | * |
| 850 | * wake_up() has to be called after changing any variable that could |
| 851 | * change the result of the wait condition. |
| 852 | * |
| 853 | * This is supposed to be called while holding the lock. The lock is |
| 854 | * dropped before invoking the cmd and going to sleep and is reacquired |
| 855 | * afterwards. |
| 856 | * |
| 857 | * The macro will return -ERESTARTSYS if it was interrupted by a signal |
| 858 | * and 0 if @condition evaluated to true. |
| 859 | */ |
| 860 | #define wait_event_interruptible_lock_irq_cmd(wq, condition, lock, cmd) \ |
| 861 | ({ \ |
| 862 | int __ret = 0; \ |
Lukas Czerner | eed8c02 | 2012-11-30 11:42:40 +0100 | [diff] [blame] | 863 | if (!(condition)) \ |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 864 | __ret = __wait_event_interruptible_lock_irq(wq, \ |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 865 | condition, lock, cmd); \ |
Lukas Czerner | eed8c02 | 2012-11-30 11:42:40 +0100 | [diff] [blame] | 866 | __ret; \ |
| 867 | }) |
| 868 | |
| 869 | /** |
| 870 | * wait_event_interruptible_lock_irq - sleep until a condition gets true. |
| 871 | * The condition is checked under the lock. This is expected |
| 872 | * to be called with the lock taken. |
| 873 | * @wq: the waitqueue to wait on |
| 874 | * @condition: a C expression for the event to wait for |
| 875 | * @lock: a locked spinlock_t, which will be released before schedule() |
| 876 | * and reacquired afterwards. |
| 877 | * |
| 878 | * The process is put to sleep (TASK_INTERRUPTIBLE) until the |
| 879 | * @condition evaluates to true or signal is received. The @condition is |
| 880 | * checked each time the waitqueue @wq is woken up. |
| 881 | * |
| 882 | * wake_up() has to be called after changing any variable that could |
| 883 | * change the result of the wait condition. |
| 884 | * |
| 885 | * This is supposed to be called while holding the lock. The lock is |
| 886 | * dropped before going to sleep and is reacquired afterwards. |
| 887 | * |
| 888 | * The macro will return -ERESTARTSYS if it was interrupted by a signal |
| 889 | * and 0 if @condition evaluated to true. |
| 890 | */ |
| 891 | #define wait_event_interruptible_lock_irq(wq, condition, lock) \ |
| 892 | ({ \ |
| 893 | int __ret = 0; \ |
Lukas Czerner | eed8c02 | 2012-11-30 11:42:40 +0100 | [diff] [blame] | 894 | if (!(condition)) \ |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 895 | __ret = __wait_event_interruptible_lock_irq(wq, \ |
Thierry Reding | 92ec118 | 2013-10-23 13:40:55 +0200 | [diff] [blame] | 896 | condition, lock,); \ |
Lukas Czerner | eed8c02 | 2012-11-30 11:42:40 +0100 | [diff] [blame] | 897 | __ret; \ |
| 898 | }) |
| 899 | |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 900 | #define __wait_event_interruptible_lock_irq_timeout(wq, condition, \ |
| 901 | lock, timeout) \ |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 902 | ___wait_event(wq, ___wait_cond_timeout(condition), \ |
Heiko Carstens | 7d71645 | 2013-10-31 12:48:14 +0100 | [diff] [blame] | 903 | TASK_INTERRUPTIBLE, 0, timeout, \ |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 904 | spin_unlock_irq(&lock); \ |
| 905 | __ret = schedule_timeout(__ret); \ |
Peter Zijlstra | a1dc685 | 2013-10-02 11:22:29 +0200 | [diff] [blame] | 906 | spin_lock_irq(&lock)); |
Martin Peschke | d79ff14 | 2013-08-22 17:45:36 +0200 | [diff] [blame] | 907 | |
| 908 | /** |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 909 | * wait_event_interruptible_lock_irq_timeout - sleep until a condition gets |
| 910 | * true or a timeout elapses. The condition is checked under |
| 911 | * the lock. This is expected to be called with the lock taken. |
Martin Peschke | d79ff14 | 2013-08-22 17:45:36 +0200 | [diff] [blame] | 912 | * @wq: the waitqueue to wait on |
| 913 | * @condition: a C expression for the event to wait for |
| 914 | * @lock: a locked spinlock_t, which will be released before schedule() |
| 915 | * and reacquired afterwards. |
| 916 | * @timeout: timeout, in jiffies |
| 917 | * |
| 918 | * The process is put to sleep (TASK_INTERRUPTIBLE) until the |
| 919 | * @condition evaluates to true or signal is received. The @condition is |
| 920 | * checked each time the waitqueue @wq is woken up. |
| 921 | * |
| 922 | * wake_up() has to be called after changing any variable that could |
| 923 | * change the result of the wait condition. |
| 924 | * |
| 925 | * This is supposed to be called while holding the lock. The lock is |
| 926 | * dropped before going to sleep and is reacquired afterwards. |
| 927 | * |
| 928 | * The function returns 0 if the @timeout elapsed, -ERESTARTSYS if it |
| 929 | * was interrupted by a signal, and the remaining jiffies otherwise |
| 930 | * if the condition evaluated to true before the timeout elapsed. |
| 931 | */ |
| 932 | #define wait_event_interruptible_lock_irq_timeout(wq, condition, lock, \ |
| 933 | timeout) \ |
| 934 | ({ \ |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 935 | long __ret = timeout; \ |
Oleg Nesterov | 8922915 | 2013-10-07 20:31:06 +0200 | [diff] [blame] | 936 | if (!___wait_cond_timeout(condition)) \ |
Peter Zijlstra | 35a2af9 | 2013-10-02 11:22:33 +0200 | [diff] [blame] | 937 | __ret = __wait_event_interruptible_lock_irq_timeout( \ |
| 938 | wq, condition, lock, timeout); \ |
Martin Peschke | d79ff14 | 2013-08-22 17:45:36 +0200 | [diff] [blame] | 939 | __ret; \ |
| 940 | }) |
| 941 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | /* |
| 943 | * Waitqueues which are removed from the waitqueue_head at wakeup time |
| 944 | */ |
Harvey Harrison | b3c9752 | 2008-02-13 15:03:15 -0800 | [diff] [blame] | 945 | void prepare_to_wait(wait_queue_head_t *q, wait_queue_t *wait, int state); |
| 946 | void prepare_to_wait_exclusive(wait_queue_head_t *q, wait_queue_t *wait, int state); |
Oleg Nesterov | c2d8164 | 2013-10-07 18:18:24 +0200 | [diff] [blame] | 947 | long prepare_to_wait_event(wait_queue_head_t *q, wait_queue_t *wait, int state); |
Harvey Harrison | b3c9752 | 2008-02-13 15:03:15 -0800 | [diff] [blame] | 948 | void finish_wait(wait_queue_head_t *q, wait_queue_t *wait); |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 949 | void abort_exclusive_wait(wait_queue_head_t *q, wait_queue_t *wait, unsigned int mode, void *key); |
Peter Zijlstra | 61ada52 | 2014-09-24 10:18:47 +0200 | [diff] [blame] | 950 | long wait_woken(wait_queue_t *wait, unsigned mode, long timeout); |
| 951 | int woken_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | int autoremove_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key); |
| 953 | int wake_bit_function(wait_queue_t *wait, unsigned mode, int sync, void *key); |
| 954 | |
Eric Dumazet | bf368e4 | 2009-04-28 02:24:21 -0700 | [diff] [blame] | 955 | #define DEFINE_WAIT_FUNC(name, function) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | wait_queue_t name = { \ |
Benjamin LaHaise | c43dc2f | 2005-06-23 00:10:27 -0700 | [diff] [blame] | 957 | .private = current, \ |
Eric Dumazet | bf368e4 | 2009-04-28 02:24:21 -0700 | [diff] [blame] | 958 | .func = function, \ |
blaisorblade@yahoo.it | 7e43c84 | 2005-05-25 01:31:42 +0200 | [diff] [blame] | 959 | .task_list = LIST_HEAD_INIT((name).task_list), \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | } |
| 961 | |
Eric Dumazet | bf368e4 | 2009-04-28 02:24:21 -0700 | [diff] [blame] | 962 | #define DEFINE_WAIT(name) DEFINE_WAIT_FUNC(name, autoremove_wake_function) |
| 963 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | #define DEFINE_WAIT_BIT(name, word, bit) \ |
| 965 | struct wait_bit_queue name = { \ |
| 966 | .key = __WAIT_BIT_KEY_INITIALIZER(word, bit), \ |
| 967 | .wait = { \ |
Benjamin LaHaise | c43dc2f | 2005-06-23 00:10:27 -0700 | [diff] [blame] | 968 | .private = current, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | .func = wake_bit_function, \ |
| 970 | .task_list = \ |
| 971 | LIST_HEAD_INIT((name).wait.task_list), \ |
| 972 | }, \ |
| 973 | } |
| 974 | |
| 975 | #define init_wait(wait) \ |
| 976 | do { \ |
Benjamin LaHaise | c43dc2f | 2005-06-23 00:10:27 -0700 | [diff] [blame] | 977 | (wait)->private = current; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | (wait)->func = autoremove_wake_function; \ |
| 979 | INIT_LIST_HEAD(&(wait)->task_list); \ |
Evgeny Kuznetsov | 231d0ae | 2010-10-05 12:47:57 +0400 | [diff] [blame] | 980 | (wait)->flags = 0; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | } while (0) |
| 982 | |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 983 | |
NeilBrown | c122132 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 984 | extern int bit_wait(struct wait_bit_key *); |
| 985 | extern int bit_wait_io(struct wait_bit_key *); |
NeilBrown | cbbce82 | 2014-09-25 13:55:19 +1000 | [diff] [blame] | 986 | extern int bit_wait_timeout(struct wait_bit_key *); |
| 987 | extern int bit_wait_io_timeout(struct wait_bit_key *); |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 988 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | /** |
| 990 | * wait_on_bit - wait for a bit to be cleared |
| 991 | * @word: the word being waited on, a kernel virtual address |
| 992 | * @bit: the bit of the word being waited on |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | * @mode: the task state to sleep in |
| 994 | * |
| 995 | * There is a standard hashed waitqueue table for generic use. This |
| 996 | * is the part of the hashtable's accessor API that waits on a bit. |
| 997 | * For instance, if one were to have waiters on a bitflag, one would |
| 998 | * call wait_on_bit() in threads waiting for the bit to clear. |
| 999 | * One uses wait_on_bit() where one is waiting for the bit to clear, |
| 1000 | * but has no intention of setting it. |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 1001 | * Returned value will be zero if the bit was cleared, or non-zero |
| 1002 | * if the process received a signal and the mode permitted wakeup |
| 1003 | * on that signal. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | */ |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 1005 | static inline int |
Palmer Dabbelt | 7e60598 | 2015-04-30 21:19:56 -0700 | [diff] [blame] | 1006 | wait_on_bit(unsigned long *word, int bit, unsigned mode) |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 1007 | { |
Peter Zijlstra | e22b886 | 2014-09-24 10:18:48 +0200 | [diff] [blame] | 1008 | might_sleep(); |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 1009 | if (!test_bit(bit, word)) |
| 1010 | return 0; |
| 1011 | return out_of_line_wait_on_bit(word, bit, |
| 1012 | bit_wait, |
| 1013 | mode); |
| 1014 | } |
| 1015 | |
| 1016 | /** |
| 1017 | * wait_on_bit_io - wait for a bit to be cleared |
| 1018 | * @word: the word being waited on, a kernel virtual address |
| 1019 | * @bit: the bit of the word being waited on |
| 1020 | * @mode: the task state to sleep in |
| 1021 | * |
| 1022 | * Use the standard hashed waitqueue table to wait for a bit |
| 1023 | * to be cleared. This is similar to wait_on_bit(), but calls |
| 1024 | * io_schedule() instead of schedule() for the actual waiting. |
| 1025 | * |
| 1026 | * Returned value will be zero if the bit was cleared, or non-zero |
| 1027 | * if the process received a signal and the mode permitted wakeup |
| 1028 | * on that signal. |
| 1029 | */ |
| 1030 | static inline int |
Palmer Dabbelt | 7e60598 | 2015-04-30 21:19:56 -0700 | [diff] [blame] | 1031 | wait_on_bit_io(unsigned long *word, int bit, unsigned mode) |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 1032 | { |
Peter Zijlstra | e22b886 | 2014-09-24 10:18:48 +0200 | [diff] [blame] | 1033 | might_sleep(); |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 1034 | if (!test_bit(bit, word)) |
| 1035 | return 0; |
| 1036 | return out_of_line_wait_on_bit(word, bit, |
| 1037 | bit_wait_io, |
| 1038 | mode); |
| 1039 | } |
| 1040 | |
| 1041 | /** |
Johan Hedberg | 44fc0e5 | 2015-01-30 13:14:36 +0200 | [diff] [blame] | 1042 | * wait_on_bit_timeout - wait for a bit to be cleared or a timeout elapses |
| 1043 | * @word: the word being waited on, a kernel virtual address |
| 1044 | * @bit: the bit of the word being waited on |
| 1045 | * @mode: the task state to sleep in |
| 1046 | * @timeout: timeout, in jiffies |
| 1047 | * |
| 1048 | * Use the standard hashed waitqueue table to wait for a bit |
| 1049 | * to be cleared. This is similar to wait_on_bit(), except also takes a |
| 1050 | * timeout parameter. |
| 1051 | * |
| 1052 | * Returned value will be zero if the bit was cleared before the |
| 1053 | * @timeout elapsed, or non-zero if the @timeout elapsed or process |
| 1054 | * received a signal and the mode permitted wakeup on that signal. |
| 1055 | */ |
| 1056 | static inline int |
Palmer Dabbelt | 7e60598 | 2015-04-30 21:19:56 -0700 | [diff] [blame] | 1057 | wait_on_bit_timeout(unsigned long *word, int bit, unsigned mode, |
| 1058 | unsigned long timeout) |
Johan Hedberg | 44fc0e5 | 2015-01-30 13:14:36 +0200 | [diff] [blame] | 1059 | { |
| 1060 | might_sleep(); |
| 1061 | if (!test_bit(bit, word)) |
| 1062 | return 0; |
| 1063 | return out_of_line_wait_on_bit_timeout(word, bit, |
| 1064 | bit_wait_timeout, |
| 1065 | mode, timeout); |
| 1066 | } |
| 1067 | |
| 1068 | /** |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 1069 | * wait_on_bit_action - wait for a bit to be cleared |
| 1070 | * @word: the word being waited on, a kernel virtual address |
| 1071 | * @bit: the bit of the word being waited on |
| 1072 | * @action: the function used to sleep, which may take special actions |
| 1073 | * @mode: the task state to sleep in |
| 1074 | * |
| 1075 | * Use the standard hashed waitqueue table to wait for a bit |
| 1076 | * to be cleared, and allow the waiting action to be specified. |
| 1077 | * This is like wait_on_bit() but allows fine control of how the waiting |
| 1078 | * is done. |
| 1079 | * |
| 1080 | * Returned value will be zero if the bit was cleared, or non-zero |
| 1081 | * if the process received a signal and the mode permitted wakeup |
| 1082 | * on that signal. |
| 1083 | */ |
| 1084 | static inline int |
Palmer Dabbelt | 7e60598 | 2015-04-30 21:19:56 -0700 | [diff] [blame] | 1085 | wait_on_bit_action(unsigned long *word, int bit, wait_bit_action_f *action, |
| 1086 | unsigned mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | { |
Peter Zijlstra | e22b886 | 2014-09-24 10:18:48 +0200 | [diff] [blame] | 1088 | might_sleep(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | if (!test_bit(bit, word)) |
| 1090 | return 0; |
| 1091 | return out_of_line_wait_on_bit(word, bit, action, mode); |
| 1092 | } |
| 1093 | |
| 1094 | /** |
| 1095 | * wait_on_bit_lock - wait for a bit to be cleared, when wanting to set it |
| 1096 | * @word: the word being waited on, a kernel virtual address |
| 1097 | * @bit: the bit of the word being waited on |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | * @mode: the task state to sleep in |
| 1099 | * |
| 1100 | * There is a standard hashed waitqueue table for generic use. This |
| 1101 | * is the part of the hashtable's accessor API that waits on a bit |
| 1102 | * when one intends to set it, for instance, trying to lock bitflags. |
| 1103 | * For instance, if one were to have waiters trying to set bitflag |
| 1104 | * and waiting for it to clear before setting it, one would call |
| 1105 | * wait_on_bit() in threads waiting to be able to set the bit. |
| 1106 | * One uses wait_on_bit_lock() where one is waiting for the bit to |
| 1107 | * clear with the intention of setting it, and when done, clearing it. |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 1108 | * |
| 1109 | * Returns zero if the bit was (eventually) found to be clear and was |
| 1110 | * set. Returns non-zero if a signal was delivered to the process and |
| 1111 | * the @mode allows that signal to wake the process. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | */ |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 1113 | static inline int |
Palmer Dabbelt | 7e60598 | 2015-04-30 21:19:56 -0700 | [diff] [blame] | 1114 | wait_on_bit_lock(unsigned long *word, int bit, unsigned mode) |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 1115 | { |
Peter Zijlstra | e22b886 | 2014-09-24 10:18:48 +0200 | [diff] [blame] | 1116 | might_sleep(); |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 1117 | if (!test_and_set_bit(bit, word)) |
| 1118 | return 0; |
| 1119 | return out_of_line_wait_on_bit_lock(word, bit, bit_wait, mode); |
| 1120 | } |
| 1121 | |
| 1122 | /** |
| 1123 | * wait_on_bit_lock_io - wait for a bit to be cleared, when wanting to set it |
| 1124 | * @word: the word being waited on, a kernel virtual address |
| 1125 | * @bit: the bit of the word being waited on |
| 1126 | * @mode: the task state to sleep in |
| 1127 | * |
| 1128 | * Use the standard hashed waitqueue table to wait for a bit |
| 1129 | * to be cleared and then to atomically set it. This is similar |
| 1130 | * to wait_on_bit(), but calls io_schedule() instead of schedule() |
| 1131 | * for the actual waiting. |
| 1132 | * |
| 1133 | * Returns zero if the bit was (eventually) found to be clear and was |
| 1134 | * set. Returns non-zero if a signal was delivered to the process and |
| 1135 | * the @mode allows that signal to wake the process. |
| 1136 | */ |
| 1137 | static inline int |
Palmer Dabbelt | 7e60598 | 2015-04-30 21:19:56 -0700 | [diff] [blame] | 1138 | wait_on_bit_lock_io(unsigned long *word, int bit, unsigned mode) |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 1139 | { |
Peter Zijlstra | e22b886 | 2014-09-24 10:18:48 +0200 | [diff] [blame] | 1140 | might_sleep(); |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 1141 | if (!test_and_set_bit(bit, word)) |
| 1142 | return 0; |
| 1143 | return out_of_line_wait_on_bit_lock(word, bit, bit_wait_io, mode); |
| 1144 | } |
| 1145 | |
| 1146 | /** |
| 1147 | * wait_on_bit_lock_action - wait for a bit to be cleared, when wanting to set it |
| 1148 | * @word: the word being waited on, a kernel virtual address |
| 1149 | * @bit: the bit of the word being waited on |
| 1150 | * @action: the function used to sleep, which may take special actions |
| 1151 | * @mode: the task state to sleep in |
| 1152 | * |
| 1153 | * Use the standard hashed waitqueue table to wait for a bit |
| 1154 | * to be cleared and then to set it, and allow the waiting action |
| 1155 | * to be specified. |
| 1156 | * This is like wait_on_bit() but allows fine control of how the waiting |
| 1157 | * is done. |
| 1158 | * |
| 1159 | * Returns zero if the bit was (eventually) found to be clear and was |
| 1160 | * set. Returns non-zero if a signal was delivered to the process and |
| 1161 | * the @mode allows that signal to wake the process. |
| 1162 | */ |
| 1163 | static inline int |
Palmer Dabbelt | 7e60598 | 2015-04-30 21:19:56 -0700 | [diff] [blame] | 1164 | wait_on_bit_lock_action(unsigned long *word, int bit, wait_bit_action_f *action, |
| 1165 | unsigned mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1166 | { |
Peter Zijlstra | e22b886 | 2014-09-24 10:18:48 +0200 | [diff] [blame] | 1167 | might_sleep(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | if (!test_and_set_bit(bit, word)) |
| 1169 | return 0; |
| 1170 | return out_of_line_wait_on_bit_lock(word, bit, action, mode); |
| 1171 | } |
David Howells | cb65537 | 2013-05-10 19:50:26 +0100 | [diff] [blame] | 1172 | |
| 1173 | /** |
| 1174 | * wait_on_atomic_t - Wait for an atomic_t to become 0 |
| 1175 | * @val: The atomic value being waited on, a kernel virtual address |
| 1176 | * @action: the function used to sleep, which may take special actions |
| 1177 | * @mode: the task state to sleep in |
| 1178 | * |
| 1179 | * Wait for an atomic_t to become 0. We abuse the bit-wait waitqueue table for |
| 1180 | * the purpose of getting a waitqueue, but we set the key to a bit number |
| 1181 | * outside of the target 'word'. |
| 1182 | */ |
| 1183 | static inline |
| 1184 | int wait_on_atomic_t(atomic_t *val, int (*action)(atomic_t *), unsigned mode) |
| 1185 | { |
Peter Zijlstra | e22b886 | 2014-09-24 10:18:48 +0200 | [diff] [blame] | 1186 | might_sleep(); |
David Howells | cb65537 | 2013-05-10 19:50:26 +0100 | [diff] [blame] | 1187 | if (atomic_read(val) == 0) |
| 1188 | return 0; |
| 1189 | return out_of_line_wait_on_atomic_t(val, action, mode); |
| 1190 | } |
Ingo Molnar | fb869b6 | 2013-10-04 10:24:49 +0200 | [diff] [blame] | 1191 | |
| 1192 | #endif /* _LINUX_WAIT_H */ |