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