Symbol: __wake_up
fs/dax.c
199
__wake_up(wq, TASK_NORMAL, mode == WAKE_ALL ? 0 : 1, &key);
fs/gfs2/glock.c
125
__wake_up(wq, TASK_NORMAL, 1, &gl->gl_name);
fs/nfs/callback_proc.c
696
__wake_up(&cps->clp->cl_lock_waitq, TASK_NORMAL, 0, args);
include/linux/wait.h
212
int __wake_up(struct wait_queue_head *wq_head, unsigned int mode, int nr, void *key);
include/linux/wait.h
221
#define wake_up(x) __wake_up(x, TASK_NORMAL, 1, NULL)
include/linux/wait.h
222
#define wake_up_nr(x, nr) __wake_up(x, TASK_NORMAL, nr, NULL)
include/linux/wait.h
223
#define wake_up_all(x) __wake_up(x, TASK_NORMAL, 0, NULL)
include/linux/wait.h
228
#define wake_up_interruptible(x) __wake_up(x, TASK_INTERRUPTIBLE, 1, NULL)
include/linux/wait.h
229
#define wake_up_interruptible_nr(x, nr) __wake_up(x, TASK_INTERRUPTIBLE, nr, NULL)
include/linux/wait.h
230
#define wake_up_interruptible_all(x) __wake_up(x, TASK_INTERRUPTIBLE, 0, NULL)
include/linux/wait.h
239
__wake_up(x, TASK_NORMAL, 1, poll_to_key(m))
include/linux/wait.h
245
__wake_up(x, TASK_INTERRUPTIBLE, 1, poll_to_key(m))
io_uring/io_uring.h
429
__wake_up(wq, TASK_NORMAL, 0, poll_to_key(EPOLL_URING_WAKE | EPOLLIN));
kernel/locking/percpu-rwsem.c
284
__wake_up(&sem->waiters, TASK_NORMAL, 1, sem);
kernel/sched/wait.c
148
EXPORT_SYMBOL(__wake_up);
kernel/sched/wait.c
230
__wake_up(wq_head, TASK_NORMAL, 0, poll_to_key(EPOLLHUP | POLLFREE));
kernel/sched/wait_bit.c
129
__wake_up(wq_head, TASK_NORMAL, 1, &key);
kernel/signal.c
2164
__wake_up(&pid->wait_pidfd, TASK_NORMAL, 0,
mm/memcontrol-v1.c
1373
__wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
mm/userfaultfd.c
3210
__wake_up(&ctx->fault_wqh, TASK_NORMAL, 1, &range);
mm/userfaultfd.c
3511
__wake_up(&ctx->fault_wqh, TASK_NORMAL, 1, range);