Searched refs:__wake_up (Results 1 – 11 of 11) sorted by relevance
/kernel/linux/linux-5.10/include/linux/ |
D | wait.h | 202 void __wake_up(struct wait_queue_head *wq_head, unsigned int mode, int nr, void *key); 212 #define wake_up(x) __wake_up(x, TASK_NORMAL, 1, NULL) 213 #define wake_up_nr(x, nr) __wake_up(x, TASK_NORMAL, nr, NULL) 214 #define wake_up_all(x) __wake_up(x, TASK_NORMAL, 0, NULL) 218 #define wake_up_interruptible(x) __wake_up(x, TASK_INTERRUPTIBLE, 1, NULL) 219 #define wake_up_interruptible_nr(x, nr) __wake_up(x, TASK_INTERRUPTIBLE, nr, NULL) 220 #define wake_up_interruptible_all(x) __wake_up(x, TASK_INTERRUPTIBLE, 0, NULL) 229 __wake_up(x, TASK_NORMAL, 1, poll_to_key(m)) 233 __wake_up(x, TASK_INTERRUPTIBLE, 1, poll_to_key(m))
|
/kernel/linux/linux-5.10/kernel/sched/ |
D | wait.c | 139 void __wake_up(struct wait_queue_head *wq_head, unsigned int mode, in __wake_up() function 144 EXPORT_SYMBOL(__wake_up); 228 __wake_up(wq_head, TASK_NORMAL, 0, poll_to_key(EPOLLHUP | POLLFREE)); in __wake_up_pollfree()
|
D | wait_bit.c | 126 __wake_up(wq_head, TASK_NORMAL, 1, &key); in __wake_up_bit()
|
/kernel/linux/linux-5.10/kernel/locking/ |
D | percpu-rwsem.c | 261 __wake_up(&sem->waiters, TASK_NORMAL, 1, sem); in percpu_up_write()
|
/kernel/linux/linux-5.10/fs/nfs/ |
D | callback_proc.c | 673 __wake_up(&cps->clp->cl_lock_waitq, TASK_NORMAL, 0, args); in nfs4_callback_notify_lock()
|
/kernel/linux/linux-5.10/fs/ |
D | userfaultfd.c | 891 __wake_up(&ctx->fault_wqh, TASK_NORMAL, 1, &range); in userfaultfd_release() 1191 __wake_up(&ctx->fault_wqh, TASK_NORMAL, 1, range); in __wake_userfault()
|
D | dax.c | 210 __wake_up(wq, TASK_NORMAL, mode == WAKE_ALL ? 0 : 1, &key); in dax_wake_entry()
|
/kernel/linux/linux-5.10/fs/gfs2/ |
D | glock.c | 121 __wake_up(wq, TASK_NORMAL, 1, &gl->gl_name); in wake_up_glock()
|
/kernel/linux/linux-5.10/io_uring/ |
D | io_uring.c | 1634 __wake_up(&ctx->cq_wait, TASK_NORMAL, 0, in io_cqring_ev_posted() 1641 __wake_up(&ctx->poll_wait, TASK_INTERRUPTIBLE, 0, in io_cqring_ev_posted() 1652 __wake_up(&ctx->cq_wait, TASK_NORMAL, 0, in io_cqring_ev_posted_iopoll() 1658 __wake_up(&ctx->poll_wait, TASK_INTERRUPTIBLE, 0, in io_cqring_ev_posted_iopoll()
|
/kernel/linux/linux-5.10/kernel/ |
D | workqueue.c | 3152 __wake_up(&cancel_waitq, TASK_NORMAL, 1, work); in __cancel_work_timer()
|
/kernel/linux/linux-5.10/mm/ |
D | memcontrol.c | 1939 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg); in memcg_oom_recover()
|