Home
last modified time | relevance | path

Searched refs:cwait (Results 1 – 1 of 1) sorted by relevance

/kernel/
Dworkqueue.c3079 struct cwt_wait *cwait = container_of(wait, struct cwt_wait, wait); in cwt_wakefn() local
3081 if (cwait->work != key) in cwt_wakefn()
3111 struct cwt_wait cwait; in __cancel_work_timer() local
3113 init_wait(&cwait.wait); in __cancel_work_timer()
3114 cwait.wait.func = cwt_wakefn; in __cancel_work_timer()
3115 cwait.work = work; in __cancel_work_timer()
3117 prepare_to_wait_exclusive(&cancel_waitq, &cwait.wait, in __cancel_work_timer()
3121 finish_wait(&cancel_waitq, &cwait.wait); in __cancel_work_timer()