kthread.h 6.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6
#ifndef _LINUX_KTHREAD_H
#define _LINUX_KTHREAD_H
/* Simple interface for creating and stopping kernel threads without mess. */
#include <linux/err.h>
#include <linux/sched.h>

7
__printf(4, 5)
8 9 10
struct task_struct *kthread_create_on_node(int (*threadfn)(void *data),
					   void *data,
					   int node,
11
					   const char namefmt[], ...);
12

13 14 15 16 17 18 19 20 21 22 23
/**
 * kthread_create - create a kthread on the current node
 * @threadfn: the function to run in the thread
 * @data: data pointer for @threadfn()
 * @namefmt: printf-style format string for the thread name
 * @...: arguments for @namefmt.
 *
 * This macro will create a kthread on the current node, leaving it in
 * the stopped state.  This is just a helper for kthread_create_on_node();
 * see the documentation there for more details.
 */
24
#define kthread_create(threadfn, data, namefmt, arg...) \
25
	kthread_create_on_node(threadfn, data, NUMA_NO_NODE, namefmt, ##arg)
26

L
Linus Torvalds 已提交
27

28 29 30 31 32
struct task_struct *kthread_create_on_cpu(int (*threadfn)(void *data),
					  void *data,
					  unsigned int cpu,
					  const char *namefmt);

L
Linus Torvalds 已提交
33
/**
34
 * kthread_run - create and wake a thread.
L
Linus Torvalds 已提交
35 36 37 38 39
 * @threadfn: the function to run until signal_pending(current).
 * @data: data ptr for @threadfn.
 * @namefmt: printf-style name for the thread.
 *
 * Description: Convenient wrapper for kthread_create() followed by
40 41
 * wake_up_process().  Returns the kthread or ERR_PTR(-ENOMEM).
 */
L
Linus Torvalds 已提交
42 43 44 45 46 47 48 49 50
#define kthread_run(threadfn, data, namefmt, ...)			   \
({									   \
	struct task_struct *__k						   \
		= kthread_create(threadfn, data, namefmt, ## __VA_ARGS__); \
	if (!IS_ERR(__k))						   \
		wake_up_process(__k);					   \
	__k;								   \
})

51
void free_kthread_struct(struct task_struct *k);
L
Linus Torvalds 已提交
52
void kthread_bind(struct task_struct *k, unsigned int cpu);
53
void kthread_bind_mask(struct task_struct *k, const struct cpumask *mask);
L
Linus Torvalds 已提交
54
int kthread_stop(struct task_struct *k);
55 56
bool kthread_should_stop(void);
bool kthread_should_park(void);
57
bool kthread_freezable_should_stop(bool *was_frozen);
T
Tejun Heo 已提交
58
void *kthread_data(struct task_struct *k);
59
void *kthread_probe_data(struct task_struct *k);
60 61 62
int kthread_park(struct task_struct *k);
void kthread_unpark(struct task_struct *k);
void kthread_parkme(void);
L
Linus Torvalds 已提交
63

64 65
int kthreadd(void *unused);
extern struct task_struct *kthreadd_task;
66
extern int tsk_fork_get_node(struct task_struct *tsk);
67

T
Tejun Heo 已提交
68 69 70 71
/*
 * Simple work processor based on kthread.
 *
 * This provides easier way to make use of kthreads.  A kthread_work
P
Petr Mladek 已提交
72
 * can be queued and flushed using queue/kthread_flush_work()
T
Tejun Heo 已提交
73 74 75 76 77
 * respectively.  Queued kthread_works are processed by a kthread
 * running kthread_worker_fn().
 */
struct kthread_work;
typedef void (*kthread_work_func_t)(struct kthread_work *work);
78
void kthread_delayed_work_timer_fn(unsigned long __data);
T
Tejun Heo 已提交
79

80 81 82 83
enum {
	KTW_FREEZABLE		= 1 << 0,	/* freeze during suspend */
};

T
Tejun Heo 已提交
84
struct kthread_worker {
85
	unsigned int		flags;
T
Tejun Heo 已提交
86 87
	spinlock_t		lock;
	struct list_head	work_list;
88
	struct list_head	delayed_work_list;
T
Tejun Heo 已提交
89
	struct task_struct	*task;
90
	struct kthread_work	*current_work;
T
Tejun Heo 已提交
91 92 93 94 95
};

struct kthread_work {
	struct list_head	node;
	kthread_work_func_t	func;
96
	struct kthread_worker	*worker;
97 98
	/* Number of canceling calls that are running at the moment. */
	int			canceling;
T
Tejun Heo 已提交
99 100
};

101 102 103 104 105
struct kthread_delayed_work {
	struct kthread_work work;
	struct timer_list timer;
};

T
Tejun Heo 已提交
106
#define KTHREAD_WORKER_INIT(worker)	{				\
107
	.lock = __SPIN_LOCK_UNLOCKED((worker).lock),			\
T
Tejun Heo 已提交
108
	.work_list = LIST_HEAD_INIT((worker).work_list),		\
109
	.delayed_work_list = LIST_HEAD_INIT((worker).delayed_work_list),\
T
Tejun Heo 已提交
110 111 112 113 114 115 116
	}

#define KTHREAD_WORK_INIT(work, fn)	{				\
	.node = LIST_HEAD_INIT((work).node),				\
	.func = (fn),							\
	}

117 118 119 120 121 122 123
#define KTHREAD_DELAYED_WORK_INIT(dwork, fn) {				\
	.work = KTHREAD_WORK_INIT((dwork).work, (fn)),			\
	.timer = __TIMER_INITIALIZER(kthread_delayed_work_timer_fn,	\
				     0, (unsigned long)&(dwork),	\
				     TIMER_IRQSAFE),			\
	}

T
Tejun Heo 已提交
124 125 126 127 128 129
#define DEFINE_KTHREAD_WORKER(worker)					\
	struct kthread_worker worker = KTHREAD_WORKER_INIT(worker)

#define DEFINE_KTHREAD_WORK(work, fn)					\
	struct kthread_work work = KTHREAD_WORK_INIT(work, fn)

130 131 132 133
#define DEFINE_KTHREAD_DELAYED_WORK(dwork, fn)				\
	struct kthread_delayed_work dwork =				\
		KTHREAD_DELAYED_WORK_INIT(dwork, fn)

Y
Yong Zhang 已提交
134
/*
135 136
 * kthread_worker.lock needs its own lockdep class key when defined on
 * stack with lockdep enabled.  Use the following macros in such cases.
Y
Yong Zhang 已提交
137 138 139
 */
#ifdef CONFIG_LOCKDEP
# define KTHREAD_WORKER_INIT_ONSTACK(worker)				\
P
Petr Mladek 已提交
140
	({ kthread_init_worker(&worker); worker; })
Y
Yong Zhang 已提交
141 142 143 144 145 146
# define DEFINE_KTHREAD_WORKER_ONSTACK(worker)				\
	struct kthread_worker worker = KTHREAD_WORKER_INIT_ONSTACK(worker)
#else
# define DEFINE_KTHREAD_WORKER_ONSTACK(worker) DEFINE_KTHREAD_WORKER(worker)
#endif

P
Petr Mladek 已提交
147
extern void __kthread_init_worker(struct kthread_worker *worker,
Y
Yong Zhang 已提交
148 149
			const char *name, struct lock_class_key *key);

P
Petr Mladek 已提交
150
#define kthread_init_worker(worker)					\
Y
Yong Zhang 已提交
151 152
	do {								\
		static struct lock_class_key __key;			\
P
Petr Mladek 已提交
153
		__kthread_init_worker((worker), "("#worker")->lock", &__key); \
Y
Yong Zhang 已提交
154 155
	} while (0)

P
Petr Mladek 已提交
156
#define kthread_init_work(work, fn)					\
Y
Yong Zhang 已提交
157 158 159 160 161
	do {								\
		memset((work), 0, sizeof(struct kthread_work));		\
		INIT_LIST_HEAD(&(work)->node);				\
		(work)->func = (fn);					\
	} while (0)
T
Tejun Heo 已提交
162

163 164 165 166 167 168 169 170 171
#define kthread_init_delayed_work(dwork, fn)				\
	do {								\
		kthread_init_work(&(dwork)->work, (fn));		\
		__setup_timer(&(dwork)->timer,				\
			      kthread_delayed_work_timer_fn,		\
			      (unsigned long)(dwork),			\
			      TIMER_IRQSAFE);				\
	} while (0)

T
Tejun Heo 已提交
172 173
int kthread_worker_fn(void *worker_ptr);

174
__printf(2, 3)
175
struct kthread_worker *
176
kthread_create_worker(unsigned int flags, const char namefmt[], ...);
177 178

struct kthread_worker *
179 180
kthread_create_worker_on_cpu(int cpu, unsigned int flags,
			     const char namefmt[], ...);
181

P
Petr Mladek 已提交
182
bool kthread_queue_work(struct kthread_worker *worker,
T
Tejun Heo 已提交
183
			struct kthread_work *work);
184 185 186 187 188

bool kthread_queue_delayed_work(struct kthread_worker *worker,
				struct kthread_delayed_work *dwork,
				unsigned long delay);

189 190 191 192
bool kthread_mod_delayed_work(struct kthread_worker *worker,
			      struct kthread_delayed_work *dwork,
			      unsigned long delay);

P
Petr Mladek 已提交
193 194
void kthread_flush_work(struct kthread_work *work);
void kthread_flush_worker(struct kthread_worker *worker);
T
Tejun Heo 已提交
195

196 197 198
bool kthread_cancel_work_sync(struct kthread_work *work);
bool kthread_cancel_delayed_work_sync(struct kthread_delayed_work *work);

199 200
void kthread_destroy_worker(struct kthread_worker *worker);

L
Linus Torvalds 已提交
201
#endif /* _LINUX_KTHREAD_H */