Lines Matching refs:mode
66 static int __wake_up_common(struct wait_queue_head *wq_head, unsigned int mode, in __wake_up_common() argument
93 ret = curr->func(curr, mode, wake_flags, key); in __wake_up_common()
110 static void __wake_up_common_lock(struct wait_queue_head *wq_head, unsigned int mode, in __wake_up_common_lock() argument
123 nr_exclusive = __wake_up_common(wq_head, mode, nr_exclusive, in __wake_up_common_lock()
139 void __wake_up(struct wait_queue_head *wq_head, unsigned int mode, in __wake_up() argument
142 __wake_up_common_lock(wq_head, mode, nr_exclusive, 0, key); in __wake_up()
149 void __wake_up_locked(struct wait_queue_head *wq_head, unsigned int mode, int nr) in __wake_up_locked() argument
151 __wake_up_common(wq_head, mode, nr, 0, NULL, NULL); in __wake_up_locked()
155 void __wake_up_locked_key(struct wait_queue_head *wq_head, unsigned int mode, void *key) in __wake_up_locked_key() argument
157 __wake_up_common(wq_head, mode, 1, 0, key, NULL); in __wake_up_locked_key()
162 unsigned int mode, void *key, wait_queue_entry_t *bookmark) in __wake_up_locked_key_bookmark() argument
164 __wake_up_common(wq_head, mode, 1, 0, key, bookmark); in __wake_up_locked_key_bookmark()
185 void __wake_up_sync_key(struct wait_queue_head *wq_head, unsigned int mode, in __wake_up_sync_key() argument
196 __wake_up_common_lock(wq_head, mode, nr_exclusive, wake_flags, key); in __wake_up_sync_key()
203 void __wake_up_sync(struct wait_queue_head *wq_head, unsigned int mode, int nr_exclusive) in __wake_up_sync() argument
205 __wake_up_sync_key(wq_head, mode, nr_exclusive, NULL); in __wake_up_sync()
370 int autoremove_wake_function(struct wait_queue_entry *wq_entry, unsigned mode, int sync, void *key) in autoremove_wake_function() argument
372 int ret = default_wake_function(wq_entry, mode, sync, key); in autoremove_wake_function()
406 long wait_woken(struct wait_queue_entry *wq_entry, unsigned mode, long timeout) in wait_woken() argument
414 set_current_state(mode); /* A */ in wait_woken()
431 int woken_wake_function(struct wait_queue_entry *wq_entry, unsigned mode, int sync, void *key) in woken_wake_function() argument
437 return default_wake_function(wq_entry, mode, sync, key); in woken_wake_function()