1 #ifndef _LINUX_KTHREAD_H
2 #define _LINUX_KTHREAD_H
3 /* Simple interface for creating and stopping kernel threads without mess. */
5 #include <linux/sched.h>
8 struct task_struct
*kthread_create_on_node(int (*threadfn
)(void *data
),
11 const char namefmt
[], ...);
14 * kthread_create - create a kthread on the current node
15 * @threadfn: the function to run in the thread
16 * @data: data pointer for @threadfn()
17 * @namefmt: printf-style format string for the thread name
18 * @...: arguments for @namefmt.
20 * This macro will create a kthread on the current node, leaving it in
21 * the stopped state. This is just a helper for kthread_create_on_node();
22 * see the documentation there for more details.
24 #define kthread_create(threadfn, data, namefmt, arg...) \
25 kthread_create_on_node(threadfn, data, NUMA_NO_NODE, namefmt, ##arg)
28 struct task_struct
*kthread_create_on_cpu(int (*threadfn
)(void *data
),
34 * kthread_run - create and wake a thread.
35 * @threadfn: the function to run until signal_pending(current).
36 * @data: data ptr for @threadfn.
37 * @namefmt: printf-style name for the thread.
39 * Description: Convenient wrapper for kthread_create() followed by
40 * wake_up_process(). Returns the kthread or ERR_PTR(-ENOMEM).
42 #define kthread_run(threadfn, data, namefmt, ...) \
44 struct task_struct *__k \
45 = kthread_create(threadfn, data, namefmt, ## __VA_ARGS__); \
47 wake_up_process(__k); \
51 void free_kthread_struct(struct task_struct
*k
);
52 void kthread_bind(struct task_struct
*k
, unsigned int cpu
);
53 void kthread_bind_mask(struct task_struct
*k
, const struct cpumask
*mask
);
54 int kthread_stop(struct task_struct
*k
);
55 bool kthread_should_stop(void);
56 bool kthread_should_park(void);
57 bool kthread_freezable_should_stop(bool *was_frozen
);
58 void *kthread_data(struct task_struct
*k
);
59 void *kthread_probe_data(struct task_struct
*k
);
60 int kthread_park(struct task_struct
*k
);
61 void kthread_unpark(struct task_struct
*k
);
62 void kthread_parkme(void);
64 int kthreadd(void *unused
);
65 extern struct task_struct
*kthreadd_task
;
66 extern int tsk_fork_get_node(struct task_struct
*tsk
);
69 * Simple work processor based on kthread.
71 * This provides easier way to make use of kthreads. A kthread_work
72 * can be queued and flushed using queue/kthread_flush_work()
73 * respectively. Queued kthread_works are processed by a kthread
74 * running kthread_worker_fn().
77 typedef void (*kthread_work_func_t
)(struct kthread_work
*work
);
78 void kthread_delayed_work_timer_fn(unsigned long __data
);
81 KTW_FREEZABLE
= 1 << 0, /* freeze during suspend */
84 struct kthread_worker
{
87 struct list_head work_list
;
88 struct list_head delayed_work_list
;
89 struct task_struct
*task
;
90 struct kthread_work
*current_work
;
94 struct list_head node
;
95 kthread_work_func_t func
;
96 struct kthread_worker
*worker
;
97 /* Number of canceling calls that are running at the moment. */
101 struct kthread_delayed_work
{
102 struct kthread_work work
;
103 struct timer_list timer
;
106 #define KTHREAD_WORKER_INIT(worker) { \
107 .lock = __SPIN_LOCK_UNLOCKED((worker).lock), \
108 .work_list = LIST_HEAD_INIT((worker).work_list), \
109 .delayed_work_list = LIST_HEAD_INIT((worker).delayed_work_list),\
112 #define KTHREAD_WORK_INIT(work, fn) { \
113 .node = LIST_HEAD_INIT((work).node), \
117 #define KTHREAD_DELAYED_WORK_INIT(dwork, fn) { \
118 .work = KTHREAD_WORK_INIT((dwork).work, (fn)), \
119 .timer = __TIMER_INITIALIZER(kthread_delayed_work_timer_fn, \
120 0, (unsigned long)&(dwork), \
124 #define DEFINE_KTHREAD_WORKER(worker) \
125 struct kthread_worker worker = KTHREAD_WORKER_INIT(worker)
127 #define DEFINE_KTHREAD_WORK(work, fn) \
128 struct kthread_work work = KTHREAD_WORK_INIT(work, fn)
130 #define DEFINE_KTHREAD_DELAYED_WORK(dwork, fn) \
131 struct kthread_delayed_work dwork = \
132 KTHREAD_DELAYED_WORK_INIT(dwork, fn)
135 * kthread_worker.lock needs its own lockdep class key when defined on
136 * stack with lockdep enabled. Use the following macros in such cases.
138 #ifdef CONFIG_LOCKDEP
139 # define KTHREAD_WORKER_INIT_ONSTACK(worker) \
140 ({ kthread_init_worker(&worker); worker; })
141 # define DEFINE_KTHREAD_WORKER_ONSTACK(worker) \
142 struct kthread_worker worker = KTHREAD_WORKER_INIT_ONSTACK(worker)
144 # define DEFINE_KTHREAD_WORKER_ONSTACK(worker) DEFINE_KTHREAD_WORKER(worker)
147 extern void __kthread_init_worker(struct kthread_worker
*worker
,
148 const char *name
, struct lock_class_key
*key
);
150 #define kthread_init_worker(worker) \
152 static struct lock_class_key __key; \
153 __kthread_init_worker((worker), "("#worker")->lock", &__key); \
156 #define kthread_init_work(work, fn) \
158 memset((work), 0, sizeof(struct kthread_work)); \
159 INIT_LIST_HEAD(&(work)->node); \
160 (work)->func = (fn); \
163 #define kthread_init_delayed_work(dwork, fn) \
165 kthread_init_work(&(dwork)->work, (fn)); \
166 __setup_timer(&(dwork)->timer, \
167 kthread_delayed_work_timer_fn, \
168 (unsigned long)(dwork), \
172 int kthread_worker_fn(void *worker_ptr
);
175 struct kthread_worker
*
176 kthread_create_worker(unsigned int flags
, const char namefmt
[], ...);
178 __printf(3, 4) struct kthread_worker
*
179 kthread_create_worker_on_cpu(int cpu
, unsigned int flags
,
180 const char namefmt
[], ...);
182 bool kthread_queue_work(struct kthread_worker
*worker
,
183 struct kthread_work
*work
);
185 bool kthread_queue_delayed_work(struct kthread_worker
*worker
,
186 struct kthread_delayed_work
*dwork
,
187 unsigned long delay
);
189 bool kthread_mod_delayed_work(struct kthread_worker
*worker
,
190 struct kthread_delayed_work
*dwork
,
191 unsigned long delay
);
193 void kthread_flush_work(struct kthread_work
*work
);
194 void kthread_flush_worker(struct kthread_worker
*worker
);
196 bool kthread_cancel_work_sync(struct kthread_work
*work
);
197 bool kthread_cancel_delayed_work_sync(struct kthread_delayed_work
*work
);
199 void kthread_destroy_worker(struct kthread_worker
*worker
);
201 #endif /* _LINUX_KTHREAD_H */