blkcg: fix blkg_alloc() failure path
[linux-2.6.git] / include / linux / task_work.h
blob294d5d5e90b1fe410da2330f0bd0dfce132a021d
1 #ifndef _LINUX_TASK_WORK_H
2 #define _LINUX_TASK_WORK_H
4 #include <linux/list.h>
5 #include <linux/sched.h>
7 struct task_work;
8 typedef void (*task_work_func_t)(struct task_work *);
10 struct task_work {
11 struct hlist_node hlist;
12 task_work_func_t func;
13 void *data;
16 static inline void
17 init_task_work(struct task_work *twork, task_work_func_t func, void *data)
19 twork->func = func;
20 twork->data = data;
23 int task_work_add(struct task_struct *task, struct task_work *twork, bool);
24 struct task_work *task_work_cancel(struct task_struct *, task_work_func_t);
25 void task_work_run(void);
27 static inline void exit_task_work(struct task_struct *task)
29 if (unlikely(!hlist_empty(&task->task_works)))
30 task_work_run();
33 #endif /* _LINUX_TASK_WORK_H */