Lines Matching full:task

9  * task_work_add - ask the @task to execute @work->func()
10 * @task: the task which should run the callback
12 * @notify: how to notify the targeted task
14 * Queue @work for task_work_run() below and notify the @task if @notify
16 * it will interrupt the targeted task and run the task_work. @TWA_RESUME
17 * work is run only when the task exits the kernel and returns to user mode,
18 * or before entering guest mode. Fails if the @task is exiting/exited and thus
20 * @task goes through one of the aforementioned transitions, or exits.
22 * If the targeted task is exiting, then an error is returned and the work item
32 int task_work_add(struct task_struct *task, struct callback_head *work, in task_work_add() argument
41 head = READ_ONCE(task->task_works); in task_work_add()
45 } while (cmpxchg(&task->task_works, head, work) != head); in task_work_add()
51 set_notify_resume(task); in task_work_add()
54 set_notify_signal(task); in task_work_add()
66 * @task: the task which should execute the work
73 task_work_cancel_match(struct task_struct *task, in task_work_cancel_match() argument
77 struct callback_head **pprev = &task->task_works; in task_work_cancel_match()
81 if (likely(!task->task_works)) in task_work_cancel_match()
89 raw_spin_lock_irqsave(&task->pi_lock, flags); in task_work_cancel_match()
96 raw_spin_unlock_irqrestore(&task->pi_lock, flags); in task_work_cancel_match()
108 * @task: the task which should execute the work
118 task_work_cancel(struct task_struct *task, task_work_func_t func) in task_work_cancel() argument
120 return task_work_cancel_match(task, task_work_func_match, func); in task_work_cancel()
127 * Called before the task returns to the user-mode or stops, or when
133 struct task_struct *task = current; in task_work_run() local
143 work = READ_ONCE(task->task_works); in task_work_run()
145 if (task->flags & PF_EXITING) in task_work_run()
150 } while (cmpxchg(&task->task_works, work, head) != work); in task_work_run()
159 raw_spin_lock_irq(&task->pi_lock); in task_work_run()
160 raw_spin_unlock_irq(&task->pi_lock); in task_work_run()