]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - include/linux/kthread.h
3203e36b2ee81f746b6d87c16701cdc567274ebd
[mirror_ubuntu-bionic-kernel.git] / include / linux / kthread.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_KTHREAD_H
3 #define _LINUX_KTHREAD_H
4 /* Simple interface for creating and stopping kernel threads without mess. */
5 #include <linux/err.h>
6 #include <linux/sched.h>
7 #include <linux/cgroup.h>
8
9 __printf(4, 5)
10 struct task_struct *kthread_create_on_node(int (*threadfn)(void *data),
11 void *data,
12 int node,
13 const char namefmt[], ...);
14
15 /**
16 * kthread_create - create a kthread on the current node
17 * @threadfn: the function to run in the thread
18 * @data: data pointer for @threadfn()
19 * @namefmt: printf-style format string for the thread name
20 * @arg...: arguments for @namefmt.
21 *
22 * This macro will create a kthread on the current node, leaving it in
23 * the stopped state. This is just a helper for kthread_create_on_node();
24 * see the documentation there for more details.
25 */
26 #define kthread_create(threadfn, data, namefmt, arg...) \
27 kthread_create_on_node(threadfn, data, NUMA_NO_NODE, namefmt, ##arg)
28
29
30 struct task_struct *kthread_create_on_cpu(int (*threadfn)(void *data),
31 void *data,
32 unsigned int cpu,
33 const char *namefmt);
34
35 /**
36 * kthread_run - create and wake a thread.
37 * @threadfn: the function to run until signal_pending(current).
38 * @data: data ptr for @threadfn.
39 * @namefmt: printf-style name for the thread.
40 *
41 * Description: Convenient wrapper for kthread_create() followed by
42 * wake_up_process(). Returns the kthread or ERR_PTR(-ENOMEM).
43 */
44 #define kthread_run(threadfn, data, namefmt, ...) \
45 ({ \
46 struct task_struct *__k \
47 = kthread_create(threadfn, data, namefmt, ## __VA_ARGS__); \
48 if (!IS_ERR(__k)) \
49 wake_up_process(__k); \
50 __k; \
51 })
52
53 void free_kthread_struct(struct task_struct *k);
54 void kthread_bind(struct task_struct *k, unsigned int cpu);
55 void kthread_bind_mask(struct task_struct *k, const struct cpumask *mask);
56 int kthread_stop(struct task_struct *k);
57 bool kthread_should_stop(void);
58 bool kthread_should_park(void);
59 bool kthread_freezable_should_stop(bool *was_frozen);
60 void *kthread_data(struct task_struct *k);
61 void *kthread_probe_data(struct task_struct *k);
62 int kthread_park(struct task_struct *k);
63 void kthread_unpark(struct task_struct *k);
64 void kthread_parkme(void);
65
66 int kthreadd(void *unused);
67 extern struct task_struct *kthreadd_task;
68 extern int tsk_fork_get_node(struct task_struct *tsk);
69
70 /*
71 * Simple work processor based on kthread.
72 *
73 * This provides easier way to make use of kthreads. A kthread_work
74 * can be queued and flushed using queue/kthread_flush_work()
75 * respectively. Queued kthread_works are processed by a kthread
76 * running kthread_worker_fn().
77 */
78 struct kthread_work;
79 typedef void (*kthread_work_func_t)(struct kthread_work *work);
80 void kthread_delayed_work_timer_fn(struct timer_list *t);
81
82 enum {
83 KTW_FREEZABLE = 1 << 0, /* freeze during suspend */
84 };
85
86 struct kthread_worker {
87 unsigned int flags;
88 spinlock_t lock;
89 struct list_head work_list;
90 struct list_head delayed_work_list;
91 struct task_struct *task;
92 struct kthread_work *current_work;
93 };
94
95 struct kthread_work {
96 struct list_head node;
97 kthread_work_func_t func;
98 struct kthread_worker *worker;
99 /* Number of canceling calls that are running at the moment. */
100 int canceling;
101 };
102
103 struct kthread_delayed_work {
104 struct kthread_work work;
105 struct timer_list timer;
106 };
107
108 #define KTHREAD_WORKER_INIT(worker) { \
109 .lock = __SPIN_LOCK_UNLOCKED((worker).lock), \
110 .work_list = LIST_HEAD_INIT((worker).work_list), \
111 .delayed_work_list = LIST_HEAD_INIT((worker).delayed_work_list),\
112 }
113
114 #define KTHREAD_WORK_INIT(work, fn) { \
115 .node = LIST_HEAD_INIT((work).node), \
116 .func = (fn), \
117 }
118
119 #define KTHREAD_DELAYED_WORK_INIT(dwork, fn) { \
120 .work = KTHREAD_WORK_INIT((dwork).work, (fn)), \
121 .timer = __TIMER_INITIALIZER((TIMER_FUNC_TYPE)kthread_delayed_work_timer_fn,\
122 (TIMER_DATA_TYPE)&(dwork.timer), \
123 TIMER_IRQSAFE), \
124 }
125
126 #define DEFINE_KTHREAD_WORKER(worker) \
127 struct kthread_worker worker = KTHREAD_WORKER_INIT(worker)
128
129 #define DEFINE_KTHREAD_WORK(work, fn) \
130 struct kthread_work work = KTHREAD_WORK_INIT(work, fn)
131
132 #define DEFINE_KTHREAD_DELAYED_WORK(dwork, fn) \
133 struct kthread_delayed_work dwork = \
134 KTHREAD_DELAYED_WORK_INIT(dwork, fn)
135
136 /*
137 * kthread_worker.lock needs its own lockdep class key when defined on
138 * stack with lockdep enabled. Use the following macros in such cases.
139 */
140 #ifdef CONFIG_LOCKDEP
141 # define KTHREAD_WORKER_INIT_ONSTACK(worker) \
142 ({ kthread_init_worker(&worker); worker; })
143 # define DEFINE_KTHREAD_WORKER_ONSTACK(worker) \
144 struct kthread_worker worker = KTHREAD_WORKER_INIT_ONSTACK(worker)
145 #else
146 # define DEFINE_KTHREAD_WORKER_ONSTACK(worker) DEFINE_KTHREAD_WORKER(worker)
147 #endif
148
149 extern void __kthread_init_worker(struct kthread_worker *worker,
150 const char *name, struct lock_class_key *key);
151
152 #define kthread_init_worker(worker) \
153 do { \
154 static struct lock_class_key __key; \
155 __kthread_init_worker((worker), "("#worker")->lock", &__key); \
156 } while (0)
157
158 #define kthread_init_work(work, fn) \
159 do { \
160 memset((work), 0, sizeof(struct kthread_work)); \
161 INIT_LIST_HEAD(&(work)->node); \
162 (work)->func = (fn); \
163 } while (0)
164
165 #define kthread_init_delayed_work(dwork, fn) \
166 do { \
167 kthread_init_work(&(dwork)->work, (fn)); \
168 __setup_timer(&(dwork)->timer, \
169 (TIMER_FUNC_TYPE)kthread_delayed_work_timer_fn,\
170 (TIMER_DATA_TYPE)&(dwork)->timer, \
171 TIMER_IRQSAFE); \
172 } while (0)
173
174 int kthread_worker_fn(void *worker_ptr);
175
176 __printf(2, 3)
177 struct kthread_worker *
178 kthread_create_worker(unsigned int flags, const char namefmt[], ...);
179
180 __printf(3, 4) struct kthread_worker *
181 kthread_create_worker_on_cpu(int cpu, unsigned int flags,
182 const char namefmt[], ...);
183
184 bool kthread_queue_work(struct kthread_worker *worker,
185 struct kthread_work *work);
186
187 bool kthread_queue_delayed_work(struct kthread_worker *worker,
188 struct kthread_delayed_work *dwork,
189 unsigned long delay);
190
191 bool kthread_mod_delayed_work(struct kthread_worker *worker,
192 struct kthread_delayed_work *dwork,
193 unsigned long delay);
194
195 void kthread_flush_work(struct kthread_work *work);
196 void kthread_flush_worker(struct kthread_worker *worker);
197
198 bool kthread_cancel_work_sync(struct kthread_work *work);
199 bool kthread_cancel_delayed_work_sync(struct kthread_delayed_work *work);
200
201 void kthread_destroy_worker(struct kthread_worker *worker);
202
203 #ifdef CONFIG_BLK_CGROUP
204 void kthread_associate_blkcg(struct cgroup_subsys_state *css);
205 struct cgroup_subsys_state *kthread_blkcg(void);
206 #else
207 static inline void kthread_associate_blkcg(struct cgroup_subsys_state *css) { }
208 static inline struct cgroup_subsys_state *kthread_blkcg(void)
209 {
210 return NULL;
211 }
212 #endif
213 #endif /* _LINUX_KTHREAD_H */