net: dev: Makes sure netif_rx() can be invoked in any context.
[linux-block.git] / include / linux / kthread.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
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
9bf5b9eb
CH
8struct mm_struct;
9
b9075fa9 10__printf(4, 5)
207205a2
ED
11struct task_struct *kthread_create_on_node(int (*threadfn)(void *data),
12 void *data,
13 int node,
b9075fa9 14 const char namefmt[], ...);
207205a2 15
e154ccc8
JC
16/**
17 * kthread_create - create a kthread on the current node
18 * @threadfn: the function to run in the thread
19 * @data: data pointer for @threadfn()
20 * @namefmt: printf-style format string for the thread name
20ce0c2d 21 * @arg: arguments for @namefmt.
e154ccc8
JC
22 *
23 * This macro will create a kthread on the current node, leaving it in
24 * the stopped state. This is just a helper for kthread_create_on_node();
25 * see the documentation there for more details.
26 */
207205a2 27#define kthread_create(threadfn, data, namefmt, arg...) \
e9f06986 28 kthread_create_on_node(threadfn, data, NUMA_NO_NODE, namefmt, ##arg)
207205a2 29
1da177e4 30
2a1d4460
TG
31struct task_struct *kthread_create_on_cpu(int (*threadfn)(void *data),
32 void *data,
33 unsigned int cpu,
34 const char *namefmt);
35
d6986ce2 36void get_kthread_comm(char *buf, size_t buf_size, struct task_struct *tsk);
40966e31 37bool set_kthread_struct(struct task_struct *p);
00b89fe0 38
ac687e6e
PZ
39void kthread_set_per_cpu(struct task_struct *k, int cpu);
40bool kthread_is_per_cpu(struct task_struct *k);
41
1da177e4 42/**
9e37bd30 43 * kthread_run - create and wake a thread.
1da177e4
LT
44 * @threadfn: the function to run until signal_pending(current).
45 * @data: data ptr for @threadfn.
46 * @namefmt: printf-style name for the thread.
47 *
48 * Description: Convenient wrapper for kthread_create() followed by
9e37bd30
RD
49 * wake_up_process(). Returns the kthread or ERR_PTR(-ENOMEM).
50 */
1da177e4
LT
51#define kthread_run(threadfn, data, namefmt, ...) \
52({ \
53 struct task_struct *__k \
54 = kthread_create(threadfn, data, namefmt, ## __VA_ARGS__); \
55 if (!IS_ERR(__k)) \
56 wake_up_process(__k); \
57 __k; \
58})
59
800977f6
CH
60/**
61 * kthread_run_on_cpu - create and wake a cpu bound thread.
62 * @threadfn: the function to run until signal_pending(current).
63 * @data: data ptr for @threadfn.
64 * @cpu: The cpu on which the thread should be bound,
65 * @namefmt: printf-style name for the thread. Format is restricted
66 * to "name.*%u". Code fills in cpu number.
67 *
68 * Description: Convenient wrapper for kthread_create_on_cpu()
69 * followed by wake_up_process(). Returns the kthread or
70 * ERR_PTR(-ENOMEM).
71 */
72static inline struct task_struct *
73kthread_run_on_cpu(int (*threadfn)(void *data), void *data,
74 unsigned int cpu, const char *namefmt)
75{
76 struct task_struct *p;
77
78 p = kthread_create_on_cpu(threadfn, data, cpu, namefmt);
79 if (!IS_ERR(p))
80 wake_up_process(p);
81
82 return p;
83}
84
1da5c46f 85void free_kthread_struct(struct task_struct *k);
1da177e4 86void kthread_bind(struct task_struct *k, unsigned int cpu);
25834c73 87void kthread_bind_mask(struct task_struct *k, const struct cpumask *mask);
1da177e4 88int kthread_stop(struct task_struct *k);
2a1d4460
TG
89bool kthread_should_stop(void);
90bool kthread_should_park(void);
0121805d 91bool __kthread_should_park(struct task_struct *k);
8a32c441 92bool kthread_freezable_should_stop(bool *was_frozen);
52782c92 93void *kthread_func(struct task_struct *k);
82805ab7 94void *kthread_data(struct task_struct *k);
e700591a 95void *kthread_probe_data(struct task_struct *k);
2a1d4460
TG
96int kthread_park(struct task_struct *k);
97void kthread_unpark(struct task_struct *k);
98void kthread_parkme(void);
bbda86e9 99void kthread_exit(long result) __noreturn;
cead1855 100void kthread_complete_and_exit(struct completion *, long) __noreturn;
1da177e4 101
73c27992
EB
102int kthreadd(void *unused);
103extern struct task_struct *kthreadd_task;
207205a2 104extern int tsk_fork_get_node(struct task_struct *tsk);
73c27992 105
b56c0d89
TH
106/*
107 * Simple work processor based on kthread.
108 *
109 * This provides easier way to make use of kthreads. A kthread_work
3989144f 110 * can be queued and flushed using queue/kthread_flush_work()
b56c0d89
TH
111 * respectively. Queued kthread_works are processed by a kthread
112 * running kthread_worker_fn().
b56c0d89
TH
113 */
114struct kthread_work;
115typedef void (*kthread_work_func_t)(struct kthread_work *work);
fe5c3b69 116void kthread_delayed_work_timer_fn(struct timer_list *t);
b56c0d89 117
dbf52682
PM
118enum {
119 KTW_FREEZABLE = 1 << 0, /* freeze during suspend */
120};
121
b56c0d89 122struct kthread_worker {
dbf52682 123 unsigned int flags;
fe99a4f4 124 raw_spinlock_t lock;
b56c0d89 125 struct list_head work_list;
22597dc3 126 struct list_head delayed_work_list;
b56c0d89 127 struct task_struct *task;
46f3d976 128 struct kthread_work *current_work;
b56c0d89
TH
129};
130
131struct kthread_work {
132 struct list_head node;
133 kthread_work_func_t func;
46f3d976 134 struct kthread_worker *worker;
37be45d4
PM
135 /* Number of canceling calls that are running at the moment. */
136 int canceling;
b56c0d89
TH
137};
138
22597dc3
PM
139struct kthread_delayed_work {
140 struct kthread_work work;
141 struct timer_list timer;
142};
143
b56c0d89 144#define KTHREAD_WORKER_INIT(worker) { \
fe99a4f4 145 .lock = __RAW_SPIN_LOCK_UNLOCKED((worker).lock), \
b56c0d89 146 .work_list = LIST_HEAD_INIT((worker).work_list), \
22597dc3 147 .delayed_work_list = LIST_HEAD_INIT((worker).delayed_work_list),\
b56c0d89
TH
148 }
149
150#define KTHREAD_WORK_INIT(work, fn) { \
151 .node = LIST_HEAD_INIT((work).node), \
152 .func = (fn), \
b56c0d89
TH
153 }
154
22597dc3
PM
155#define KTHREAD_DELAYED_WORK_INIT(dwork, fn) { \
156 .work = KTHREAD_WORK_INIT((dwork).work, (fn)), \
841b86f3 157 .timer = __TIMER_INITIALIZER(kthread_delayed_work_timer_fn,\
22597dc3
PM
158 TIMER_IRQSAFE), \
159 }
160
b56c0d89
TH
161#define DEFINE_KTHREAD_WORKER(worker) \
162 struct kthread_worker worker = KTHREAD_WORKER_INIT(worker)
163
164#define DEFINE_KTHREAD_WORK(work, fn) \
165 struct kthread_work work = KTHREAD_WORK_INIT(work, fn)
166
22597dc3
PM
167#define DEFINE_KTHREAD_DELAYED_WORK(dwork, fn) \
168 struct kthread_delayed_work dwork = \
169 KTHREAD_DELAYED_WORK_INIT(dwork, fn)
170
4f32e9b1 171/*
95847e1b
LJ
172 * kthread_worker.lock needs its own lockdep class key when defined on
173 * stack with lockdep enabled. Use the following macros in such cases.
4f32e9b1
YZ
174 */
175#ifdef CONFIG_LOCKDEP
176# define KTHREAD_WORKER_INIT_ONSTACK(worker) \
3989144f 177 ({ kthread_init_worker(&worker); worker; })
4f32e9b1
YZ
178# define DEFINE_KTHREAD_WORKER_ONSTACK(worker) \
179 struct kthread_worker worker = KTHREAD_WORKER_INIT_ONSTACK(worker)
4f32e9b1
YZ
180#else
181# define DEFINE_KTHREAD_WORKER_ONSTACK(worker) DEFINE_KTHREAD_WORKER(worker)
4f32e9b1
YZ
182#endif
183
3989144f 184extern void __kthread_init_worker(struct kthread_worker *worker,
4f32e9b1
YZ
185 const char *name, struct lock_class_key *key);
186
3989144f 187#define kthread_init_worker(worker) \
4f32e9b1
YZ
188 do { \
189 static struct lock_class_key __key; \
3989144f 190 __kthread_init_worker((worker), "("#worker")->lock", &__key); \
4f32e9b1
YZ
191 } while (0)
192
3989144f 193#define kthread_init_work(work, fn) \
4f32e9b1
YZ
194 do { \
195 memset((work), 0, sizeof(struct kthread_work)); \
196 INIT_LIST_HEAD(&(work)->node); \
197 (work)->func = (fn); \
4f32e9b1 198 } while (0)
b56c0d89 199
22597dc3
PM
200#define kthread_init_delayed_work(dwork, fn) \
201 do { \
202 kthread_init_work(&(dwork)->work, (fn)); \
ad01423a 203 timer_setup(&(dwork)->timer, \
98c985d7
PM
204 kthread_delayed_work_timer_fn, \
205 TIMER_IRQSAFE); \
22597dc3
PM
206 } while (0)
207
b56c0d89
TH
208int kthread_worker_fn(void *worker_ptr);
209
dbf52682 210__printf(2, 3)
fbae2d44 211struct kthread_worker *
dbf52682 212kthread_create_worker(unsigned int flags, const char namefmt[], ...);
fbae2d44 213
c0b942a7 214__printf(3, 4) struct kthread_worker *
dbf52682
PM
215kthread_create_worker_on_cpu(int cpu, unsigned int flags,
216 const char namefmt[], ...);
fbae2d44 217
3989144f 218bool kthread_queue_work(struct kthread_worker *worker,
b56c0d89 219 struct kthread_work *work);
22597dc3
PM
220
221bool kthread_queue_delayed_work(struct kthread_worker *worker,
222 struct kthread_delayed_work *dwork,
223 unsigned long delay);
224
9a6b06c8
PM
225bool kthread_mod_delayed_work(struct kthread_worker *worker,
226 struct kthread_delayed_work *dwork,
227 unsigned long delay);
228
3989144f
PM
229void kthread_flush_work(struct kthread_work *work);
230void kthread_flush_worker(struct kthread_worker *worker);
b56c0d89 231
37be45d4
PM
232bool kthread_cancel_work_sync(struct kthread_work *work);
233bool kthread_cancel_delayed_work_sync(struct kthread_delayed_work *work);
234
35033fe9
PM
235void kthread_destroy_worker(struct kthread_worker *worker);
236
f5678e7f
CH
237void kthread_use_mm(struct mm_struct *mm);
238void kthread_unuse_mm(struct mm_struct *mm);
9bf5b9eb 239
8af0c18a
SB
240struct cgroup_subsys_state;
241
0b508bc9 242#ifdef CONFIG_BLK_CGROUP
05e3db95
SL
243void kthread_associate_blkcg(struct cgroup_subsys_state *css);
244struct cgroup_subsys_state *kthread_blkcg(void);
245#else
246static inline void kthread_associate_blkcg(struct cgroup_subsys_state *css) { }
247static inline struct cgroup_subsys_state *kthread_blkcg(void)
248{
249 return NULL;
250}
251#endif
1da177e4 252#endif /* _LINUX_KTHREAD_H */