Symbol: __wake_up
fs/dax.c
200
__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
695
__wake_up(&cps->clp->cl_lock_waitq, TASK_NORMAL, 0, args);
fs/userfaultfd.c
1197
__wake_up(&ctx->fault_wqh, TASK_NORMAL, 1, range);
fs/userfaultfd.c
896
__wake_up(&ctx->fault_wqh, TASK_NORMAL, 1, &range);
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
427
__wake_up(wq, TASK_NORMAL, 0, poll_to_key(EPOLL_URING_WAKE | EPOLLIN));
kernel/locking/percpu-rwsem.c
281
__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
2157
__wake_up(&pid->wait_pidfd, TASK_NORMAL, 0,
mm/memcontrol-v1.c
1353
__wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);