1 /* Kernel thread helper functions.
2 * Copyright (C) 2004 IBM Corporation, Rusty Russell.
4 * Creation is done via kthreadd, so that we get a clean environment
5 * even if we're invoked from userspace (think modprobe, hotplug cpu,
8 #include <uapi/linux/sched/types.h>
9 #include <linux/sched.h>
10 #include <linux/sched/task.h>
11 #include <linux/kthread.h>
12 #include <linux/completion.h>
13 #include <linux/err.h>
14 #include <linux/cpuset.h>
15 #include <linux/unistd.h>
16 #include <linux/file.h>
17 #include <linux/export.h>
18 #include <linux/mutex.h>
19 #include <linux/slab.h>
20 #include <linux/freezer.h>
21 #include <linux/ptrace.h>
22 #include <linux/uaccess.h>
23 #include <linux/cgroup.h>
24 #include <trace/events/sched.h>
26 static DEFINE_SPINLOCK(kthread_create_lock
);
27 static LIST_HEAD(kthread_create_list
);
28 struct task_struct
*kthreadd_task
;
30 struct kthread_create_info
32 /* Information passed to kthread() from kthreadd. */
33 int (*threadfn
)(void *data
);
37 /* Result passed back to kthread_create() from kthreadd. */
38 struct task_struct
*result
;
39 struct completion
*done
;
41 struct list_head list
;
48 struct completion parked
;
49 struct completion exited
;
53 KTHREAD_IS_PER_CPU
= 0,
59 static inline void set_kthread_struct(void *kthread
)
62 * We abuse ->set_child_tid to avoid the new member and because it
63 * can't be wrongly copied by copy_process(). We also rely on fact
64 * that the caller can't exec, so PF_KTHREAD can't be cleared.
66 current
->set_child_tid
= (__force
void __user
*)kthread
;
69 static inline struct kthread
*to_kthread(struct task_struct
*k
)
71 WARN_ON(!(k
->flags
& PF_KTHREAD
));
72 return (__force
void *)k
->set_child_tid
;
75 void free_kthread_struct(struct task_struct
*k
)
78 * Can be NULL if this kthread was created by kernel_thread()
79 * or if kmalloc() in kthread() failed.
85 * kthread_should_stop - should this kthread return now?
87 * When someone calls kthread_stop() on your kthread, it will be woken
88 * and this will return true. You should then return, and your return
89 * value will be passed through to kthread_stop().
91 bool kthread_should_stop(void)
93 return test_bit(KTHREAD_SHOULD_STOP
, &to_kthread(current
)->flags
);
95 EXPORT_SYMBOL(kthread_should_stop
);
98 * kthread_should_park - should this kthread park now?
100 * When someone calls kthread_park() on your kthread, it will be woken
101 * and this will return true. You should then do the necessary
102 * cleanup and call kthread_parkme()
104 * Similar to kthread_should_stop(), but this keeps the thread alive
105 * and in a park position. kthread_unpark() "restarts" the thread and
106 * calls the thread function again.
108 bool kthread_should_park(void)
110 return test_bit(KTHREAD_SHOULD_PARK
, &to_kthread(current
)->flags
);
112 EXPORT_SYMBOL_GPL(kthread_should_park
);
115 * kthread_freezable_should_stop - should this freezable kthread return now?
116 * @was_frozen: optional out parameter, indicates whether %current was frozen
118 * kthread_should_stop() for freezable kthreads, which will enter
119 * refrigerator if necessary. This function is safe from kthread_stop() /
120 * freezer deadlock and freezable kthreads should use this function instead
121 * of calling try_to_freeze() directly.
123 bool kthread_freezable_should_stop(bool *was_frozen
)
129 if (unlikely(freezing(current
)))
130 frozen
= __refrigerator(true);
133 *was_frozen
= frozen
;
135 return kthread_should_stop();
137 EXPORT_SYMBOL_GPL(kthread_freezable_should_stop
);
140 * kthread_data - return data value specified on kthread creation
141 * @task: kthread task in question
143 * Return the data value specified when kthread @task was created.
144 * The caller is responsible for ensuring the validity of @task when
145 * calling this function.
147 void *kthread_data(struct task_struct
*task
)
149 return to_kthread(task
)->data
;
153 * kthread_probe_data - speculative version of kthread_data()
154 * @task: possible kthread task in question
156 * @task could be a kthread task. Return the data value specified when it
157 * was created if accessible. If @task isn't a kthread task or its data is
158 * inaccessible for any reason, %NULL is returned. This function requires
159 * that @task itself is safe to dereference.
161 void *kthread_probe_data(struct task_struct
*task
)
163 struct kthread
*kthread
= to_kthread(task
);
166 probe_kernel_read(&data
, &kthread
->data
, sizeof(data
));
170 static void __kthread_parkme(struct kthread
*self
)
173 set_current_state(TASK_PARKED
);
174 if (!test_bit(KTHREAD_SHOULD_PARK
, &self
->flags
))
176 if (!test_and_set_bit(KTHREAD_IS_PARKED
, &self
->flags
))
177 complete(&self
->parked
);
180 clear_bit(KTHREAD_IS_PARKED
, &self
->flags
);
181 __set_current_state(TASK_RUNNING
);
184 void kthread_parkme(void)
186 __kthread_parkme(to_kthread(current
));
188 EXPORT_SYMBOL_GPL(kthread_parkme
);
190 static int kthread(void *_create
)
192 /* Copy data: it's on kthread's stack */
193 struct kthread_create_info
*create
= _create
;
194 int (*threadfn
)(void *data
) = create
->threadfn
;
195 void *data
= create
->data
;
196 struct completion
*done
;
197 struct kthread
*self
;
200 self
= kmalloc(sizeof(*self
), GFP_KERNEL
);
201 set_kthread_struct(self
);
203 /* If user was SIGKILLed, I release the structure. */
204 done
= xchg(&create
->done
, NULL
);
211 create
->result
= ERR_PTR(-ENOMEM
);
218 init_completion(&self
->exited
);
219 init_completion(&self
->parked
);
220 current
->vfork_done
= &self
->exited
;
222 /* OK, tell user we're spawned, wait for stop or wakeup */
223 __set_current_state(TASK_UNINTERRUPTIBLE
);
224 create
->result
= current
;
229 if (!test_bit(KTHREAD_SHOULD_STOP
, &self
->flags
)) {
230 cgroup_kthread_ready();
231 __kthread_parkme(self
);
232 ret
= threadfn(data
);
237 /* called from do_fork() to get node information for about to be created task */
238 int tsk_fork_get_node(struct task_struct
*tsk
)
241 if (tsk
== kthreadd_task
)
242 return tsk
->pref_node_fork
;
247 static void create_kthread(struct kthread_create_info
*create
)
252 current
->pref_node_fork
= create
->node
;
254 /* We want our own signal handler (we take no signals by default). */
255 pid
= kernel_thread(kthread
, create
, CLONE_FS
| CLONE_FILES
| SIGCHLD
);
257 /* If user was SIGKILLed, I release the structure. */
258 struct completion
*done
= xchg(&create
->done
, NULL
);
264 create
->result
= ERR_PTR(pid
);
269 static __printf(4, 0)
270 struct task_struct
*__kthread_create_on_node(int (*threadfn
)(void *data
),
271 void *data
, int node
,
272 const char namefmt
[],
275 DECLARE_COMPLETION_ONSTACK(done
);
276 struct task_struct
*task
;
277 struct kthread_create_info
*create
= kmalloc(sizeof(*create
),
281 return ERR_PTR(-ENOMEM
);
282 create
->threadfn
= threadfn
;
285 create
->done
= &done
;
287 spin_lock(&kthread_create_lock
);
288 list_add_tail(&create
->list
, &kthread_create_list
);
289 spin_unlock(&kthread_create_lock
);
291 wake_up_process(kthreadd_task
);
293 * Wait for completion in killable state, for I might be chosen by
294 * the OOM killer while kthreadd is trying to allocate memory for
297 if (unlikely(wait_for_completion_killable(&done
))) {
299 * If I was SIGKILLed before kthreadd (or new kernel thread)
300 * calls complete(), leave the cleanup of this structure to
303 if (xchg(&create
->done
, NULL
))
304 return ERR_PTR(-EINTR
);
306 * kthreadd (or new kernel thread) will call complete()
309 wait_for_completion(&done
);
311 task
= create
->result
;
313 static const struct sched_param param
= { .sched_priority
= 0 };
314 char name
[TASK_COMM_LEN
];
317 * task is already visible to other tasks, so updating
318 * COMM must be protected.
320 vsnprintf(name
, sizeof(name
), namefmt
, args
);
321 set_task_comm(task
, name
);
323 * root may have changed our (kthreadd's) priority or CPU mask.
324 * The kernel thread should not inherit these properties.
326 sched_setscheduler_nocheck(task
, SCHED_NORMAL
, ¶m
);
327 set_cpus_allowed_ptr(task
, cpu_all_mask
);
334 * kthread_create_on_node - create a kthread.
335 * @threadfn: the function to run until signal_pending(current).
336 * @data: data ptr for @threadfn.
337 * @node: task and thread structures for the thread are allocated on this node
338 * @namefmt: printf-style name for the thread.
340 * Description: This helper function creates and names a kernel
341 * thread. The thread will be stopped: use wake_up_process() to start
342 * it. See also kthread_run(). The new thread has SCHED_NORMAL policy and
343 * is affine to all CPUs.
345 * If thread is going to be bound on a particular cpu, give its node
346 * in @node, to get NUMA affinity for kthread stack, or else give NUMA_NO_NODE.
347 * When woken, the thread will run @threadfn() with @data as its
348 * argument. @threadfn() can either call do_exit() directly if it is a
349 * standalone thread for which no one will call kthread_stop(), or
350 * return when 'kthread_should_stop()' is true (which means
351 * kthread_stop() has been called). The return value should be zero
352 * or a negative error number; it will be passed to kthread_stop().
354 * Returns a task_struct or ERR_PTR(-ENOMEM) or ERR_PTR(-EINTR).
356 struct task_struct
*kthread_create_on_node(int (*threadfn
)(void *data
),
357 void *data
, int node
,
358 const char namefmt
[],
361 struct task_struct
*task
;
364 va_start(args
, namefmt
);
365 task
= __kthread_create_on_node(threadfn
, data
, node
, namefmt
, args
);
370 EXPORT_SYMBOL(kthread_create_on_node
);
372 static void __kthread_bind_mask(struct task_struct
*p
, const struct cpumask
*mask
, long state
)
376 if (!wait_task_inactive(p
, state
)) {
381 /* It's safe because the task is inactive. */
382 raw_spin_lock_irqsave(&p
->pi_lock
, flags
);
383 do_set_cpus_allowed(p
, mask
);
384 p
->flags
|= PF_NO_SETAFFINITY
;
385 raw_spin_unlock_irqrestore(&p
->pi_lock
, flags
);
388 static void __kthread_bind(struct task_struct
*p
, unsigned int cpu
, long state
)
390 __kthread_bind_mask(p
, cpumask_of(cpu
), state
);
393 void kthread_bind_mask(struct task_struct
*p
, const struct cpumask
*mask
)
395 __kthread_bind_mask(p
, mask
, TASK_UNINTERRUPTIBLE
);
399 * kthread_bind - bind a just-created kthread to a cpu.
400 * @p: thread created by kthread_create().
401 * @cpu: cpu (might not be online, must be possible) for @k to run on.
403 * Description: This function is equivalent to set_cpus_allowed(),
404 * except that @cpu doesn't need to be online, and the thread must be
405 * stopped (i.e., just returned from kthread_create()).
407 void kthread_bind(struct task_struct
*p
, unsigned int cpu
)
409 __kthread_bind(p
, cpu
, TASK_UNINTERRUPTIBLE
);
411 EXPORT_SYMBOL(kthread_bind
);
414 * kthread_create_on_cpu - Create a cpu bound kthread
415 * @threadfn: the function to run until signal_pending(current).
416 * @data: data ptr for @threadfn.
417 * @cpu: The cpu on which the thread should be bound,
418 * @namefmt: printf-style name for the thread. Format is restricted
419 * to "name.*%u". Code fills in cpu number.
421 * Description: This helper function creates and names a kernel thread
422 * The thread will be woken and put into park mode.
424 struct task_struct
*kthread_create_on_cpu(int (*threadfn
)(void *data
),
425 void *data
, unsigned int cpu
,
428 struct task_struct
*p
;
430 p
= kthread_create_on_node(threadfn
, data
, cpu_to_node(cpu
), namefmt
,
434 kthread_bind(p
, cpu
);
435 /* CPU hotplug need to bind once again when unparking the thread. */
436 set_bit(KTHREAD_IS_PER_CPU
, &to_kthread(p
)->flags
);
437 to_kthread(p
)->cpu
= cpu
;
442 * kthread_unpark - unpark a thread created by kthread_create().
443 * @k: thread created by kthread_create().
445 * Sets kthread_should_park() for @k to return false, wakes it, and
446 * waits for it to return. If the thread is marked percpu then its
447 * bound to the cpu again.
449 void kthread_unpark(struct task_struct
*k
)
451 struct kthread
*kthread
= to_kthread(k
);
453 clear_bit(KTHREAD_SHOULD_PARK
, &kthread
->flags
);
455 * We clear the IS_PARKED bit here as we don't wait
456 * until the task has left the park code. So if we'd
457 * park before that happens we'd see the IS_PARKED bit
458 * which might be about to be cleared.
460 if (test_and_clear_bit(KTHREAD_IS_PARKED
, &kthread
->flags
)) {
462 * Newly created kthread was parked when the CPU was offline.
463 * The binding was lost and we need to set it again.
465 if (test_bit(KTHREAD_IS_PER_CPU
, &kthread
->flags
))
466 __kthread_bind(k
, kthread
->cpu
, TASK_PARKED
);
467 wake_up_state(k
, TASK_PARKED
);
470 EXPORT_SYMBOL_GPL(kthread_unpark
);
473 * kthread_park - park a thread created by kthread_create().
474 * @k: thread created by kthread_create().
476 * Sets kthread_should_park() for @k to return true, wakes it, and
477 * waits for it to return. This can also be called after kthread_create()
478 * instead of calling wake_up_process(): the thread will park without
479 * calling threadfn().
481 * Returns 0 if the thread is parked, -ENOSYS if the thread exited.
482 * If called by the kthread itself just the park bit is set.
484 int kthread_park(struct task_struct
*k
)
486 struct kthread
*kthread
= to_kthread(k
);
488 if (WARN_ON(k
->flags
& PF_EXITING
))
491 if (!test_bit(KTHREAD_IS_PARKED
, &kthread
->flags
)) {
492 set_bit(KTHREAD_SHOULD_PARK
, &kthread
->flags
);
495 wait_for_completion(&kthread
->parked
);
501 EXPORT_SYMBOL_GPL(kthread_park
);
504 * kthread_stop - stop a thread created by kthread_create().
505 * @k: thread created by kthread_create().
507 * Sets kthread_should_stop() for @k to return true, wakes it, and
508 * waits for it to exit. This can also be called after kthread_create()
509 * instead of calling wake_up_process(): the thread will exit without
510 * calling threadfn().
512 * If threadfn() may call do_exit() itself, the caller must ensure
513 * task_struct can't go away.
515 * Returns the result of threadfn(), or %-EINTR if wake_up_process()
518 int kthread_stop(struct task_struct
*k
)
520 struct kthread
*kthread
;
523 trace_sched_kthread_stop(k
);
526 kthread
= to_kthread(k
);
527 set_bit(KTHREAD_SHOULD_STOP
, &kthread
->flags
);
530 wait_for_completion(&kthread
->exited
);
534 trace_sched_kthread_stop_ret(ret
);
537 EXPORT_SYMBOL(kthread_stop
);
539 int kthreadd(void *unused
)
541 struct task_struct
*tsk
= current
;
543 /* Setup a clean context for our children to inherit. */
544 set_task_comm(tsk
, "kthreadd");
546 set_cpus_allowed_ptr(tsk
, cpu_all_mask
);
547 set_mems_allowed(node_states
[N_MEMORY
]);
549 current
->flags
|= PF_NOFREEZE
;
550 cgroup_init_kthreadd();
553 set_current_state(TASK_INTERRUPTIBLE
);
554 if (list_empty(&kthread_create_list
))
556 __set_current_state(TASK_RUNNING
);
558 spin_lock(&kthread_create_lock
);
559 while (!list_empty(&kthread_create_list
)) {
560 struct kthread_create_info
*create
;
562 create
= list_entry(kthread_create_list
.next
,
563 struct kthread_create_info
, list
);
564 list_del_init(&create
->list
);
565 spin_unlock(&kthread_create_lock
);
567 create_kthread(create
);
569 spin_lock(&kthread_create_lock
);
571 spin_unlock(&kthread_create_lock
);
577 void __kthread_init_worker(struct kthread_worker
*worker
,
579 struct lock_class_key
*key
)
581 memset(worker
, 0, sizeof(struct kthread_worker
));
582 spin_lock_init(&worker
->lock
);
583 lockdep_set_class_and_name(&worker
->lock
, key
, name
);
584 INIT_LIST_HEAD(&worker
->work_list
);
585 INIT_LIST_HEAD(&worker
->delayed_work_list
);
587 EXPORT_SYMBOL_GPL(__kthread_init_worker
);
590 * kthread_worker_fn - kthread function to process kthread_worker
591 * @worker_ptr: pointer to initialized kthread_worker
593 * This function implements the main cycle of kthread worker. It processes
594 * work_list until it is stopped with kthread_stop(). It sleeps when the queue
597 * The works are not allowed to keep any locks, disable preemption or interrupts
598 * when they finish. There is defined a safe point for freezing when one work
599 * finishes and before a new one is started.
601 * Also the works must not be handled by more than one worker at the same time,
602 * see also kthread_queue_work().
604 int kthread_worker_fn(void *worker_ptr
)
606 struct kthread_worker
*worker
= worker_ptr
;
607 struct kthread_work
*work
;
610 * FIXME: Update the check and remove the assignment when all kthread
611 * worker users are created using kthread_create_worker*() functions.
613 WARN_ON(worker
->task
&& worker
->task
!= current
);
614 worker
->task
= current
;
616 if (worker
->flags
& KTW_FREEZABLE
)
620 set_current_state(TASK_INTERRUPTIBLE
); /* mb paired w/ kthread_stop */
622 if (kthread_should_stop()) {
623 __set_current_state(TASK_RUNNING
);
624 spin_lock_irq(&worker
->lock
);
626 spin_unlock_irq(&worker
->lock
);
631 spin_lock_irq(&worker
->lock
);
632 if (!list_empty(&worker
->work_list
)) {
633 work
= list_first_entry(&worker
->work_list
,
634 struct kthread_work
, node
);
635 list_del_init(&work
->node
);
637 worker
->current_work
= work
;
638 spin_unlock_irq(&worker
->lock
);
641 __set_current_state(TASK_RUNNING
);
643 } else if (!freezing(current
))
650 EXPORT_SYMBOL_GPL(kthread_worker_fn
);
652 static __printf(3, 0) struct kthread_worker
*
653 __kthread_create_worker(int cpu
, unsigned int flags
,
654 const char namefmt
[], va_list args
)
656 struct kthread_worker
*worker
;
657 struct task_struct
*task
;
660 worker
= kzalloc(sizeof(*worker
), GFP_KERNEL
);
662 return ERR_PTR(-ENOMEM
);
664 kthread_init_worker(worker
);
667 node
= cpu_to_node(cpu
);
669 task
= __kthread_create_on_node(kthread_worker_fn
, worker
,
670 node
, namefmt
, args
);
675 kthread_bind(task
, cpu
);
677 worker
->flags
= flags
;
679 wake_up_process(task
);
684 return ERR_CAST(task
);
688 * kthread_create_worker - create a kthread worker
689 * @flags: flags modifying the default behavior of the worker
690 * @namefmt: printf-style name for the kthread worker (task).
692 * Returns a pointer to the allocated worker on success, ERR_PTR(-ENOMEM)
693 * when the needed structures could not get allocated, and ERR_PTR(-EINTR)
694 * when the worker was SIGKILLed.
696 struct kthread_worker
*
697 kthread_create_worker(unsigned int flags
, const char namefmt
[], ...)
699 struct kthread_worker
*worker
;
702 va_start(args
, namefmt
);
703 worker
= __kthread_create_worker(-1, flags
, namefmt
, args
);
708 EXPORT_SYMBOL(kthread_create_worker
);
711 * kthread_create_worker_on_cpu - create a kthread worker and bind it
712 * it to a given CPU and the associated NUMA node.
714 * @flags: flags modifying the default behavior of the worker
715 * @namefmt: printf-style name for the kthread worker (task).
717 * Use a valid CPU number if you want to bind the kthread worker
718 * to the given CPU and the associated NUMA node.
720 * A good practice is to add the cpu number also into the worker name.
721 * For example, use kthread_create_worker_on_cpu(cpu, "helper/%d", cpu).
723 * Returns a pointer to the allocated worker on success, ERR_PTR(-ENOMEM)
724 * when the needed structures could not get allocated, and ERR_PTR(-EINTR)
725 * when the worker was SIGKILLed.
727 struct kthread_worker
*
728 kthread_create_worker_on_cpu(int cpu
, unsigned int flags
,
729 const char namefmt
[], ...)
731 struct kthread_worker
*worker
;
734 va_start(args
, namefmt
);
735 worker
= __kthread_create_worker(cpu
, flags
, namefmt
, args
);
740 EXPORT_SYMBOL(kthread_create_worker_on_cpu
);
743 * Returns true when the work could not be queued at the moment.
744 * It happens when it is already pending in a worker list
745 * or when it is being cancelled.
747 static inline bool queuing_blocked(struct kthread_worker
*worker
,
748 struct kthread_work
*work
)
750 lockdep_assert_held(&worker
->lock
);
752 return !list_empty(&work
->node
) || work
->canceling
;
755 static void kthread_insert_work_sanity_check(struct kthread_worker
*worker
,
756 struct kthread_work
*work
)
758 lockdep_assert_held(&worker
->lock
);
759 WARN_ON_ONCE(!list_empty(&work
->node
));
760 /* Do not use a work with >1 worker, see kthread_queue_work() */
761 WARN_ON_ONCE(work
->worker
&& work
->worker
!= worker
);
764 /* insert @work before @pos in @worker */
765 static void kthread_insert_work(struct kthread_worker
*worker
,
766 struct kthread_work
*work
,
767 struct list_head
*pos
)
769 kthread_insert_work_sanity_check(worker
, work
);
771 list_add_tail(&work
->node
, pos
);
772 work
->worker
= worker
;
773 if (!worker
->current_work
&& likely(worker
->task
))
774 wake_up_process(worker
->task
);
778 * kthread_queue_work - queue a kthread_work
779 * @worker: target kthread_worker
780 * @work: kthread_work to queue
782 * Queue @work to work processor @task for async execution. @task
783 * must have been created with kthread_worker_create(). Returns %true
784 * if @work was successfully queued, %false if it was already pending.
786 * Reinitialize the work if it needs to be used by another worker.
787 * For example, when the worker was stopped and started again.
789 bool kthread_queue_work(struct kthread_worker
*worker
,
790 struct kthread_work
*work
)
795 spin_lock_irqsave(&worker
->lock
, flags
);
796 if (!queuing_blocked(worker
, work
)) {
797 kthread_insert_work(worker
, work
, &worker
->work_list
);
800 spin_unlock_irqrestore(&worker
->lock
, flags
);
803 EXPORT_SYMBOL_GPL(kthread_queue_work
);
806 * kthread_delayed_work_timer_fn - callback that queues the associated kthread
807 * delayed work when the timer expires.
808 * @__data: pointer to the data associated with the timer
810 * The format of the function is defined by struct timer_list.
811 * It should have been called from irqsafe timer with irq already off.
813 void kthread_delayed_work_timer_fn(unsigned long __data
)
815 struct kthread_delayed_work
*dwork
=
816 (struct kthread_delayed_work
*)__data
;
817 struct kthread_work
*work
= &dwork
->work
;
818 struct kthread_worker
*worker
= work
->worker
;
821 * This might happen when a pending work is reinitialized.
822 * It means that it is used a wrong way.
824 if (WARN_ON_ONCE(!worker
))
827 spin_lock(&worker
->lock
);
828 /* Work must not be used with >1 worker, see kthread_queue_work(). */
829 WARN_ON_ONCE(work
->worker
!= worker
);
831 /* Move the work from worker->delayed_work_list. */
832 WARN_ON_ONCE(list_empty(&work
->node
));
833 list_del_init(&work
->node
);
834 kthread_insert_work(worker
, work
, &worker
->work_list
);
836 spin_unlock(&worker
->lock
);
838 EXPORT_SYMBOL(kthread_delayed_work_timer_fn
);
840 void __kthread_queue_delayed_work(struct kthread_worker
*worker
,
841 struct kthread_delayed_work
*dwork
,
844 struct timer_list
*timer
= &dwork
->timer
;
845 struct kthread_work
*work
= &dwork
->work
;
847 WARN_ON_ONCE(timer
->function
!= kthread_delayed_work_timer_fn
||
848 timer
->data
!= (unsigned long)dwork
);
851 * If @delay is 0, queue @dwork->work immediately. This is for
852 * both optimization and correctness. The earliest @timer can
853 * expire is on the closest next tick and delayed_work users depend
854 * on that there's no such delay when @delay is 0.
857 kthread_insert_work(worker
, work
, &worker
->work_list
);
861 /* Be paranoid and try to detect possible races already now. */
862 kthread_insert_work_sanity_check(worker
, work
);
864 list_add(&work
->node
, &worker
->delayed_work_list
);
865 work
->worker
= worker
;
866 timer
->expires
= jiffies
+ delay
;
871 * kthread_queue_delayed_work - queue the associated kthread work
873 * @worker: target kthread_worker
874 * @dwork: kthread_delayed_work to queue
875 * @delay: number of jiffies to wait before queuing
877 * If the work has not been pending it starts a timer that will queue
878 * the work after the given @delay. If @delay is zero, it queues the
881 * Return: %false if the @work has already been pending. It means that
882 * either the timer was running or the work was queued. It returns %true
885 bool kthread_queue_delayed_work(struct kthread_worker
*worker
,
886 struct kthread_delayed_work
*dwork
,
889 struct kthread_work
*work
= &dwork
->work
;
893 spin_lock_irqsave(&worker
->lock
, flags
);
895 if (!queuing_blocked(worker
, work
)) {
896 __kthread_queue_delayed_work(worker
, dwork
, delay
);
900 spin_unlock_irqrestore(&worker
->lock
, flags
);
903 EXPORT_SYMBOL_GPL(kthread_queue_delayed_work
);
905 struct kthread_flush_work
{
906 struct kthread_work work
;
907 struct completion done
;
910 static void kthread_flush_work_fn(struct kthread_work
*work
)
912 struct kthread_flush_work
*fwork
=
913 container_of(work
, struct kthread_flush_work
, work
);
914 complete(&fwork
->done
);
918 * kthread_flush_work - flush a kthread_work
919 * @work: work to flush
921 * If @work is queued or executing, wait for it to finish execution.
923 void kthread_flush_work(struct kthread_work
*work
)
925 struct kthread_flush_work fwork
= {
926 KTHREAD_WORK_INIT(fwork
.work
, kthread_flush_work_fn
),
927 COMPLETION_INITIALIZER_ONSTACK(fwork
.done
),
929 struct kthread_worker
*worker
;
932 worker
= work
->worker
;
936 spin_lock_irq(&worker
->lock
);
937 /* Work must not be used with >1 worker, see kthread_queue_work(). */
938 WARN_ON_ONCE(work
->worker
!= worker
);
940 if (!list_empty(&work
->node
))
941 kthread_insert_work(worker
, &fwork
.work
, work
->node
.next
);
942 else if (worker
->current_work
== work
)
943 kthread_insert_work(worker
, &fwork
.work
,
944 worker
->work_list
.next
);
948 spin_unlock_irq(&worker
->lock
);
951 wait_for_completion(&fwork
.done
);
953 EXPORT_SYMBOL_GPL(kthread_flush_work
);
956 * This function removes the work from the worker queue. Also it makes sure
957 * that it won't get queued later via the delayed work's timer.
959 * The work might still be in use when this function finishes. See the
960 * current_work proceed by the worker.
962 * Return: %true if @work was pending and successfully canceled,
963 * %false if @work was not pending
965 static bool __kthread_cancel_work(struct kthread_work
*work
, bool is_dwork
,
966 unsigned long *flags
)
968 /* Try to cancel the timer if exists. */
970 struct kthread_delayed_work
*dwork
=
971 container_of(work
, struct kthread_delayed_work
, work
);
972 struct kthread_worker
*worker
= work
->worker
;
975 * del_timer_sync() must be called to make sure that the timer
976 * callback is not running. The lock must be temporary released
977 * to avoid a deadlock with the callback. In the meantime,
978 * any queuing is blocked by setting the canceling counter.
981 spin_unlock_irqrestore(&worker
->lock
, *flags
);
982 del_timer_sync(&dwork
->timer
);
983 spin_lock_irqsave(&worker
->lock
, *flags
);
988 * Try to remove the work from a worker list. It might either
989 * be from worker->work_list or from worker->delayed_work_list.
991 if (!list_empty(&work
->node
)) {
992 list_del_init(&work
->node
);
1000 * kthread_mod_delayed_work - modify delay of or queue a kthread delayed work
1001 * @worker: kthread worker to use
1002 * @dwork: kthread delayed work to queue
1003 * @delay: number of jiffies to wait before queuing
1005 * If @dwork is idle, equivalent to kthread_queue_delayed_work(). Otherwise,
1006 * modify @dwork's timer so that it expires after @delay. If @delay is zero,
1007 * @work is guaranteed to be queued immediately.
1009 * Return: %true if @dwork was pending and its timer was modified,
1012 * A special case is when the work is being canceled in parallel.
1013 * It might be caused either by the real kthread_cancel_delayed_work_sync()
1014 * or yet another kthread_mod_delayed_work() call. We let the other command
1015 * win and return %false here. The caller is supposed to synchronize these
1016 * operations a reasonable way.
1018 * This function is safe to call from any context including IRQ handler.
1019 * See __kthread_cancel_work() and kthread_delayed_work_timer_fn()
1022 bool kthread_mod_delayed_work(struct kthread_worker
*worker
,
1023 struct kthread_delayed_work
*dwork
,
1024 unsigned long delay
)
1026 struct kthread_work
*work
= &dwork
->work
;
1027 unsigned long flags
;
1030 spin_lock_irqsave(&worker
->lock
, flags
);
1032 /* Do not bother with canceling when never queued. */
1036 /* Work must not be used with >1 worker, see kthread_queue_work() */
1037 WARN_ON_ONCE(work
->worker
!= worker
);
1039 /* Do not fight with another command that is canceling this work. */
1040 if (work
->canceling
)
1043 ret
= __kthread_cancel_work(work
, true, &flags
);
1045 __kthread_queue_delayed_work(worker
, dwork
, delay
);
1047 spin_unlock_irqrestore(&worker
->lock
, flags
);
1050 EXPORT_SYMBOL_GPL(kthread_mod_delayed_work
);
1052 static bool __kthread_cancel_work_sync(struct kthread_work
*work
, bool is_dwork
)
1054 struct kthread_worker
*worker
= work
->worker
;
1055 unsigned long flags
;
1061 spin_lock_irqsave(&worker
->lock
, flags
);
1062 /* Work must not be used with >1 worker, see kthread_queue_work(). */
1063 WARN_ON_ONCE(work
->worker
!= worker
);
1065 ret
= __kthread_cancel_work(work
, is_dwork
, &flags
);
1067 if (worker
->current_work
!= work
)
1071 * The work is in progress and we need to wait with the lock released.
1072 * In the meantime, block any queuing by setting the canceling counter.
1075 spin_unlock_irqrestore(&worker
->lock
, flags
);
1076 kthread_flush_work(work
);
1077 spin_lock_irqsave(&worker
->lock
, flags
);
1081 spin_unlock_irqrestore(&worker
->lock
, flags
);
1087 * kthread_cancel_work_sync - cancel a kthread work and wait for it to finish
1088 * @work: the kthread work to cancel
1090 * Cancel @work and wait for its execution to finish. This function
1091 * can be used even if the work re-queues itself. On return from this
1092 * function, @work is guaranteed to be not pending or executing on any CPU.
1094 * kthread_cancel_work_sync(&delayed_work->work) must not be used for
1095 * delayed_work's. Use kthread_cancel_delayed_work_sync() instead.
1097 * The caller must ensure that the worker on which @work was last
1098 * queued can't be destroyed before this function returns.
1100 * Return: %true if @work was pending, %false otherwise.
1102 bool kthread_cancel_work_sync(struct kthread_work
*work
)
1104 return __kthread_cancel_work_sync(work
, false);
1106 EXPORT_SYMBOL_GPL(kthread_cancel_work_sync
);
1109 * kthread_cancel_delayed_work_sync - cancel a kthread delayed work and
1110 * wait for it to finish.
1111 * @dwork: the kthread delayed work to cancel
1113 * This is kthread_cancel_work_sync() for delayed works.
1115 * Return: %true if @dwork was pending, %false otherwise.
1117 bool kthread_cancel_delayed_work_sync(struct kthread_delayed_work
*dwork
)
1119 return __kthread_cancel_work_sync(&dwork
->work
, true);
1121 EXPORT_SYMBOL_GPL(kthread_cancel_delayed_work_sync
);
1124 * kthread_flush_worker - flush all current works on a kthread_worker
1125 * @worker: worker to flush
1127 * Wait until all currently executing or pending works on @worker are
1130 void kthread_flush_worker(struct kthread_worker
*worker
)
1132 struct kthread_flush_work fwork
= {
1133 KTHREAD_WORK_INIT(fwork
.work
, kthread_flush_work_fn
),
1134 COMPLETION_INITIALIZER_ONSTACK(fwork
.done
),
1137 kthread_queue_work(worker
, &fwork
.work
);
1138 wait_for_completion(&fwork
.done
);
1140 EXPORT_SYMBOL_GPL(kthread_flush_worker
);
1143 * kthread_destroy_worker - destroy a kthread worker
1144 * @worker: worker to be destroyed
1146 * Flush and destroy @worker. The simple flush is enough because the kthread
1147 * worker API is used only in trivial scenarios. There are no multi-step state
1150 void kthread_destroy_worker(struct kthread_worker
*worker
)
1152 struct task_struct
*task
;
1154 task
= worker
->task
;
1158 kthread_flush_worker(worker
);
1160 WARN_ON(!list_empty(&worker
->work_list
));
1163 EXPORT_SYMBOL(kthread_destroy_worker
);