Searched refs:__wake_up (Results 1 – 9 of 9) sorted by relevance
/Linux-v4.19/include/linux/ |
D | wait.h | 187 void __wake_up(struct wait_queue_head *wq_head, unsigned int mode, int nr, void *key); 195 #define wake_up(x) __wake_up(x, TASK_NORMAL, 1, NULL) 196 #define wake_up_nr(x, nr) __wake_up(x, TASK_NORMAL, nr, NULL) 197 #define wake_up_all(x) __wake_up(x, TASK_NORMAL, 0, NULL) 201 #define wake_up_interruptible(x) __wake_up(x, TASK_INTERRUPTIBLE, 1, NULL) 202 #define wake_up_interruptible_nr(x, nr) __wake_up(x, TASK_INTERRUPTIBLE, nr, NULL) 203 #define wake_up_interruptible_all(x) __wake_up(x, TASK_INTERRUPTIBLE, 0, NULL) 212 __wake_up(x, TASK_NORMAL, 1, poll_to_key(m)) 216 __wake_up(x, TASK_INTERRUPTIBLE, 1, poll_to_key(m))
|
/Linux-v4.19/kernel/sched/ |
D | wait.c | 142 void __wake_up(struct wait_queue_head *wq_head, unsigned int mode, in __wake_up() function 147 EXPORT_SYMBOL(__wake_up);
|
D | wait_bit.c | 125 __wake_up(wq_head, TASK_NORMAL, 1, &key); in __wake_up_bit()
|
/Linux-v4.19/fs/nfs/ |
D | callback_proc.c | 665 __wake_up(&cps->clp->cl_lock_waitq, TASK_NORMAL, 0, args); in nfs4_callback_notify_lock()
|
/Linux-v4.19/fs/ |
D | userfaultfd.c | 911 __wake_up(&ctx->fault_wqh, TASK_NORMAL, 1, &range); in userfaultfd_release() 1216 __wake_up(&ctx->fault_wqh, TASK_NORMAL, 1, range); in __wake_userfault()
|
D | dax.c | 180 __wake_up(wq, TASK_NORMAL, wake_all ? 0 : 1, &key); in dax_wake_mapping_entry_waiter()
|
/Linux-v4.19/fs/gfs2/ |
D | glock.c | 124 __wake_up(wq, TASK_NORMAL, 1, &gl->gl_name); in wake_up_glock()
|
/Linux-v4.19/kernel/ |
D | workqueue.c | 3015 __wake_up(&cancel_waitq, TASK_NORMAL, 1, work); in __cancel_work_timer()
|
/Linux-v4.19/mm/ |
D | memcontrol.c | 1657 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg); in memcg_oom_recover()
|