]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - kernel/kthread.c
UBUNTU: Ubuntu-5.11.0-22.23
[mirror_ubuntu-hirsute-kernel.git] / kernel / kthread.c
CommitLineData
457c8996 1// SPDX-License-Identifier: GPL-2.0-only
1da177e4
LT
2/* Kernel thread helper functions.
3 * Copyright (C) 2004 IBM Corporation, Rusty Russell.
9bf5b9eb 4 * Copyright (C) 2009 Red Hat, Inc.
1da177e4 5 *
73c27992 6 * Creation is done via kthreadd, so that we get a clean environment
1da177e4
LT
7 * even if we're invoked from userspace (think modprobe, hotplug cpu,
8 * etc.).
9 */
ae7e81c0 10#include <uapi/linux/sched/types.h>
9bf5b9eb
CH
11#include <linux/mm.h>
12#include <linux/mmu_context.h>
1da177e4 13#include <linux/sched.h>
9bf5b9eb 14#include <linux/sched/mm.h>
29930025 15#include <linux/sched/task.h>
1da177e4
LT
16#include <linux/kthread.h>
17#include <linux/completion.h>
18#include <linux/err.h>
8af0c18a 19#include <linux/cgroup.h>
58568d2a 20#include <linux/cpuset.h>
1da177e4
LT
21#include <linux/unistd.h>
22#include <linux/file.h>
9984de1a 23#include <linux/export.h>
97d1f15b 24#include <linux/mutex.h>
b56c0d89
TH
25#include <linux/slab.h>
26#include <linux/freezer.h>
a74fb73c 27#include <linux/ptrace.h>
cd42d559 28#include <linux/uaccess.h>
98fa15f3 29#include <linux/numa.h>
9cc5b865 30#include <linux/sched/isolation.h>
ad8d75ff 31#include <trace/events/sched.h>
1da177e4 32
9bf5b9eb 33
73c27992
EB
34static DEFINE_SPINLOCK(kthread_create_lock);
35static LIST_HEAD(kthread_create_list);
36struct task_struct *kthreadd_task;
1da177e4
LT
37
38struct kthread_create_info
39{
73c27992 40 /* Information passed to kthread() from kthreadd. */
1da177e4
LT
41 int (*threadfn)(void *data);
42 void *data;
207205a2 43 int node;
1da177e4 44
73c27992 45 /* Result passed back to kthread_create() from kthreadd. */
1da177e4 46 struct task_struct *result;
786235ee 47 struct completion *done;
65f27f38 48
73c27992 49 struct list_head list;
1da177e4
LT
50};
51
63706172 52struct kthread {
2a1d4460
TG
53 unsigned long flags;
54 unsigned int cpu;
52782c92 55 int (*threadfn)(void *);
82805ab7 56 void *data;
37c54f9b 57 mm_segment_t oldfs;
2a1d4460 58 struct completion parked;
63706172 59 struct completion exited;
0b508bc9 60#ifdef CONFIG_BLK_CGROUP
05e3db95
SL
61 struct cgroup_subsys_state *blkcg_css;
62#endif
1da177e4
LT
63};
64
2a1d4460
TG
65enum KTHREAD_BITS {
66 KTHREAD_IS_PER_CPU = 0,
67 KTHREAD_SHOULD_STOP,
68 KTHREAD_SHOULD_PARK,
2a1d4460
TG
69};
70
1da5c46f
ON
71static inline void set_kthread_struct(void *kthread)
72{
73 /*
74 * We abuse ->set_child_tid to avoid the new member and because it
75 * can't be wrongly copied by copy_process(). We also rely on fact
76 * that the caller can't exec, so PF_KTHREAD can't be cleared.
77 */
78 current->set_child_tid = (__force void __user *)kthread;
79}
4ecdafc8
ON
80
81static inline struct kthread *to_kthread(struct task_struct *k)
82{
1da5c46f
ON
83 WARN_ON(!(k->flags & PF_KTHREAD));
84 return (__force void *)k->set_child_tid;
4ecdafc8
ON
85}
86
4c6b89c4
PZ
87/*
88 * Variant of to_kthread() that doesn't assume @p is a kthread.
89 *
90 * Per construction; when:
91 *
92 * (p->flags & PF_KTHREAD) && p->set_child_tid
93 *
94 * the task is both a kthread and struct kthread is persistent. However
95 * PF_KTHREAD on it's own is not, kernel_thread() can exec() (See umh.c and
96 * begin_new_exec()).
97 */
98static inline struct kthread *__to_kthread(struct task_struct *p)
99{
100 void *kthread = (__force void *)p->set_child_tid;
101 if (kthread && !(p->flags & PF_KTHREAD))
102 kthread = NULL;
103 return kthread;
104}
105
1da5c46f
ON
106void free_kthread_struct(struct task_struct *k)
107{
05e3db95
SL
108 struct kthread *kthread;
109
1da5c46f
ON
110 /*
111 * Can be NULL if this kthread was created by kernel_thread()
112 * or if kmalloc() in kthread() failed.
113 */
05e3db95 114 kthread = to_kthread(k);
0b508bc9 115#ifdef CONFIG_BLK_CGROUP
05e3db95
SL
116 WARN_ON_ONCE(kthread && kthread->blkcg_css);
117#endif
118 kfree(kthread);
1da5c46f
ON
119}
120
9e37bd30
RD
121/**
122 * kthread_should_stop - should this kthread return now?
123 *
72fd4a35 124 * When someone calls kthread_stop() on your kthread, it will be woken
9e37bd30
RD
125 * and this will return true. You should then return, and your return
126 * value will be passed through to kthread_stop().
127 */
2a1d4460 128bool kthread_should_stop(void)
1da177e4 129{
2a1d4460 130 return test_bit(KTHREAD_SHOULD_STOP, &to_kthread(current)->flags);
1da177e4
LT
131}
132EXPORT_SYMBOL(kthread_should_stop);
133
0121805d
MK
134bool __kthread_should_park(struct task_struct *k)
135{
136 return test_bit(KTHREAD_SHOULD_PARK, &to_kthread(k)->flags);
137}
138EXPORT_SYMBOL_GPL(__kthread_should_park);
139
2a1d4460
TG
140/**
141 * kthread_should_park - should this kthread park now?
142 *
143 * When someone calls kthread_park() on your kthread, it will be woken
144 * and this will return true. You should then do the necessary
145 * cleanup and call kthread_parkme()
146 *
147 * Similar to kthread_should_stop(), but this keeps the thread alive
148 * and in a park position. kthread_unpark() "restarts" the thread and
149 * calls the thread function again.
150 */
151bool kthread_should_park(void)
152{
0121805d 153 return __kthread_should_park(current);
2a1d4460 154}
18896451 155EXPORT_SYMBOL_GPL(kthread_should_park);
2a1d4460 156
8a32c441
TH
157/**
158 * kthread_freezable_should_stop - should this freezable kthread return now?
159 * @was_frozen: optional out parameter, indicates whether %current was frozen
160 *
161 * kthread_should_stop() for freezable kthreads, which will enter
162 * refrigerator if necessary. This function is safe from kthread_stop() /
163 * freezer deadlock and freezable kthreads should use this function instead
164 * of calling try_to_freeze() directly.
165 */
166bool kthread_freezable_should_stop(bool *was_frozen)
167{
168 bool frozen = false;
169
170 might_sleep();
171
172 if (unlikely(freezing(current)))
173 frozen = __refrigerator(true);
174
175 if (was_frozen)
176 *was_frozen = frozen;
177
178 return kthread_should_stop();
179}
180EXPORT_SYMBOL_GPL(kthread_freezable_should_stop);
181
52782c92
BF
182/**
183 * kthread_func - return the function specified on kthread creation
184 * @task: kthread task in question
185 *
186 * Returns NULL if the task is not a kthread.
187 */
188void *kthread_func(struct task_struct *task)
189{
4c6b89c4
PZ
190 struct kthread *kthread = __to_kthread(task);
191 if (kthread)
192 return kthread->threadfn;
52782c92
BF
193 return NULL;
194}
195EXPORT_SYMBOL_GPL(kthread_func);
196
82805ab7
TH
197/**
198 * kthread_data - return data value specified on kthread creation
199 * @task: kthread task in question
200 *
201 * Return the data value specified when kthread @task was created.
202 * The caller is responsible for ensuring the validity of @task when
203 * calling this function.
204 */
205void *kthread_data(struct task_struct *task)
206{
207 return to_kthread(task)->data;
208}
52782c92 209EXPORT_SYMBOL_GPL(kthread_data);
82805ab7 210
cd42d559 211/**
e700591a 212 * kthread_probe_data - speculative version of kthread_data()
cd42d559
TH
213 * @task: possible kthread task in question
214 *
215 * @task could be a kthread task. Return the data value specified when it
216 * was created if accessible. If @task isn't a kthread task or its data is
217 * inaccessible for any reason, %NULL is returned. This function requires
218 * that @task itself is safe to dereference.
219 */
e700591a 220void *kthread_probe_data(struct task_struct *task)
cd42d559 221{
4c6b89c4 222 struct kthread *kthread = __to_kthread(task);
cd42d559
TH
223 void *data = NULL;
224
4c6b89c4
PZ
225 if (kthread)
226 copy_from_kernel_nofault(&data, &kthread->data, sizeof(data));
cd42d559
TH
227 return data;
228}
229
2a1d4460
TG
230static void __kthread_parkme(struct kthread *self)
231{
741a76b3 232 for (;;) {
1cef1150
PZ
233 /*
234 * TASK_PARKED is a special state; we must serialize against
235 * possible pending wakeups to avoid store-store collisions on
236 * task->state.
237 *
238 * Such a collision might possibly result in the task state
239 * changin from TASK_PARKED and us failing the
240 * wait_task_inactive() in kthread_park().
241 */
242 set_special_state(TASK_PARKED);
741a76b3
PZ
243 if (!test_bit(KTHREAD_SHOULD_PARK, &self->flags))
244 break;
1cef1150 245
26c7295b
LC
246 /*
247 * Thread is going to call schedule(), do not preempt it,
248 * or the caller of kthread_park() may spend more time in
249 * wait_task_inactive().
250 */
251 preempt_disable();
f83ee19b 252 complete(&self->parked);
26c7295b
LC
253 schedule_preempt_disabled();
254 preempt_enable();
2a1d4460 255 }
2a1d4460
TG
256 __set_current_state(TASK_RUNNING);
257}
258
259void kthread_parkme(void)
260{
261 __kthread_parkme(to_kthread(current));
262}
18896451 263EXPORT_SYMBOL_GPL(kthread_parkme);
2a1d4460 264
1da177e4
LT
265static int kthread(void *_create)
266{
63706172 267 /* Copy data: it's on kthread's stack */
1da177e4 268 struct kthread_create_info *create = _create;
63706172
ON
269 int (*threadfn)(void *data) = create->threadfn;
270 void *data = create->data;
786235ee 271 struct completion *done;
1da5c46f 272 struct kthread *self;
63706172 273 int ret;
1da177e4 274
e10237cc 275 self = kzalloc(sizeof(*self), GFP_KERNEL);
1da5c46f 276 set_kthread_struct(self);
1da177e4 277
786235ee
TH
278 /* If user was SIGKILLed, I release the structure. */
279 done = xchg(&create->done, NULL);
280 if (!done) {
281 kfree(create);
282 do_exit(-EINTR);
283 }
1da5c46f
ON
284
285 if (!self) {
286 create->result = ERR_PTR(-ENOMEM);
287 complete(done);
288 do_exit(-ENOMEM);
289 }
290
52782c92 291 self->threadfn = threadfn;
1da5c46f
ON
292 self->data = data;
293 init_completion(&self->exited);
294 init_completion(&self->parked);
295 current->vfork_done = &self->exited;
296
1da177e4 297 /* OK, tell user we're spawned, wait for stop or wakeup */
a076e4bc 298 __set_current_state(TASK_UNINTERRUPTIBLE);
3217ab97 299 create->result = current;
26c7295b
LC
300 /*
301 * Thread is going to call schedule(), do not preempt it,
302 * or the creator may spend more time in wait_task_inactive().
303 */
304 preempt_disable();
786235ee 305 complete(done);
26c7295b
LC
306 schedule_preempt_disabled();
307 preempt_enable();
1da177e4 308
63706172 309 ret = -EINTR;
1da5c46f 310 if (!test_bit(KTHREAD_SHOULD_STOP, &self->flags)) {
77f88796 311 cgroup_kthread_ready();
1da5c46f 312 __kthread_parkme(self);
2a1d4460
TG
313 ret = threadfn(data);
314 }
63706172 315 do_exit(ret);
1da177e4
LT
316}
317
cb5021ca 318/* called from kernel_clone() to get node information for about to be created task */
207205a2
ED
319int tsk_fork_get_node(struct task_struct *tsk)
320{
321#ifdef CONFIG_NUMA
322 if (tsk == kthreadd_task)
323 return tsk->pref_node_fork;
324#endif
81c98869 325 return NUMA_NO_NODE;
207205a2
ED
326}
327
73c27992 328static void create_kthread(struct kthread_create_info *create)
1da177e4 329{
1da177e4
LT
330 int pid;
331
207205a2
ED
332#ifdef CONFIG_NUMA
333 current->pref_node_fork = create->node;
334#endif
1da177e4
LT
335 /* We want our own signal handler (we take no signals by default). */
336 pid = kernel_thread(kthread, create, CLONE_FS | CLONE_FILES | SIGCHLD);
cdd140bd 337 if (pid < 0) {
786235ee
TH
338 /* If user was SIGKILLed, I release the structure. */
339 struct completion *done = xchg(&create->done, NULL);
340
341 if (!done) {
342 kfree(create);
343 return;
344 }
1da177e4 345 create->result = ERR_PTR(pid);
786235ee 346 complete(done);
cdd140bd 347 }
1da177e4
LT
348}
349
c0b942a7
NI
350static __printf(4, 0)
351struct task_struct *__kthread_create_on_node(int (*threadfn)(void *data),
255451e4
PM
352 void *data, int node,
353 const char namefmt[],
354 va_list args)
1da177e4 355{
786235ee
TH
356 DECLARE_COMPLETION_ONSTACK(done);
357 struct task_struct *task;
358 struct kthread_create_info *create = kmalloc(sizeof(*create),
359 GFP_KERNEL);
360
361 if (!create)
362 return ERR_PTR(-ENOMEM);
363 create->threadfn = threadfn;
364 create->data = data;
365 create->node = node;
366 create->done = &done;
73c27992
EB
367
368 spin_lock(&kthread_create_lock);
786235ee 369 list_add_tail(&create->list, &kthread_create_list);
73c27992
EB
370 spin_unlock(&kthread_create_lock);
371
cbd9b67b 372 wake_up_process(kthreadd_task);
786235ee
TH
373 /*
374 * Wait for completion in killable state, for I might be chosen by
375 * the OOM killer while kthreadd is trying to allocate memory for
376 * new kernel thread.
377 */
378 if (unlikely(wait_for_completion_killable(&done))) {
d4459dd2
TH
379 int i = 0;
380
381 /*
382 * I got SIGKILL, but wait for 10 more seconds for completion
383 * unless chosen by the OOM killer. This delay is there as a
384 * workaround for boot failure caused by SIGKILL upon device
385 * driver initialization timeout.
386 */
387 while (i++ < 10 && !test_tsk_thread_flag(current, TIF_MEMDIE))
388 if (wait_for_completion_timeout(&done, HZ))
389 goto ready;
786235ee
TH
390 /*
391 * If I was SIGKILLed before kthreadd (or new kernel thread)
392 * calls complete(), leave the cleanup of this structure to
393 * that thread.
394 */
395 if (xchg(&create->done, NULL))
8fe6929c 396 return ERR_PTR(-EINTR);
786235ee
TH
397 /*
398 * kthreadd (or new kernel thread) will call complete()
399 * shortly.
400 */
401 wait_for_completion(&done);
402 }
d4459dd2 403ready:
786235ee
TH
404 task = create->result;
405 if (!IS_ERR(task)) {
c9b5f501 406 static const struct sched_param param = { .sched_priority = 0 };
3e536e22 407 char name[TASK_COMM_LEN];
1c99315b 408
3e536e22
SD
409 /*
410 * task is already visible to other tasks, so updating
411 * COMM must be protected.
412 */
413 vsnprintf(name, sizeof(name), namefmt, args);
414 set_task_comm(task, name);
1c99315b
ON
415 /*
416 * root may have changed our (kthreadd's) priority or CPU mask.
417 * The kernel thread should not inherit these properties.
418 */
786235ee 419 sched_setscheduler_nocheck(task, SCHED_NORMAL, &param);
9cc5b865
MT
420 set_cpus_allowed_ptr(task,
421 housekeeping_cpumask(HK_FLAG_KTHREAD));
1da177e4 422 }
786235ee
TH
423 kfree(create);
424 return task;
1da177e4 425}
255451e4
PM
426
427/**
428 * kthread_create_on_node - create a kthread.
429 * @threadfn: the function to run until signal_pending(current).
430 * @data: data ptr for @threadfn.
431 * @node: task and thread structures for the thread are allocated on this node
432 * @namefmt: printf-style name for the thread.
433 *
434 * Description: This helper function creates and names a kernel
435 * thread. The thread will be stopped: use wake_up_process() to start
436 * it. See also kthread_run(). The new thread has SCHED_NORMAL policy and
437 * is affine to all CPUs.
438 *
439 * If thread is going to be bound on a particular cpu, give its node
440 * in @node, to get NUMA affinity for kthread stack, or else give NUMA_NO_NODE.
441 * When woken, the thread will run @threadfn() with @data as its
442 * argument. @threadfn() can either call do_exit() directly if it is a
443 * standalone thread for which no one will call kthread_stop(), or
444 * return when 'kthread_should_stop()' is true (which means
445 * kthread_stop() has been called). The return value should be zero
446 * or a negative error number; it will be passed to kthread_stop().
447 *
448 * Returns a task_struct or ERR_PTR(-ENOMEM) or ERR_PTR(-EINTR).
449 */
450struct task_struct *kthread_create_on_node(int (*threadfn)(void *data),
451 void *data, int node,
452 const char namefmt[],
453 ...)
454{
455 struct task_struct *task;
456 va_list args;
457
458 va_start(args, namefmt);
459 task = __kthread_create_on_node(threadfn, data, node, namefmt, args);
460 va_end(args);
461
462 return task;
463}
207205a2 464EXPORT_SYMBOL(kthread_create_on_node);
1da177e4 465
25834c73 466static void __kthread_bind_mask(struct task_struct *p, const struct cpumask *mask, long state)
2a1d4460 467{
25834c73
PZ
468 unsigned long flags;
469
f2530dc7
TG
470 if (!wait_task_inactive(p, state)) {
471 WARN_ON(1);
472 return;
473 }
25834c73 474
2a1d4460 475 /* It's safe because the task is inactive. */
25834c73
PZ
476 raw_spin_lock_irqsave(&p->pi_lock, flags);
477 do_set_cpus_allowed(p, mask);
14a40ffc 478 p->flags |= PF_NO_SETAFFINITY;
25834c73
PZ
479 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
480}
481
482static void __kthread_bind(struct task_struct *p, unsigned int cpu, long state)
483{
484 __kthread_bind_mask(p, cpumask_of(cpu), state);
485}
486
487void kthread_bind_mask(struct task_struct *p, const struct cpumask *mask)
488{
489 __kthread_bind_mask(p, mask, TASK_UNINTERRUPTIBLE);
2a1d4460
TG
490}
491
881232b7
PZ
492/**
493 * kthread_bind - bind a just-created kthread to a cpu.
494 * @p: thread created by kthread_create().
495 * @cpu: cpu (might not be online, must be possible) for @k to run on.
496 *
497 * Description: This function is equivalent to set_cpus_allowed(),
498 * except that @cpu doesn't need to be online, and the thread must be
499 * stopped (i.e., just returned from kthread_create()).
500 */
501void kthread_bind(struct task_struct *p, unsigned int cpu)
502{
f2530dc7 503 __kthread_bind(p, cpu, TASK_UNINTERRUPTIBLE);
881232b7
PZ
504}
505EXPORT_SYMBOL(kthread_bind);
506
2a1d4460
TG
507/**
508 * kthread_create_on_cpu - Create a cpu bound kthread
509 * @threadfn: the function to run until signal_pending(current).
510 * @data: data ptr for @threadfn.
511 * @cpu: The cpu on which the thread should be bound,
512 * @namefmt: printf-style name for the thread. Format is restricted
513 * to "name.*%u". Code fills in cpu number.
514 *
515 * Description: This helper function creates and names a kernel thread
2a1d4460
TG
516 */
517struct task_struct *kthread_create_on_cpu(int (*threadfn)(void *data),
518 void *data, unsigned int cpu,
519 const char *namefmt)
520{
521 struct task_struct *p;
522
10922838 523 p = kthread_create_on_node(threadfn, data, cpu_to_node(cpu), namefmt,
2a1d4460
TG
524 cpu);
525 if (IS_ERR(p))
526 return p;
a65d4096
PM
527 kthread_bind(p, cpu);
528 /* CPU hotplug need to bind once again when unparking the thread. */
2a1d4460 529 to_kthread(p)->cpu = cpu;
2a1d4460
TG
530 return p;
531}
532
ac687e6e
PZ
533void kthread_set_per_cpu(struct task_struct *k, int cpu)
534{
535 struct kthread *kthread = to_kthread(k);
536 if (!kthread)
537 return;
538
539 WARN_ON_ONCE(!(k->flags & PF_NO_SETAFFINITY));
540
541 if (cpu < 0) {
542 clear_bit(KTHREAD_IS_PER_CPU, &kthread->flags);
543 return;
544 }
545
546 kthread->cpu = cpu;
547 set_bit(KTHREAD_IS_PER_CPU, &kthread->flags);
548}
549
4c6b89c4 550bool kthread_is_per_cpu(struct task_struct *p)
ac687e6e 551{
4c6b89c4 552 struct kthread *kthread = __to_kthread(p);
ac687e6e
PZ
553 if (!kthread)
554 return false;
555
556 return test_bit(KTHREAD_IS_PER_CPU, &kthread->flags);
557}
558
cf380a4a
ON
559/**
560 * kthread_unpark - unpark a thread created by kthread_create().
561 * @k: thread created by kthread_create().
562 *
563 * Sets kthread_should_park() for @k to return false, wakes it, and
564 * waits for it to return. If the thread is marked percpu then its
565 * bound to the cpu again.
566 */
567void kthread_unpark(struct task_struct *k)
f2530dc7 568{
cf380a4a
ON
569 struct kthread *kthread = to_kthread(k);
570
f2530dc7 571 /*
85f1abe0
PZ
572 * Newly created kthread was parked when the CPU was offline.
573 * The binding was lost and we need to set it again.
f2530dc7 574 */
85f1abe0
PZ
575 if (test_bit(KTHREAD_IS_PER_CPU, &kthread->flags))
576 __kthread_bind(k, kthread->cpu, TASK_PARKED);
577
578 clear_bit(KTHREAD_SHOULD_PARK, &kthread->flags);
1cef1150
PZ
579 /*
580 * __kthread_parkme() will either see !SHOULD_PARK or get the wakeup.
581 */
85f1abe0 582 wake_up_state(k, TASK_PARKED);
f2530dc7 583}
18896451 584EXPORT_SYMBOL_GPL(kthread_unpark);
2a1d4460
TG
585
586/**
587 * kthread_park - park a thread created by kthread_create().
588 * @k: thread created by kthread_create().
589 *
590 * Sets kthread_should_park() for @k to return true, wakes it, and
591 * waits for it to return. This can also be called after kthread_create()
592 * instead of calling wake_up_process(): the thread will park without
593 * calling threadfn().
594 *
595 * Returns 0 if the thread is parked, -ENOSYS if the thread exited.
596 * If called by the kthread itself just the park bit is set.
597 */
598int kthread_park(struct task_struct *k)
599{
cf380a4a
ON
600 struct kthread *kthread = to_kthread(k);
601
602 if (WARN_ON(k->flags & PF_EXITING))
603 return -ENOSYS;
604
f83ee19b
PZ
605 if (WARN_ON_ONCE(test_bit(KTHREAD_SHOULD_PARK, &kthread->flags)))
606 return -EBUSY;
607
85f1abe0
PZ
608 set_bit(KTHREAD_SHOULD_PARK, &kthread->flags);
609 if (k != current) {
610 wake_up_process(k);
1cef1150
PZ
611 /*
612 * Wait for __kthread_parkme() to complete(), this means we
613 * _will_ have TASK_PARKED and are about to call schedule().
614 */
85f1abe0 615 wait_for_completion(&kthread->parked);
1cef1150
PZ
616 /*
617 * Now wait for that schedule() to complete and the task to
618 * get scheduled out.
619 */
620 WARN_ON_ONCE(!wait_task_inactive(k, TASK_PARKED));
2a1d4460 621 }
cf380a4a
ON
622
623 return 0;
2a1d4460 624}
18896451 625EXPORT_SYMBOL_GPL(kthread_park);
2a1d4460 626
9e37bd30
RD
627/**
628 * kthread_stop - stop a thread created by kthread_create().
629 * @k: thread created by kthread_create().
630 *
631 * Sets kthread_should_stop() for @k to return true, wakes it, and
9ae26027
ON
632 * waits for it to exit. This can also be called after kthread_create()
633 * instead of calling wake_up_process(): the thread will exit without
634 * calling threadfn().
635 *
636 * If threadfn() may call do_exit() itself, the caller must ensure
637 * task_struct can't go away.
9e37bd30
RD
638 *
639 * Returns the result of threadfn(), or %-EINTR if wake_up_process()
640 * was never called.
641 */
1da177e4
LT
642int kthread_stop(struct task_struct *k)
643{
b5c5442b 644 struct kthread *kthread;
1da177e4
LT
645 int ret;
646
0a16b607 647 trace_sched_kthread_stop(k);
b5c5442b
ON
648
649 get_task_struct(k);
efb29fbf
ON
650 kthread = to_kthread(k);
651 set_bit(KTHREAD_SHOULD_STOP, &kthread->flags);
cf380a4a 652 kthread_unpark(k);
efb29fbf
ON
653 wake_up_process(k);
654 wait_for_completion(&kthread->exited);
63706172 655 ret = k->exit_code;
1da177e4 656 put_task_struct(k);
0a16b607 657
b5c5442b 658 trace_sched_kthread_stop_ret(ret);
1da177e4
LT
659 return ret;
660}
52e92e57 661EXPORT_SYMBOL(kthread_stop);
1da177e4 662
e804a4a4 663int kthreadd(void *unused)
1da177e4 664{
73c27992 665 struct task_struct *tsk = current;
1da177e4 666
e804a4a4 667 /* Setup a clean context for our children to inherit. */
73c27992 668 set_task_comm(tsk, "kthreadd");
10ab825b 669 ignore_signals(tsk);
9cc5b865 670 set_cpus_allowed_ptr(tsk, housekeeping_cpumask(HK_FLAG_KTHREAD));
aee4faa4 671 set_mems_allowed(node_states[N_MEMORY]);
73c27992 672
34b087e4 673 current->flags |= PF_NOFREEZE;
77f88796 674 cgroup_init_kthreadd();
73c27992
EB
675
676 for (;;) {
677 set_current_state(TASK_INTERRUPTIBLE);
678 if (list_empty(&kthread_create_list))
679 schedule();
680 __set_current_state(TASK_RUNNING);
681
682 spin_lock(&kthread_create_lock);
683 while (!list_empty(&kthread_create_list)) {
684 struct kthread_create_info *create;
685
686 create = list_entry(kthread_create_list.next,
687 struct kthread_create_info, list);
688 list_del_init(&create->list);
689 spin_unlock(&kthread_create_lock);
690
691 create_kthread(create);
692
693 spin_lock(&kthread_create_lock);
694 }
695 spin_unlock(&kthread_create_lock);
696 }
697
698 return 0;
699}
b56c0d89 700
3989144f 701void __kthread_init_worker(struct kthread_worker *worker,
4f32e9b1
YZ
702 const char *name,
703 struct lock_class_key *key)
704{
dbf52682 705 memset(worker, 0, sizeof(struct kthread_worker));
fe99a4f4 706 raw_spin_lock_init(&worker->lock);
4f32e9b1
YZ
707 lockdep_set_class_and_name(&worker->lock, key, name);
708 INIT_LIST_HEAD(&worker->work_list);
22597dc3 709 INIT_LIST_HEAD(&worker->delayed_work_list);
4f32e9b1 710}
3989144f 711EXPORT_SYMBOL_GPL(__kthread_init_worker);
4f32e9b1 712
b56c0d89
TH
713/**
714 * kthread_worker_fn - kthread function to process kthread_worker
715 * @worker_ptr: pointer to initialized kthread_worker
716 *
fbae2d44
PM
717 * This function implements the main cycle of kthread worker. It processes
718 * work_list until it is stopped with kthread_stop(). It sleeps when the queue
719 * is empty.
b56c0d89 720 *
fbae2d44
PM
721 * The works are not allowed to keep any locks, disable preemption or interrupts
722 * when they finish. There is defined a safe point for freezing when one work
723 * finishes and before a new one is started.
8197b3d4
PM
724 *
725 * Also the works must not be handled by more than one worker at the same time,
726 * see also kthread_queue_work().
b56c0d89
TH
727 */
728int kthread_worker_fn(void *worker_ptr)
729{
730 struct kthread_worker *worker = worker_ptr;
731 struct kthread_work *work;
732
fbae2d44
PM
733 /*
734 * FIXME: Update the check and remove the assignment when all kthread
735 * worker users are created using kthread_create_worker*() functions.
736 */
737 WARN_ON(worker->task && worker->task != current);
b56c0d89 738 worker->task = current;
dbf52682
PM
739
740 if (worker->flags & KTW_FREEZABLE)
741 set_freezable();
742
b56c0d89
TH
743repeat:
744 set_current_state(TASK_INTERRUPTIBLE); /* mb paired w/ kthread_stop */
745
746 if (kthread_should_stop()) {
747 __set_current_state(TASK_RUNNING);
fe99a4f4 748 raw_spin_lock_irq(&worker->lock);
b56c0d89 749 worker->task = NULL;
fe99a4f4 750 raw_spin_unlock_irq(&worker->lock);
b56c0d89
TH
751 return 0;
752 }
753
754 work = NULL;
fe99a4f4 755 raw_spin_lock_irq(&worker->lock);
b56c0d89
TH
756 if (!list_empty(&worker->work_list)) {
757 work = list_first_entry(&worker->work_list,
758 struct kthread_work, node);
759 list_del_init(&work->node);
760 }
46f3d976 761 worker->current_work = work;
fe99a4f4 762 raw_spin_unlock_irq(&worker->lock);
b56c0d89
TH
763
764 if (work) {
f630c7c6 765 kthread_work_func_t func = work->func;
b56c0d89 766 __set_current_state(TASK_RUNNING);
f630c7c6 767 trace_sched_kthread_work_execute_start(work);
b56c0d89 768 work->func(work);
f630c7c6
RC
769 /*
770 * Avoid dereferencing work after this point. The trace
771 * event only cares about the address.
772 */
773 trace_sched_kthread_work_execute_end(work, func);
b56c0d89
TH
774 } else if (!freezing(current))
775 schedule();
776
777 try_to_freeze();
22cf8bc6 778 cond_resched();
b56c0d89
TH
779 goto repeat;
780}
781EXPORT_SYMBOL_GPL(kthread_worker_fn);
782
c0b942a7 783static __printf(3, 0) struct kthread_worker *
dbf52682
PM
784__kthread_create_worker(int cpu, unsigned int flags,
785 const char namefmt[], va_list args)
fbae2d44
PM
786{
787 struct kthread_worker *worker;
788 struct task_struct *task;
98fa15f3 789 int node = NUMA_NO_NODE;
fbae2d44
PM
790
791 worker = kzalloc(sizeof(*worker), GFP_KERNEL);
792 if (!worker)
793 return ERR_PTR(-ENOMEM);
794
795 kthread_init_worker(worker);
796
8fb9dcbd
ON
797 if (cpu >= 0)
798 node = cpu_to_node(cpu);
fbae2d44 799
8fb9dcbd
ON
800 task = __kthread_create_on_node(kthread_worker_fn, worker,
801 node, namefmt, args);
fbae2d44
PM
802 if (IS_ERR(task))
803 goto fail_task;
804
8fb9dcbd
ON
805 if (cpu >= 0)
806 kthread_bind(task, cpu);
807
dbf52682 808 worker->flags = flags;
fbae2d44
PM
809 worker->task = task;
810 wake_up_process(task);
811 return worker;
812
813fail_task:
814 kfree(worker);
815 return ERR_CAST(task);
816}
817
818/**
819 * kthread_create_worker - create a kthread worker
dbf52682 820 * @flags: flags modifying the default behavior of the worker
fbae2d44
PM
821 * @namefmt: printf-style name for the kthread worker (task).
822 *
823 * Returns a pointer to the allocated worker on success, ERR_PTR(-ENOMEM)
824 * when the needed structures could not get allocated, and ERR_PTR(-EINTR)
825 * when the worker was SIGKILLed.
826 */
827struct kthread_worker *
dbf52682 828kthread_create_worker(unsigned int flags, const char namefmt[], ...)
fbae2d44
PM
829{
830 struct kthread_worker *worker;
831 va_list args;
832
833 va_start(args, namefmt);
dbf52682 834 worker = __kthread_create_worker(-1, flags, namefmt, args);
fbae2d44
PM
835 va_end(args);
836
837 return worker;
838}
839EXPORT_SYMBOL(kthread_create_worker);
840
841/**
842 * kthread_create_worker_on_cpu - create a kthread worker and bind it
7b7b8a2c 843 * to a given CPU and the associated NUMA node.
fbae2d44 844 * @cpu: CPU number
dbf52682 845 * @flags: flags modifying the default behavior of the worker
fbae2d44
PM
846 * @namefmt: printf-style name for the kthread worker (task).
847 *
848 * Use a valid CPU number if you want to bind the kthread worker
849 * to the given CPU and the associated NUMA node.
850 *
851 * A good practice is to add the cpu number also into the worker name.
852 * For example, use kthread_create_worker_on_cpu(cpu, "helper/%d", cpu).
853 *
ebb2bdce
PM
854 * CPU hotplug:
855 * The kthread worker API is simple and generic. It just provides a way
856 * to create, use, and destroy workers.
857 *
858 * It is up to the API user how to handle CPU hotplug. They have to decide
859 * how to handle pending work items, prevent queuing new ones, and
860 * restore the functionality when the CPU goes off and on. There are a
861 * few catches:
862 *
863 * - CPU affinity gets lost when it is scheduled on an offline CPU.
864 *
865 * - The worker might not exist when the CPU was off when the user
866 * created the workers.
867 *
868 * Good practice is to implement two CPU hotplug callbacks and to
869 * destroy/create the worker when the CPU goes down/up.
870 *
871 * Return:
872 * The pointer to the allocated worker on success, ERR_PTR(-ENOMEM)
fbae2d44
PM
873 * when the needed structures could not get allocated, and ERR_PTR(-EINTR)
874 * when the worker was SIGKILLed.
875 */
876struct kthread_worker *
dbf52682
PM
877kthread_create_worker_on_cpu(int cpu, unsigned int flags,
878 const char namefmt[], ...)
fbae2d44
PM
879{
880 struct kthread_worker *worker;
881 va_list args;
882
883 va_start(args, namefmt);
dbf52682 884 worker = __kthread_create_worker(cpu, flags, namefmt, args);
fbae2d44
PM
885 va_end(args);
886
887 return worker;
888}
889EXPORT_SYMBOL(kthread_create_worker_on_cpu);
890
37be45d4
PM
891/*
892 * Returns true when the work could not be queued at the moment.
893 * It happens when it is already pending in a worker list
894 * or when it is being cancelled.
895 */
896static inline bool queuing_blocked(struct kthread_worker *worker,
897 struct kthread_work *work)
898{
899 lockdep_assert_held(&worker->lock);
900
901 return !list_empty(&work->node) || work->canceling;
902}
903
8197b3d4
PM
904static void kthread_insert_work_sanity_check(struct kthread_worker *worker,
905 struct kthread_work *work)
906{
907 lockdep_assert_held(&worker->lock);
908 WARN_ON_ONCE(!list_empty(&work->node));
909 /* Do not use a work with >1 worker, see kthread_queue_work() */
910 WARN_ON_ONCE(work->worker && work->worker != worker);
911}
912
9a2e03d8 913/* insert @work before @pos in @worker */
3989144f 914static void kthread_insert_work(struct kthread_worker *worker,
8197b3d4
PM
915 struct kthread_work *work,
916 struct list_head *pos)
9a2e03d8 917{
8197b3d4 918 kthread_insert_work_sanity_check(worker, work);
9a2e03d8 919
f630c7c6
RC
920 trace_sched_kthread_work_queue_work(worker, work);
921
9a2e03d8 922 list_add_tail(&work->node, pos);
46f3d976 923 work->worker = worker;
ed1403ec 924 if (!worker->current_work && likely(worker->task))
9a2e03d8
TH
925 wake_up_process(worker->task);
926}
927
b56c0d89 928/**
3989144f 929 * kthread_queue_work - queue a kthread_work
b56c0d89
TH
930 * @worker: target kthread_worker
931 * @work: kthread_work to queue
932 *
933 * Queue @work to work processor @task for async execution. @task
934 * must have been created with kthread_worker_create(). Returns %true
935 * if @work was successfully queued, %false if it was already pending.
8197b3d4
PM
936 *
937 * Reinitialize the work if it needs to be used by another worker.
938 * For example, when the worker was stopped and started again.
b56c0d89 939 */
3989144f 940bool kthread_queue_work(struct kthread_worker *worker,
b56c0d89
TH
941 struct kthread_work *work)
942{
943 bool ret = false;
944 unsigned long flags;
945
fe99a4f4 946 raw_spin_lock_irqsave(&worker->lock, flags);
37be45d4 947 if (!queuing_blocked(worker, work)) {
3989144f 948 kthread_insert_work(worker, work, &worker->work_list);
b56c0d89
TH
949 ret = true;
950 }
fe99a4f4 951 raw_spin_unlock_irqrestore(&worker->lock, flags);
b56c0d89
TH
952 return ret;
953}
3989144f 954EXPORT_SYMBOL_GPL(kthread_queue_work);
b56c0d89 955
22597dc3
PM
956/**
957 * kthread_delayed_work_timer_fn - callback that queues the associated kthread
958 * delayed work when the timer expires.
fe5c3b69 959 * @t: pointer to the expired timer
22597dc3
PM
960 *
961 * The format of the function is defined by struct timer_list.
962 * It should have been called from irqsafe timer with irq already off.
963 */
fe5c3b69 964void kthread_delayed_work_timer_fn(struct timer_list *t)
22597dc3 965{
fe5c3b69 966 struct kthread_delayed_work *dwork = from_timer(dwork, t, timer);
22597dc3
PM
967 struct kthread_work *work = &dwork->work;
968 struct kthread_worker *worker = work->worker;
ad01423a 969 unsigned long flags;
22597dc3
PM
970
971 /*
972 * This might happen when a pending work is reinitialized.
973 * It means that it is used a wrong way.
974 */
975 if (WARN_ON_ONCE(!worker))
976 return;
977
ad01423a 978 raw_spin_lock_irqsave(&worker->lock, flags);
22597dc3
PM
979 /* Work must not be used with >1 worker, see kthread_queue_work(). */
980 WARN_ON_ONCE(work->worker != worker);
981
982 /* Move the work from worker->delayed_work_list. */
983 WARN_ON_ONCE(list_empty(&work->node));
984 list_del_init(&work->node);
6993d0fd
Z
985 if (!work->canceling)
986 kthread_insert_work(worker, work, &worker->work_list);
22597dc3 987
ad01423a 988 raw_spin_unlock_irqrestore(&worker->lock, flags);
22597dc3
PM
989}
990EXPORT_SYMBOL(kthread_delayed_work_timer_fn);
991
bc88f85c
BD
992static void __kthread_queue_delayed_work(struct kthread_worker *worker,
993 struct kthread_delayed_work *dwork,
994 unsigned long delay)
22597dc3
PM
995{
996 struct timer_list *timer = &dwork->timer;
997 struct kthread_work *work = &dwork->work;
998
841b86f3 999 WARN_ON_ONCE(timer->function != kthread_delayed_work_timer_fn);
22597dc3
PM
1000
1001 /*
1002 * If @delay is 0, queue @dwork->work immediately. This is for
1003 * both optimization and correctness. The earliest @timer can
1004 * expire is on the closest next tick and delayed_work users depend
1005 * on that there's no such delay when @delay is 0.
1006 */
1007 if (!delay) {
1008 kthread_insert_work(worker, work, &worker->work_list);
1009 return;
1010 }
1011
1012 /* Be paranoid and try to detect possible races already now. */
1013 kthread_insert_work_sanity_check(worker, work);
1014
1015 list_add(&work->node, &worker->delayed_work_list);
1016 work->worker = worker;
22597dc3
PM
1017 timer->expires = jiffies + delay;
1018 add_timer(timer);
1019}
1020
1021/**
1022 * kthread_queue_delayed_work - queue the associated kthread work
1023 * after a delay.
1024 * @worker: target kthread_worker
1025 * @dwork: kthread_delayed_work to queue
1026 * @delay: number of jiffies to wait before queuing
1027 *
1028 * If the work has not been pending it starts a timer that will queue
1029 * the work after the given @delay. If @delay is zero, it queues the
1030 * work immediately.
1031 *
1032 * Return: %false if the @work has already been pending. It means that
1033 * either the timer was running or the work was queued. It returns %true
1034 * otherwise.
1035 */
1036bool kthread_queue_delayed_work(struct kthread_worker *worker,
1037 struct kthread_delayed_work *dwork,
1038 unsigned long delay)
1039{
1040 struct kthread_work *work = &dwork->work;
1041 unsigned long flags;
1042 bool ret = false;
1043
fe99a4f4 1044 raw_spin_lock_irqsave(&worker->lock, flags);
22597dc3 1045
37be45d4 1046 if (!queuing_blocked(worker, work)) {
22597dc3
PM
1047 __kthread_queue_delayed_work(worker, dwork, delay);
1048 ret = true;
1049 }
1050
fe99a4f4 1051 raw_spin_unlock_irqrestore(&worker->lock, flags);
22597dc3
PM
1052 return ret;
1053}
1054EXPORT_SYMBOL_GPL(kthread_queue_delayed_work);
1055
9a2e03d8
TH
1056struct kthread_flush_work {
1057 struct kthread_work work;
1058 struct completion done;
1059};
1060
1061static void kthread_flush_work_fn(struct kthread_work *work)
1062{
1063 struct kthread_flush_work *fwork =
1064 container_of(work, struct kthread_flush_work, work);
1065 complete(&fwork->done);
1066}
1067
b56c0d89 1068/**
3989144f 1069 * kthread_flush_work - flush a kthread_work
b56c0d89
TH
1070 * @work: work to flush
1071 *
1072 * If @work is queued or executing, wait for it to finish execution.
1073 */
3989144f 1074void kthread_flush_work(struct kthread_work *work)
b56c0d89 1075{
46f3d976
TH
1076 struct kthread_flush_work fwork = {
1077 KTHREAD_WORK_INIT(fwork.work, kthread_flush_work_fn),
1078 COMPLETION_INITIALIZER_ONSTACK(fwork.done),
1079 };
1080 struct kthread_worker *worker;
1081 bool noop = false;
1082
46f3d976
TH
1083 worker = work->worker;
1084 if (!worker)
1085 return;
b56c0d89 1086
fe99a4f4 1087 raw_spin_lock_irq(&worker->lock);
8197b3d4
PM
1088 /* Work must not be used with >1 worker, see kthread_queue_work(). */
1089 WARN_ON_ONCE(work->worker != worker);
b56c0d89 1090
46f3d976 1091 if (!list_empty(&work->node))
3989144f 1092 kthread_insert_work(worker, &fwork.work, work->node.next);
46f3d976 1093 else if (worker->current_work == work)
3989144f
PM
1094 kthread_insert_work(worker, &fwork.work,
1095 worker->work_list.next);
46f3d976
TH
1096 else
1097 noop = true;
b56c0d89 1098
fe99a4f4 1099 raw_spin_unlock_irq(&worker->lock);
b56c0d89 1100
46f3d976
TH
1101 if (!noop)
1102 wait_for_completion(&fwork.done);
b56c0d89 1103}
3989144f 1104EXPORT_SYMBOL_GPL(kthread_flush_work);
b56c0d89 1105
37be45d4
PM
1106/*
1107 * This function removes the work from the worker queue. Also it makes sure
1108 * that it won't get queued later via the delayed work's timer.
1109 *
1110 * The work might still be in use when this function finishes. See the
1111 * current_work proceed by the worker.
1112 *
1113 * Return: %true if @work was pending and successfully canceled,
1114 * %false if @work was not pending
1115 */
1116static bool __kthread_cancel_work(struct kthread_work *work, bool is_dwork,
1117 unsigned long *flags)
1118{
1119 /* Try to cancel the timer if exists. */
1120 if (is_dwork) {
1121 struct kthread_delayed_work *dwork =
1122 container_of(work, struct kthread_delayed_work, work);
1123 struct kthread_worker *worker = work->worker;
1124
1125 /*
1126 * del_timer_sync() must be called to make sure that the timer
1127 * callback is not running. The lock must be temporary released
1128 * to avoid a deadlock with the callback. In the meantime,
1129 * any queuing is blocked by setting the canceling counter.
1130 */
1131 work->canceling++;
fe99a4f4 1132 raw_spin_unlock_irqrestore(&worker->lock, *flags);
37be45d4 1133 del_timer_sync(&dwork->timer);
fe99a4f4 1134 raw_spin_lock_irqsave(&worker->lock, *flags);
37be45d4
PM
1135 work->canceling--;
1136 }
1137
1138 /*
1139 * Try to remove the work from a worker list. It might either
1140 * be from worker->work_list or from worker->delayed_work_list.
1141 */
1142 if (!list_empty(&work->node)) {
1143 list_del_init(&work->node);
1144 return true;
1145 }
1146
1147 return false;
1148}
1149
9a6b06c8
PM
1150/**
1151 * kthread_mod_delayed_work - modify delay of or queue a kthread delayed work
1152 * @worker: kthread worker to use
1153 * @dwork: kthread delayed work to queue
1154 * @delay: number of jiffies to wait before queuing
1155 *
1156 * If @dwork is idle, equivalent to kthread_queue_delayed_work(). Otherwise,
1157 * modify @dwork's timer so that it expires after @delay. If @delay is zero,
1158 * @work is guaranteed to be queued immediately.
1159 *
1160 * Return: %true if @dwork was pending and its timer was modified,
1161 * %false otherwise.
1162 *
1163 * A special case is when the work is being canceled in parallel.
1164 * It might be caused either by the real kthread_cancel_delayed_work_sync()
1165 * or yet another kthread_mod_delayed_work() call. We let the other command
1166 * win and return %false here. The caller is supposed to synchronize these
1167 * operations a reasonable way.
1168 *
1169 * This function is safe to call from any context including IRQ handler.
1170 * See __kthread_cancel_work() and kthread_delayed_work_timer_fn()
1171 * for details.
1172 */
1173bool kthread_mod_delayed_work(struct kthread_worker *worker,
1174 struct kthread_delayed_work *dwork,
1175 unsigned long delay)
1176{
1177 struct kthread_work *work = &dwork->work;
1178 unsigned long flags;
1179 int ret = false;
1180
fe99a4f4 1181 raw_spin_lock_irqsave(&worker->lock, flags);
9a6b06c8
PM
1182
1183 /* Do not bother with canceling when never queued. */
1184 if (!work->worker)
1185 goto fast_queue;
1186
1187 /* Work must not be used with >1 worker, see kthread_queue_work() */
1188 WARN_ON_ONCE(work->worker != worker);
1189
1190 /* Do not fight with another command that is canceling this work. */
1191 if (work->canceling)
1192 goto out;
1193
1194 ret = __kthread_cancel_work(work, true, &flags);
1195fast_queue:
1196 __kthread_queue_delayed_work(worker, dwork, delay);
1197out:
fe99a4f4 1198 raw_spin_unlock_irqrestore(&worker->lock, flags);
9a6b06c8
PM
1199 return ret;
1200}
1201EXPORT_SYMBOL_GPL(kthread_mod_delayed_work);
1202
37be45d4
PM
1203static bool __kthread_cancel_work_sync(struct kthread_work *work, bool is_dwork)
1204{
1205 struct kthread_worker *worker = work->worker;
1206 unsigned long flags;
1207 int ret = false;
1208
1209 if (!worker)
1210 goto out;
1211
fe99a4f4 1212 raw_spin_lock_irqsave(&worker->lock, flags);
37be45d4
PM
1213 /* Work must not be used with >1 worker, see kthread_queue_work(). */
1214 WARN_ON_ONCE(work->worker != worker);
1215
1216 ret = __kthread_cancel_work(work, is_dwork, &flags);
1217
1218 if (worker->current_work != work)
1219 goto out_fast;
1220
1221 /*
1222 * The work is in progress and we need to wait with the lock released.
1223 * In the meantime, block any queuing by setting the canceling counter.
1224 */
1225 work->canceling++;
fe99a4f4 1226 raw_spin_unlock_irqrestore(&worker->lock, flags);
37be45d4 1227 kthread_flush_work(work);
fe99a4f4 1228 raw_spin_lock_irqsave(&worker->lock, flags);
37be45d4
PM
1229 work->canceling--;
1230
1231out_fast:
fe99a4f4 1232 raw_spin_unlock_irqrestore(&worker->lock, flags);
37be45d4
PM
1233out:
1234 return ret;
1235}
1236
1237/**
1238 * kthread_cancel_work_sync - cancel a kthread work and wait for it to finish
1239 * @work: the kthread work to cancel
1240 *
1241 * Cancel @work and wait for its execution to finish. This function
1242 * can be used even if the work re-queues itself. On return from this
1243 * function, @work is guaranteed to be not pending or executing on any CPU.
1244 *
1245 * kthread_cancel_work_sync(&delayed_work->work) must not be used for
1246 * delayed_work's. Use kthread_cancel_delayed_work_sync() instead.
1247 *
1248 * The caller must ensure that the worker on which @work was last
1249 * queued can't be destroyed before this function returns.
1250 *
1251 * Return: %true if @work was pending, %false otherwise.
1252 */
1253bool kthread_cancel_work_sync(struct kthread_work *work)
1254{
1255 return __kthread_cancel_work_sync(work, false);
1256}
1257EXPORT_SYMBOL_GPL(kthread_cancel_work_sync);
1258
1259/**
1260 * kthread_cancel_delayed_work_sync - cancel a kthread delayed work and
1261 * wait for it to finish.
1262 * @dwork: the kthread delayed work to cancel
1263 *
1264 * This is kthread_cancel_work_sync() for delayed works.
1265 *
1266 * Return: %true if @dwork was pending, %false otherwise.
1267 */
1268bool kthread_cancel_delayed_work_sync(struct kthread_delayed_work *dwork)
1269{
1270 return __kthread_cancel_work_sync(&dwork->work, true);
1271}
1272EXPORT_SYMBOL_GPL(kthread_cancel_delayed_work_sync);
1273
b56c0d89 1274/**
3989144f 1275 * kthread_flush_worker - flush all current works on a kthread_worker
b56c0d89
TH
1276 * @worker: worker to flush
1277 *
1278 * Wait until all currently executing or pending works on @worker are
1279 * finished.
1280 */
3989144f 1281void kthread_flush_worker(struct kthread_worker *worker)
b56c0d89
TH
1282{
1283 struct kthread_flush_work fwork = {
1284 KTHREAD_WORK_INIT(fwork.work, kthread_flush_work_fn),
1285 COMPLETION_INITIALIZER_ONSTACK(fwork.done),
1286 };
1287
3989144f 1288 kthread_queue_work(worker, &fwork.work);
b56c0d89
TH
1289 wait_for_completion(&fwork.done);
1290}
3989144f 1291EXPORT_SYMBOL_GPL(kthread_flush_worker);
35033fe9
PM
1292
1293/**
1294 * kthread_destroy_worker - destroy a kthread worker
1295 * @worker: worker to be destroyed
1296 *
1297 * Flush and destroy @worker. The simple flush is enough because the kthread
1298 * worker API is used only in trivial scenarios. There are no multi-step state
1299 * machines needed.
1300 */
1301void kthread_destroy_worker(struct kthread_worker *worker)
1302{
1303 struct task_struct *task;
1304
1305 task = worker->task;
1306 if (WARN_ON(!task))
1307 return;
1308
1309 kthread_flush_worker(worker);
1310 kthread_stop(task);
1311 WARN_ON(!list_empty(&worker->work_list));
1312 kfree(worker);
1313}
1314EXPORT_SYMBOL(kthread_destroy_worker);
05e3db95 1315
f5678e7f
CH
1316/**
1317 * kthread_use_mm - make the calling kthread operate on an address space
1318 * @mm: address space to operate on
9bf5b9eb 1319 */
f5678e7f 1320void kthread_use_mm(struct mm_struct *mm)
9bf5b9eb
CH
1321{
1322 struct mm_struct *active_mm;
1323 struct task_struct *tsk = current;
1324
f5678e7f
CH
1325 WARN_ON_ONCE(!(tsk->flags & PF_KTHREAD));
1326 WARN_ON_ONCE(tsk->mm);
1327
9bf5b9eb 1328 task_lock(tsk);
38cf307c
PZ
1329 /* Hold off tlb flush IPIs while switching mm's */
1330 local_irq_disable();
9bf5b9eb
CH
1331 active_mm = tsk->active_mm;
1332 if (active_mm != mm) {
1333 mmgrab(mm);
1334 tsk->active_mm = mm;
1335 }
1336 tsk->mm = mm;
618758ed 1337 membarrier_update_current_mm(mm);
38cf307c
PZ
1338 switch_mm_irqs_off(active_mm, mm, tsk);
1339 local_irq_enable();
9bf5b9eb
CH
1340 task_unlock(tsk);
1341#ifdef finish_arch_post_lock_switch
1342 finish_arch_post_lock_switch();
1343#endif
1344
618758ed
MD
1345 /*
1346 * When a kthread starts operating on an address space, the loop
1347 * in membarrier_{private,global}_expedited() may not observe
1348 * that tsk->mm, and not issue an IPI. Membarrier requires a
1349 * memory barrier after storing to tsk->mm, before accessing
1350 * user-space memory. A full memory barrier for membarrier
1351 * {PRIVATE,GLOBAL}_EXPEDITED is implicitly provided by
1352 * mmdrop(), or explicitly with smp_mb().
1353 */
9bf5b9eb
CH
1354 if (active_mm != mm)
1355 mmdrop(active_mm);
618758ed
MD
1356 else
1357 smp_mb();
37c54f9b 1358
3d13f313 1359 to_kthread(tsk)->oldfs = force_uaccess_begin();
9bf5b9eb 1360}
f5678e7f 1361EXPORT_SYMBOL_GPL(kthread_use_mm);
9bf5b9eb 1362
f5678e7f
CH
1363/**
1364 * kthread_unuse_mm - reverse the effect of kthread_use_mm()
1365 * @mm: address space to operate on
9bf5b9eb 1366 */
f5678e7f 1367void kthread_unuse_mm(struct mm_struct *mm)
9bf5b9eb
CH
1368{
1369 struct task_struct *tsk = current;
1370
f5678e7f
CH
1371 WARN_ON_ONCE(!(tsk->flags & PF_KTHREAD));
1372 WARN_ON_ONCE(!tsk->mm);
1373
3d13f313 1374 force_uaccess_end(to_kthread(tsk)->oldfs);
37c54f9b 1375
9bf5b9eb 1376 task_lock(tsk);
618758ed
MD
1377 /*
1378 * When a kthread stops operating on an address space, the loop
1379 * in membarrier_{private,global}_expedited() may not observe
1380 * that tsk->mm, and not issue an IPI. Membarrier requires a
1381 * memory barrier after accessing user-space memory, before
1382 * clearing tsk->mm.
1383 */
1384 smp_mb__after_spinlock();
9bf5b9eb 1385 sync_mm_rss(mm);
38cf307c 1386 local_irq_disable();
9bf5b9eb 1387 tsk->mm = NULL;
618758ed 1388 membarrier_update_current_mm(NULL);
9bf5b9eb
CH
1389 /* active_mm is still 'mm' */
1390 enter_lazy_tlb(mm, tsk);
38cf307c 1391 local_irq_enable();
9bf5b9eb
CH
1392 task_unlock(tsk);
1393}
f5678e7f 1394EXPORT_SYMBOL_GPL(kthread_unuse_mm);
9bf5b9eb 1395
0b508bc9 1396#ifdef CONFIG_BLK_CGROUP
05e3db95
SL
1397/**
1398 * kthread_associate_blkcg - associate blkcg to current kthread
1399 * @css: the cgroup info
1400 *
1401 * Current thread must be a kthread. The thread is running jobs on behalf of
1402 * other threads. In some cases, we expect the jobs attach cgroup info of
1403 * original threads instead of that of current thread. This function stores
1404 * original thread's cgroup info in current kthread context for later
1405 * retrieval.
1406 */
1407void kthread_associate_blkcg(struct cgroup_subsys_state *css)
1408{
1409 struct kthread *kthread;
1410
1411 if (!(current->flags & PF_KTHREAD))
1412 return;
1413 kthread = to_kthread(current);
1414 if (!kthread)
1415 return;
1416
1417 if (kthread->blkcg_css) {
1418 css_put(kthread->blkcg_css);
1419 kthread->blkcg_css = NULL;
1420 }
1421 if (css) {
1422 css_get(css);
1423 kthread->blkcg_css = css;
1424 }
1425}
1426EXPORT_SYMBOL(kthread_associate_blkcg);
1427
1428/**
1429 * kthread_blkcg - get associated blkcg css of current kthread
1430 *
1431 * Current thread must be a kthread.
1432 */
1433struct cgroup_subsys_state *kthread_blkcg(void)
1434{
1435 struct kthread *kthread;
1436
1437 if (current->flags & PF_KTHREAD) {
1438 kthread = to_kthread(current);
1439 if (kthread)
1440 return kthread->blkcg_css;
1441 }
1442 return NULL;
1443}
1444EXPORT_SYMBOL(kthread_blkcg);
1445#endif