blob: 4fec8b7758951cf9395613b072659efdce33e1d1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_KTHREAD_H
2#define _LINUX_KTHREAD_H
3/* Simple interface for creating and stopping kernel threads without mess. */
4#include <linux/err.h>
5#include <linux/sched.h>
6
Joe Perchesb9075fa2011-10-31 17:11:33 -07007__printf(4, 5)
Eric Dumazet207205a2011-03-22 16:30:44 -07008struct task_struct *kthread_create_on_node(int (*threadfn)(void *data),
9 void *data,
10 int node,
Joe Perchesb9075fa2011-10-31 17:11:33 -070011 const char namefmt[], ...);
Eric Dumazet207205a2011-03-22 16:30:44 -070012
Jonathan Corbete154ccc2016-10-11 13:55:53 -070013/**
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.
19 *
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.
23 */
Eric Dumazet207205a2011-03-22 16:30:44 -070024#define kthread_create(threadfn, data, namefmt, arg...) \
Andrew Mortone9f06982015-09-04 15:42:42 -070025 kthread_create_on_node(threadfn, data, NUMA_NO_NODE, namefmt, ##arg)
Eric Dumazet207205a2011-03-22 16:30:44 -070026
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Thomas Gleixner2a1d4462012-07-16 10:42:36 +000028struct task_struct *kthread_create_on_cpu(int (*threadfn)(void *data),
29 void *data,
30 unsigned int cpu,
31 const char *namefmt);
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/**
Randy Dunlap9e37bd32006-06-25 05:49:19 -070034 * kthread_run - create and wake a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 * @threadfn: the function to run until signal_pending(current).
36 * @data: data ptr for @threadfn.
37 * @namefmt: printf-style name for the thread.
38 *
39 * Description: Convenient wrapper for kthread_create() followed by
Randy Dunlap9e37bd32006-06-25 05:49:19 -070040 * wake_up_process(). Returns the kthread or ERR_PTR(-ENOMEM).
41 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#define kthread_run(threadfn, data, namefmt, ...) \
43({ \
44 struct task_struct *__k \
45 = kthread_create(threadfn, data, namefmt, ## __VA_ARGS__); \
46 if (!IS_ERR(__k)) \
47 wake_up_process(__k); \
48 __k; \
49})
50
Oleg Nesterov1da5c462016-11-29 18:50:57 +010051void free_kthread_struct(struct task_struct *k);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052void kthread_bind(struct task_struct *k, unsigned int cpu);
Peter Zijlstra25834c72015-05-15 17:43:34 +020053void kthread_bind_mask(struct task_struct *k, const struct cpumask *mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054int kthread_stop(struct task_struct *k);
Thomas Gleixner2a1d4462012-07-16 10:42:36 +000055bool kthread_should_stop(void);
56bool kthread_should_park(void);
Tejun Heo8a32c442011-11-21 12:32:23 -080057bool kthread_freezable_should_stop(bool *was_frozen);
Tejun Heo82805ab2010-06-29 10:07:09 +020058void *kthread_data(struct task_struct *k);
Petr Mladeke7005912016-10-11 13:55:17 -070059void *kthread_probe_data(struct task_struct *k);
Thomas Gleixner2a1d4462012-07-16 10:42:36 +000060int kthread_park(struct task_struct *k);
61void kthread_unpark(struct task_struct *k);
62void kthread_parkme(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Eric W. Biederman73c27992007-05-09 02:34:32 -070064int kthreadd(void *unused);
65extern struct task_struct *kthreadd_task;
Eric Dumazet207205a2011-03-22 16:30:44 -070066extern int tsk_fork_get_node(struct task_struct *tsk);
Eric W. Biederman73c27992007-05-09 02:34:32 -070067
Tejun Heob56c0d82010-06-29 10:07:09 +020068/*
69 * Simple work processor based on kthread.
70 *
71 * This provides easier way to make use of kthreads. A kthread_work
Petr Mladek39891442016-10-11 13:55:20 -070072 * can be queued and flushed using queue/kthread_flush_work()
Tejun Heob56c0d82010-06-29 10:07:09 +020073 * respectively. Queued kthread_works are processed by a kthread
74 * running kthread_worker_fn().
Tejun Heob56c0d82010-06-29 10:07:09 +020075 */
76struct kthread_work;
77typedef void (*kthread_work_func_t)(struct kthread_work *work);
Petr Mladek22597dc2016-10-11 13:55:40 -070078void kthread_delayed_work_timer_fn(unsigned long __data);
Tejun Heob56c0d82010-06-29 10:07:09 +020079
Petr Mladekdbf52682016-10-11 13:55:50 -070080enum {
81 KTW_FREEZABLE = 1 << 0, /* freeze during suspend */
82};
83
Tejun Heob56c0d82010-06-29 10:07:09 +020084struct kthread_worker {
Petr Mladekdbf52682016-10-11 13:55:50 -070085 unsigned int flags;
Tejun Heob56c0d82010-06-29 10:07:09 +020086 spinlock_t lock;
87 struct list_head work_list;
Petr Mladek22597dc2016-10-11 13:55:40 -070088 struct list_head delayed_work_list;
Tejun Heob56c0d82010-06-29 10:07:09 +020089 struct task_struct *task;
Tejun Heo46f3d972012-07-19 13:52:53 -070090 struct kthread_work *current_work;
Tejun Heob56c0d82010-06-29 10:07:09 +020091};
92
93struct kthread_work {
94 struct list_head node;
95 kthread_work_func_t func;
Tejun Heo46f3d972012-07-19 13:52:53 -070096 struct kthread_worker *worker;
Petr Mladek37be45d2016-10-11 13:55:43 -070097 /* Number of canceling calls that are running at the moment. */
98 int canceling;
Tejun Heob56c0d82010-06-29 10:07:09 +020099};
100
Petr Mladek22597dc2016-10-11 13:55:40 -0700101struct kthread_delayed_work {
102 struct kthread_work work;
103 struct timer_list timer;
104};
105
Tejun Heob56c0d82010-06-29 10:07:09 +0200106#define KTHREAD_WORKER_INIT(worker) { \
Thomas Gleixner92578c0b2011-01-23 15:24:55 +0100107 .lock = __SPIN_LOCK_UNLOCKED((worker).lock), \
Tejun Heob56c0d82010-06-29 10:07:09 +0200108 .work_list = LIST_HEAD_INIT((worker).work_list), \
Petr Mladek22597dc2016-10-11 13:55:40 -0700109 .delayed_work_list = LIST_HEAD_INIT((worker).delayed_work_list),\
Tejun Heob56c0d82010-06-29 10:07:09 +0200110 }
111
112#define KTHREAD_WORK_INIT(work, fn) { \
113 .node = LIST_HEAD_INIT((work).node), \
114 .func = (fn), \
Tejun Heob56c0d82010-06-29 10:07:09 +0200115 }
116
Petr Mladek22597dc2016-10-11 13:55:40 -0700117#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), \
121 TIMER_IRQSAFE), \
122 }
123
Tejun Heob56c0d82010-06-29 10:07:09 +0200124#define DEFINE_KTHREAD_WORKER(worker) \
125 struct kthread_worker worker = KTHREAD_WORKER_INIT(worker)
126
127#define DEFINE_KTHREAD_WORK(work, fn) \
128 struct kthread_work work = KTHREAD_WORK_INIT(work, fn)
129
Petr Mladek22597dc2016-10-11 13:55:40 -0700130#define DEFINE_KTHREAD_DELAYED_WORK(dwork, fn) \
131 struct kthread_delayed_work dwork = \
132 KTHREAD_DELAYED_WORK_INIT(dwork, fn)
133
Yong Zhang4f32e9b2010-12-22 10:27:53 +0100134/*
Lai Jiangshan95847e12014-07-26 12:04:00 +0800135 * kthread_worker.lock needs its own lockdep class key when defined on
136 * stack with lockdep enabled. Use the following macros in such cases.
Yong Zhang4f32e9b2010-12-22 10:27:53 +0100137 */
138#ifdef CONFIG_LOCKDEP
139# define KTHREAD_WORKER_INIT_ONSTACK(worker) \
Petr Mladek39891442016-10-11 13:55:20 -0700140 ({ kthread_init_worker(&worker); worker; })
Yong Zhang4f32e9b2010-12-22 10:27:53 +0100141# define DEFINE_KTHREAD_WORKER_ONSTACK(worker) \
142 struct kthread_worker worker = KTHREAD_WORKER_INIT_ONSTACK(worker)
Yong Zhang4f32e9b2010-12-22 10:27:53 +0100143#else
144# define DEFINE_KTHREAD_WORKER_ONSTACK(worker) DEFINE_KTHREAD_WORKER(worker)
Yong Zhang4f32e9b2010-12-22 10:27:53 +0100145#endif
Tejun Heob56c0d82010-06-29 10:07:09 +0200146
Petr Mladek39891442016-10-11 13:55:20 -0700147extern void __kthread_init_worker(struct kthread_worker *worker,
Yong Zhang4f32e9b2010-12-22 10:27:53 +0100148 const char *name, struct lock_class_key *key);
149
Petr Mladek39891442016-10-11 13:55:20 -0700150#define kthread_init_worker(worker) \
Yong Zhang4f32e9b2010-12-22 10:27:53 +0100151 do { \
152 static struct lock_class_key __key; \
Petr Mladek39891442016-10-11 13:55:20 -0700153 __kthread_init_worker((worker), "("#worker")->lock", &__key); \
Yong Zhang4f32e9b2010-12-22 10:27:53 +0100154 } while (0)
155
Petr Mladek39891442016-10-11 13:55:20 -0700156#define kthread_init_work(work, fn) \
Yong Zhang4f32e9b2010-12-22 10:27:53 +0100157 do { \
158 memset((work), 0, sizeof(struct kthread_work)); \
159 INIT_LIST_HEAD(&(work)->node); \
160 (work)->func = (fn); \
Yong Zhang4f32e9b2010-12-22 10:27:53 +0100161 } while (0)
Tejun Heob56c0d82010-06-29 10:07:09 +0200162
Petr Mladek22597dc2016-10-11 13:55:40 -0700163#define kthread_init_delayed_work(dwork, fn) \
164 do { \
165 kthread_init_work(&(dwork)->work, (fn)); \
166 __setup_timer(&(dwork)->timer, \
167 kthread_delayed_work_timer_fn, \
168 (unsigned long)(dwork), \
169 TIMER_IRQSAFE); \
170 } while (0)
171
Tejun Heob56c0d82010-06-29 10:07:09 +0200172int kthread_worker_fn(void *worker_ptr);
173
Petr Mladekdbf52682016-10-11 13:55:50 -0700174__printf(2, 3)
Petr Mladekfbae2d42016-10-11 13:55:30 -0700175struct kthread_worker *
Petr Mladekdbf52682016-10-11 13:55:50 -0700176kthread_create_worker(unsigned int flags, const char namefmt[], ...);
Petr Mladekfbae2d42016-10-11 13:55:30 -0700177
Nicolas Ioossc0b942a2016-12-12 16:40:39 -0800178__printf(3, 4) struct kthread_worker *
Petr Mladekdbf52682016-10-11 13:55:50 -0700179kthread_create_worker_on_cpu(int cpu, unsigned int flags,
180 const char namefmt[], ...);
Petr Mladekfbae2d42016-10-11 13:55:30 -0700181
Petr Mladek39891442016-10-11 13:55:20 -0700182bool kthread_queue_work(struct kthread_worker *worker,
Tejun Heob56c0d82010-06-29 10:07:09 +0200183 struct kthread_work *work);
Petr Mladek22597dc2016-10-11 13:55:40 -0700184
185bool kthread_queue_delayed_work(struct kthread_worker *worker,
186 struct kthread_delayed_work *dwork,
187 unsigned long delay);
188
Petr Mladek9a6b06c2016-10-11 13:55:46 -0700189bool kthread_mod_delayed_work(struct kthread_worker *worker,
190 struct kthread_delayed_work *dwork,
191 unsigned long delay);
192
Petr Mladek39891442016-10-11 13:55:20 -0700193void kthread_flush_work(struct kthread_work *work);
194void kthread_flush_worker(struct kthread_worker *worker);
Tejun Heob56c0d82010-06-29 10:07:09 +0200195
Petr Mladek37be45d2016-10-11 13:55:43 -0700196bool kthread_cancel_work_sync(struct kthread_work *work);
197bool kthread_cancel_delayed_work_sync(struct kthread_delayed_work *work);
198
Petr Mladek35033fe2016-10-11 13:55:33 -0700199void kthread_destroy_worker(struct kthread_worker *worker);
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201#endif /* _LINUX_KTHREAD_H */