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 51
#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;								   \
})

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

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

T
Tejun Heo 已提交
67 68 69 70
/*
 * Simple work processor based on kthread.
 *
 * This provides easier way to make use of kthreads.  A kthread_work
P
Petr Mladek 已提交
71
 * can be queued and flushed using queue/kthread_flush_work()
T
Tejun Heo 已提交
72 73 74 75 76
 * 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);
77
void kthread_delayed_work_timer_fn(unsigned long __data);
T
Tejun Heo 已提交
78

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

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

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

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

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

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

116 117 118 119 120 121 122
#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 已提交
123 124 125 126 127 128
#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)

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

Y
Yong Zhang 已提交
133
/*
134 135
 * 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 已提交
136 137 138
 */
#ifdef CONFIG_LOCKDEP
# define KTHREAD_WORKER_INIT_ONSTACK(worker)				\
P
Petr Mladek 已提交
139
	({ kthread_init_worker(&worker); worker; })
Y
Yong Zhang 已提交
140 141 142 143 144 145
# 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 已提交
146
extern void __kthread_init_worker(struct kthread_worker *worker,
Y
Yong Zhang 已提交
147 148
			const char *name, struct lock_class_key *key);

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

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

162 163 164 165 166 167 168 169 170
#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 已提交
171 172
int kthread_worker_fn(void *worker_ptr);

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

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

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

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

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

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

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

198 199
void kthread_destroy_worker(struct kthread_worker *worker);

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