mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 10:50:53 +07:00
41f9d29f09
get rid of the only user of ->data; this is _not_ the final variant - in the end we'll have task_work and rcu_head identical and just use cred->rcu, at which point the separate allocation will be gone completely. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
32 lines
702 B
C
32 lines
702 B
C
#ifndef _LINUX_TASK_WORK_H
|
|
#define _LINUX_TASK_WORK_H
|
|
|
|
#include <linux/list.h>
|
|
#include <linux/sched.h>
|
|
|
|
struct task_work;
|
|
typedef void (*task_work_func_t)(struct task_work *);
|
|
|
|
struct task_work {
|
|
struct hlist_node hlist;
|
|
task_work_func_t func;
|
|
};
|
|
|
|
static inline void
|
|
init_task_work(struct task_work *twork, task_work_func_t func)
|
|
{
|
|
twork->func = func;
|
|
}
|
|
|
|
int task_work_add(struct task_struct *task, struct task_work *twork, bool);
|
|
struct task_work *task_work_cancel(struct task_struct *, task_work_func_t);
|
|
void task_work_run(void);
|
|
|
|
static inline void exit_task_work(struct task_struct *task)
|
|
{
|
|
if (unlikely(!hlist_empty(&task->task_works)))
|
|
task_work_run();
|
|
}
|
|
|
|
#endif /* _LINUX_TASK_WORK_H */
|