blob: 22ccf9dee177dcfe7ec6b91eeb6b5c6867fc4903 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_KTHREAD_H
2#define _LINUX_KTHREAD_H
3/* Simple interface for creating and stopping kernel threads without mess. */
4#include <linux/err.h>
5#include <linux/sched.h>
6
Joe Perchesb9075fa2011-10-31 17:11:33 -07007__printf(4, 5)
Eric Dumazet207205a2011-03-22 16:30:44 -07008struct task_struct *kthread_create_on_node(int (*threadfn)(void *data),
9 void *data,
10 int node,
Joe Perchesb9075fa2011-10-31 17:11:33 -070011 const char namefmt[], ...);
Eric Dumazet207205a2011-03-22 16:30:44 -070012
13#define kthread_create(threadfn, data, namefmt, arg...) \
14 kthread_create_on_node(threadfn, data, -1, namefmt, ##arg)
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17/**
Randy Dunlap9e37bd32006-06-25 05:49:19 -070018 * kthread_run - create and wake a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * @threadfn: the function to run until signal_pending(current).
20 * @data: data ptr for @threadfn.
21 * @namefmt: printf-style name for the thread.
22 *
23 * Description: Convenient wrapper for kthread_create() followed by
Randy Dunlap9e37bd32006-06-25 05:49:19 -070024 * wake_up_process(). Returns the kthread or ERR_PTR(-ENOMEM).
25 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#define kthread_run(threadfn, data, namefmt, ...) \
27({ \
28 struct task_struct *__k \
29 = kthread_create(threadfn, data, namefmt, ## __VA_ARGS__); \
30 if (!IS_ERR(__k)) \
31 wake_up_process(__k); \
32 __k; \
33})
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035void kthread_bind(struct task_struct *k, unsigned int cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036int kthread_stop(struct task_struct *k);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037int kthread_should_stop(void);
Tejun Heo8a32c442011-11-21 12:32:23 -080038bool kthread_freezable_should_stop(bool *was_frozen);
Tejun Heo82805ab2010-06-29 10:07:09 +020039void *kthread_data(struct task_struct *k);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Eric W. Biederman73c27992007-05-09 02:34:32 -070041int kthreadd(void *unused);
42extern struct task_struct *kthreadd_task;
Eric Dumazet207205a2011-03-22 16:30:44 -070043extern int tsk_fork_get_node(struct task_struct *tsk);
Eric W. Biederman73c27992007-05-09 02:34:32 -070044
Tejun Heob56c0d82010-06-29 10:07:09 +020045/*
46 * Simple work processor based on kthread.
47 *
48 * This provides easier way to make use of kthreads. A kthread_work
49 * can be queued and flushed using queue/flush_kthread_work()
50 * respectively. Queued kthread_works are processed by a kthread
51 * running kthread_worker_fn().
Tejun Heob56c0d82010-06-29 10:07:09 +020052 */
53struct kthread_work;
54typedef void (*kthread_work_func_t)(struct kthread_work *work);
55
56struct kthread_worker {
57 spinlock_t lock;
58 struct list_head work_list;
59 struct task_struct *task;
Tejun Heo46f3d972012-07-19 13:52:53 -070060 struct kthread_work *current_work;
Tejun Heob56c0d82010-06-29 10:07:09 +020061};
62
63struct kthread_work {
64 struct list_head node;
65 kthread_work_func_t func;
66 wait_queue_head_t done;
Tejun Heo46f3d972012-07-19 13:52:53 -070067 struct kthread_worker *worker;
Tejun Heob56c0d82010-06-29 10:07:09 +020068};
69
70#define KTHREAD_WORKER_INIT(worker) { \
Thomas Gleixner92578c02011-01-23 15:24:55 +010071 .lock = __SPIN_LOCK_UNLOCKED((worker).lock), \
Tejun Heob56c0d82010-06-29 10:07:09 +020072 .work_list = LIST_HEAD_INIT((worker).work_list), \
73 }
74
75#define KTHREAD_WORK_INIT(work, fn) { \
76 .node = LIST_HEAD_INIT((work).node), \
77 .func = (fn), \
78 .done = __WAIT_QUEUE_HEAD_INITIALIZER((work).done), \
Tejun Heob56c0d82010-06-29 10:07:09 +020079 }
80
81#define DEFINE_KTHREAD_WORKER(worker) \
82 struct kthread_worker worker = KTHREAD_WORKER_INIT(worker)
83
84#define DEFINE_KTHREAD_WORK(work, fn) \
85 struct kthread_work work = KTHREAD_WORK_INIT(work, fn)
86
Yong Zhang4f32e9b2010-12-22 10:27:53 +010087/*
88 * kthread_worker.lock and kthread_work.done need their own lockdep class
89 * keys if they are defined on stack with lockdep enabled. Use the
90 * following macros when defining them on stack.
91 */
92#ifdef CONFIG_LOCKDEP
93# define KTHREAD_WORKER_INIT_ONSTACK(worker) \
94 ({ init_kthread_worker(&worker); worker; })
95# define DEFINE_KTHREAD_WORKER_ONSTACK(worker) \
96 struct kthread_worker worker = KTHREAD_WORKER_INIT_ONSTACK(worker)
97# define KTHREAD_WORK_INIT_ONSTACK(work, fn) \
98 ({ init_kthread_work((&work), fn); work; })
99# define DEFINE_KTHREAD_WORK_ONSTACK(work, fn) \
100 struct kthread_work work = KTHREAD_WORK_INIT_ONSTACK(work, fn)
101#else
102# define DEFINE_KTHREAD_WORKER_ONSTACK(worker) DEFINE_KTHREAD_WORKER(worker)
103# define DEFINE_KTHREAD_WORK_ONSTACK(work, fn) DEFINE_KTHREAD_WORK(work, fn)
104#endif
Tejun Heob56c0d82010-06-29 10:07:09 +0200105
Yong Zhang4f32e9b2010-12-22 10:27:53 +0100106extern void __init_kthread_worker(struct kthread_worker *worker,
107 const char *name, struct lock_class_key *key);
108
109#define init_kthread_worker(worker) \
110 do { \
111 static struct lock_class_key __key; \
112 __init_kthread_worker((worker), "("#worker")->lock", &__key); \
113 } while (0)
114
115#define init_kthread_work(work, fn) \
116 do { \
117 memset((work), 0, sizeof(struct kthread_work)); \
118 INIT_LIST_HEAD(&(work)->node); \
119 (work)->func = (fn); \
120 init_waitqueue_head(&(work)->done); \
121 } while (0)
Tejun Heob56c0d82010-06-29 10:07:09 +0200122
123int kthread_worker_fn(void *worker_ptr);
124
125bool queue_kthread_work(struct kthread_worker *worker,
126 struct kthread_work *work);
127void flush_kthread_work(struct kthread_work *work);
128void flush_kthread_worker(struct kthread_worker *worker);
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#endif /* _LINUX_KTHREAD_H */