blob: 25cee1afe6fb9cf64e26bd79b90045ce2d503cae [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/workqueue.c
3 *
4 * Generic mechanism for defining kernel helper threads for running
5 * arbitrary tasks in process context.
6 *
7 * Started by Ingo Molnar, Copyright (C) 2002
8 *
9 * Derived from the taskqueue/keventd code by:
10 *
11 * David Woodhouse <dwmw2@infradead.org>
12 * Andrew Morton <andrewm@uow.edu.au>
13 * Kai Petzke <wpp@marie.physik.tu-berlin.de>
14 * Theodore Ts'o <tytso@mit.edu>
Christoph Lameter89ada672005-10-30 15:01:59 -080015 *
16 * Made to use alloc_percpu by Christoph Lameter <clameter@sgi.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18
19#include <linux/module.h>
20#include <linux/kernel.h>
21#include <linux/sched.h>
22#include <linux/init.h>
23#include <linux/signal.h>
24#include <linux/completion.h>
25#include <linux/workqueue.h>
26#include <linux/slab.h>
27#include <linux/cpu.h>
28#include <linux/notifier.h>
29#include <linux/kthread.h>
James Bottomley1fa44ec2006-02-23 12:43:43 -060030#include <linux/hardirq.h>
Christoph Lameter46934022006-10-11 01:21:26 -070031#include <linux/mempolicy.h>
Rafael J. Wysocki341a5952006-12-06 20:34:49 -080032#include <linux/freezer.h>
Peter Zijlstrad5abe662006-12-06 20:37:26 -080033#include <linux/kallsyms.h>
34#include <linux/debug_locks.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36/*
Nathan Lynchf756d5e2006-01-08 01:05:12 -080037 * The per-CPU workqueue (if single thread, we always use the first
38 * possible cpu).
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 */
40struct cpu_workqueue_struct {
41
42 spinlock_t lock;
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 struct list_head worklist;
45 wait_queue_head_t more_work;
Oleg Nesterov3af244332007-05-09 02:34:09 -070046 struct work_struct *current_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48 struct workqueue_struct *wq;
Ingo Molnar36c8b582006-07-03 00:25:41 -070049 struct task_struct *thread;
Oleg Nesterov3af244332007-05-09 02:34:09 -070050 int should_stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52 int run_depth; /* Detect run_workqueue() recursion depth */
53} ____cacheline_aligned;
54
55/*
56 * The externally visible workqueue abstraction is an array of
57 * per-CPU workqueues:
58 */
59struct workqueue_struct {
Christoph Lameter89ada672005-10-30 15:01:59 -080060 struct cpu_workqueue_struct *cpu_wq;
Oleg Nesterovcce1a162007-05-09 02:34:13 -070061 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 const char *name;
Oleg Nesterovcce1a162007-05-09 02:34:13 -070063 int singlethread;
Oleg Nesterov319c2a92007-05-09 02:34:06 -070064 int freezeable; /* Freeze threads during suspend */
Linus Torvalds1da177e2005-04-16 15:20:36 -070065};
66
67/* All the per-cpu workqueues on the system, for hotplug cpu to add/remove
68 threads to each one as cpus come/go. */
Andrew Morton9b41ea72006-08-13 23:24:26 -070069static DEFINE_MUTEX(workqueue_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070static LIST_HEAD(workqueues);
71
Oleg Nesterov3af244332007-05-09 02:34:09 -070072static int singlethread_cpu __read_mostly;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -070073static cpumask_t cpu_singlethread_map __read_mostly;
Oleg Nesterov3af244332007-05-09 02:34:09 -070074/* optimization, we could use cpu_possible_map */
75static cpumask_t cpu_populated_map __read_mostly;
Nathan Lynchf756d5e2006-01-08 01:05:12 -080076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/* If it's single threaded, it isn't in the list of workqueues. */
78static inline int is_single_threaded(struct workqueue_struct *wq)
79{
Oleg Nesterovcce1a162007-05-09 02:34:13 -070080 return wq->singlethread;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -070083static const cpumask_t *wq_cpu_map(struct workqueue_struct *wq)
84{
85 return is_single_threaded(wq)
86 ? &cpu_singlethread_map : &cpu_populated_map;
87}
88
Oleg Nesterova848e3b2007-05-09 02:34:17 -070089static
90struct cpu_workqueue_struct *wq_per_cpu(struct workqueue_struct *wq, int cpu)
91{
92 if (unlikely(is_single_threaded(wq)))
93 cpu = singlethread_cpu;
94 return per_cpu_ptr(wq->cpu_wq, cpu);
95}
96
David Howells4594bf12006-12-07 11:33:26 +000097/*
98 * Set the workqueue on which a work item is to be run
99 * - Must *only* be called if the pending flag is set
100 */
Oleg Nesteroved7c0fe2007-05-09 02:34:16 -0700101static inline void set_wq_data(struct work_struct *work,
102 struct cpu_workqueue_struct *cwq)
David Howells365970a2006-11-22 14:54:49 +0000103{
David Howells4594bf12006-12-07 11:33:26 +0000104 unsigned long new;
David Howells365970a2006-11-22 14:54:49 +0000105
David Howells4594bf12006-12-07 11:33:26 +0000106 BUG_ON(!work_pending(work));
107
Oleg Nesteroved7c0fe2007-05-09 02:34:16 -0700108 new = (unsigned long) cwq | (1UL << WORK_STRUCT_PENDING);
Linus Torvaldsa08727b2006-12-16 09:53:50 -0800109 new |= WORK_STRUCT_FLAG_MASK & *work_data_bits(work);
110 atomic_long_set(&work->data, new);
David Howells365970a2006-11-22 14:54:49 +0000111}
112
Oleg Nesteroved7c0fe2007-05-09 02:34:16 -0700113static inline
114struct cpu_workqueue_struct *get_wq_data(struct work_struct *work)
David Howells365970a2006-11-22 14:54:49 +0000115{
Linus Torvaldsa08727b2006-12-16 09:53:50 -0800116 return (void *) (atomic_long_read(&work->data) & WORK_STRUCT_WQ_DATA_MASK);
David Howells365970a2006-11-22 14:54:49 +0000117}
118
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700119static void insert_work(struct cpu_workqueue_struct *cwq,
120 struct work_struct *work, int tail)
121{
122 set_wq_data(work, cwq);
123 if (tail)
124 list_add_tail(&work->entry, &cwq->worklist);
125 else
126 list_add(&work->entry, &cwq->worklist);
127 wake_up(&cwq->more_work);
128}
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/* Preempt must be disabled. */
131static void __queue_work(struct cpu_workqueue_struct *cwq,
132 struct work_struct *work)
133{
134 unsigned long flags;
135
136 spin_lock_irqsave(&cwq->lock, flags);
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700137 insert_work(cwq, work, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 spin_unlock_irqrestore(&cwq->lock, flags);
139}
140
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -0700141/**
142 * queue_work - queue work on a workqueue
143 * @wq: workqueue to use
144 * @work: work to queue
145 *
Alan Stern057647f2006-10-28 10:38:58 -0700146 * Returns 0 if @work was already on a queue, non-zero otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 *
148 * We queue the work to the CPU it was submitted, but there is no
149 * guarantee that it will be processed by that CPU.
150 */
151int fastcall queue_work(struct workqueue_struct *wq, struct work_struct *work)
152{
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700153 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Linus Torvaldsa08727b2006-12-16 09:53:50 -0800155 if (!test_and_set_bit(WORK_STRUCT_PENDING, work_data_bits(work))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 BUG_ON(!list_empty(&work->entry));
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700157 __queue_work(wq_per_cpu(wq, get_cpu()), work);
158 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 ret = 1;
160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return ret;
162}
Dave Jonesae90dd52006-06-30 01:40:45 -0400163EXPORT_SYMBOL_GPL(queue_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800165void delayed_work_timer_fn(unsigned long __data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
David Howells52bad642006-11-22 14:54:01 +0000167 struct delayed_work *dwork = (struct delayed_work *)__data;
Oleg Nesteroved7c0fe2007-05-09 02:34:16 -0700168 struct cpu_workqueue_struct *cwq = get_wq_data(&dwork->work);
169 struct workqueue_struct *wq = cwq->wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700171 __queue_work(wq_per_cpu(wq, smp_processor_id()), &dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -0700174/**
175 * queue_delayed_work - queue work on a workqueue after delay
176 * @wq: workqueue to use
Randy Dunlapaf9997e2006-12-22 01:06:52 -0800177 * @dwork: delayable work to queue
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -0700178 * @delay: number of jiffies to wait before queueing
179 *
Alan Stern057647f2006-10-28 10:38:58 -0700180 * Returns 0 if @work was already on a queue, non-zero otherwise.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -0700181 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182int fastcall queue_delayed_work(struct workqueue_struct *wq,
David Howells52bad642006-11-22 14:54:01 +0000183 struct delayed_work *dwork, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Oleg Nesterov63bc0362007-05-09 02:34:16 -0700185 timer_stats_timer_set_start_info(&dwork->timer);
David Howells52bad642006-11-22 14:54:01 +0000186 if (delay == 0)
Oleg Nesterov63bc0362007-05-09 02:34:16 -0700187 return queue_work(wq, &dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Oleg Nesterov63bc0362007-05-09 02:34:16 -0700189 return queue_delayed_work_on(-1, wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
Dave Jonesae90dd52006-06-30 01:40:45 -0400191EXPORT_SYMBOL_GPL(queue_delayed_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -0700193/**
194 * queue_delayed_work_on - queue work on specific CPU after delay
195 * @cpu: CPU number to execute work on
196 * @wq: workqueue to use
Randy Dunlapaf9997e2006-12-22 01:06:52 -0800197 * @dwork: work to queue
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -0700198 * @delay: number of jiffies to wait before queueing
199 *
Alan Stern057647f2006-10-28 10:38:58 -0700200 * Returns 0 if @work was already on a queue, non-zero otherwise.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -0700201 */
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -0700202int queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
David Howells52bad642006-11-22 14:54:01 +0000203 struct delayed_work *dwork, unsigned long delay)
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -0700204{
205 int ret = 0;
David Howells52bad642006-11-22 14:54:01 +0000206 struct timer_list *timer = &dwork->timer;
207 struct work_struct *work = &dwork->work;
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -0700208
Linus Torvaldsa08727b2006-12-16 09:53:50 -0800209 if (!test_and_set_bit(WORK_STRUCT_PENDING, work_data_bits(work))) {
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -0700210 BUG_ON(timer_pending(timer));
211 BUG_ON(!list_empty(&work->entry));
212
Oleg Nesteroved7c0fe2007-05-09 02:34:16 -0700213 /* This stores cwq for the moment, for the timer_fn */
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700214 set_wq_data(work, wq_per_cpu(wq, raw_smp_processor_id()));
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -0700215 timer->expires = jiffies + delay;
David Howells52bad642006-11-22 14:54:01 +0000216 timer->data = (unsigned long)dwork;
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -0700217 timer->function = delayed_work_timer_fn;
Oleg Nesterov63bc0362007-05-09 02:34:16 -0700218
219 if (unlikely(cpu >= 0))
220 add_timer_on(timer, cpu);
221 else
222 add_timer(timer);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -0700223 ret = 1;
224 }
225 return ret;
226}
Dave Jonesae90dd52006-06-30 01:40:45 -0400227EXPORT_SYMBOL_GPL(queue_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Arjan van de Ven858119e2006-01-14 13:20:43 -0800229static void run_workqueue(struct cpu_workqueue_struct *cwq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Oleg Nesterovf293ea92007-05-09 02:34:10 -0700231 spin_lock_irq(&cwq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 cwq->run_depth++;
233 if (cwq->run_depth > 3) {
234 /* morton gets to eat his hat */
235 printk("%s: recursion depth exceeded: %d\n",
236 __FUNCTION__, cwq->run_depth);
237 dump_stack();
238 }
239 while (!list_empty(&cwq->worklist)) {
240 struct work_struct *work = list_entry(cwq->worklist.next,
241 struct work_struct, entry);
David Howells6bb49e52006-11-22 14:54:45 +0000242 work_func_t f = work->func;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700244 cwq->current_work = work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 list_del_init(cwq->worklist.next);
Oleg Nesterovf293ea92007-05-09 02:34:10 -0700246 spin_unlock_irq(&cwq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
David Howells365970a2006-11-22 14:54:49 +0000248 BUG_ON(get_wq_data(work) != cwq);
Oleg Nesterov23b2e592007-05-09 02:34:19 -0700249 work_clear_pending(work);
David Howells65f27f32006-11-22 14:55:48 +0000250 f(work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Peter Zijlstrad5abe662006-12-06 20:37:26 -0800252 if (unlikely(in_atomic() || lockdep_depth(current) > 0)) {
253 printk(KERN_ERR "BUG: workqueue leaked lock or atomic: "
254 "%s/0x%08x/%d\n",
255 current->comm, preempt_count(),
256 current->pid);
257 printk(KERN_ERR " last function: ");
258 print_symbol("%s\n", (unsigned long)f);
259 debug_show_held_locks(current);
260 dump_stack();
261 }
262
Oleg Nesterovf293ea92007-05-09 02:34:10 -0700263 spin_lock_irq(&cwq->lock);
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700264 cwq->current_work = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
266 cwq->run_depth--;
Oleg Nesterovf293ea92007-05-09 02:34:10 -0700267 spin_unlock_irq(&cwq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
Oleg Nesterov3af244332007-05-09 02:34:09 -0700270/*
271 * NOTE: the caller must not touch *cwq if this func returns true
272 */
273static int cwq_should_stop(struct cpu_workqueue_struct *cwq)
274{
275 int should_stop = cwq->should_stop;
276
277 if (unlikely(should_stop)) {
278 spin_lock_irq(&cwq->lock);
279 should_stop = cwq->should_stop && list_empty(&cwq->worklist);
280 if (should_stop)
281 cwq->thread = NULL;
282 spin_unlock_irq(&cwq->lock);
283 }
284
285 return should_stop;
286}
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288static int worker_thread(void *__cwq)
289{
290 struct cpu_workqueue_struct *cwq = __cwq;
Oleg Nesterov3af244332007-05-09 02:34:09 -0700291 DEFINE_WAIT(wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Oleg Nesterov319c2a92007-05-09 02:34:06 -0700293 if (!cwq->wq->freezeable)
Rafael J. Wysocki341a5952006-12-06 20:34:49 -0800294 current->flags |= PF_NOFREEZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 set_user_nice(current, -5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Oleg Nesterov3af244332007-05-09 02:34:09 -0700298 for (;;) {
Oleg Nesterov3af244332007-05-09 02:34:09 -0700299 prepare_to_wait(&cwq->more_work, &wait, TASK_INTERRUPTIBLE);
Oleg Nesterov85f41862007-05-09 02:34:20 -0700300 if (!freezing(current) && !cwq->should_stop
301 && list_empty(&cwq->worklist))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 schedule();
Oleg Nesterov3af244332007-05-09 02:34:09 -0700303 finish_wait(&cwq->more_work, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Oleg Nesterov85f41862007-05-09 02:34:20 -0700305 try_to_freeze();
306
Oleg Nesterov3af244332007-05-09 02:34:09 -0700307 if (cwq_should_stop(cwq))
308 break;
309
310 run_workqueue(cwq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
Oleg Nesterov3af244332007-05-09 02:34:09 -0700312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return 0;
314}
315
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -0700316struct wq_barrier {
317 struct work_struct work;
318 struct completion done;
319};
320
321static void wq_barrier_func(struct work_struct *work)
322{
323 struct wq_barrier *barr = container_of(work, struct wq_barrier, work);
324 complete(&barr->done);
325}
326
Oleg Nesterov83c22522007-05-09 02:33:54 -0700327static void insert_wq_barrier(struct cpu_workqueue_struct *cwq,
328 struct wq_barrier *barr, int tail)
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -0700329{
330 INIT_WORK(&barr->work, wq_barrier_func);
331 __set_bit(WORK_STRUCT_PENDING, work_data_bits(&barr->work));
332
333 init_completion(&barr->done);
Oleg Nesterov83c22522007-05-09 02:33:54 -0700334
335 insert_work(cwq, &barr->work, tail);
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -0700336}
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338static void flush_cpu_workqueue(struct cpu_workqueue_struct *cwq)
339{
340 if (cwq->thread == current) {
341 /*
342 * Probably keventd trying to flush its own queue. So simply run
343 * it by hand rather than deadlocking.
344 */
345 run_workqueue(cwq);
346 } else {
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -0700347 struct wq_barrier barr;
Oleg Nesterov83c22522007-05-09 02:33:54 -0700348 int active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Oleg Nesterov83c22522007-05-09 02:33:54 -0700350 spin_lock_irq(&cwq->lock);
351 if (!list_empty(&cwq->worklist) || cwq->current_work != NULL) {
352 insert_wq_barrier(cwq, &barr, 1);
353 active = 1;
354 }
355 spin_unlock_irq(&cwq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Oleg Nesterovd7213042007-05-09 02:34:07 -0700357 if (active)
Oleg Nesterov83c22522007-05-09 02:33:54 -0700358 wait_for_completion(&barr.done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
360}
361
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -0700362/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 * flush_workqueue - ensure that any scheduled work has run to completion.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -0700364 * @wq: workqueue to flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 *
366 * Forces execution of the workqueue and blocks until its completion.
367 * This is typically used in driver shutdown handlers.
368 *
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -0700369 * We sleep until all works which were queued on entry have been handled,
370 * but we are not livelocked by new incoming ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 *
372 * This function used to run the workqueues itself. Now we just wait for the
373 * helper threads to do it.
374 */
375void fastcall flush_workqueue(struct workqueue_struct *wq)
376{
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700377 const cpumask_t *cpu_map = wq_cpu_map(wq);
Oleg Nesterovcce1a162007-05-09 02:34:13 -0700378 int cpu;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700379
Oleg Nesterovf293ea92007-05-09 02:34:10 -0700380 might_sleep();
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700381 for_each_cpu_mask(cpu, *cpu_map)
382 flush_cpu_workqueue(per_cpu_ptr(wq->cpu_wq, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
Dave Jonesae90dd52006-06-30 01:40:45 -0400384EXPORT_SYMBOL_GPL(flush_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700386static void wait_on_work(struct cpu_workqueue_struct *cwq,
387 struct work_struct *work)
388{
389 struct wq_barrier barr;
390 int running = 0;
391
392 spin_lock_irq(&cwq->lock);
393 if (unlikely(cwq->current_work == work)) {
Oleg Nesterov83c22522007-05-09 02:33:54 -0700394 insert_wq_barrier(cwq, &barr, 0);
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700395 running = 1;
396 }
397 spin_unlock_irq(&cwq->lock);
398
Oleg Nesterov3af244332007-05-09 02:34:09 -0700399 if (unlikely(running))
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700400 wait_for_completion(&barr.done);
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700401}
402
403/**
Oleg Nesterov28e53bd2007-05-09 02:34:22 -0700404 * cancel_work_sync - block until a work_struct's callback has terminated
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700405 * @work: the work which is to be flushed
406 *
Oleg Nesterov28e53bd2007-05-09 02:34:22 -0700407 * cancel_work_sync() will attempt to cancel the work if it is queued. If the
408 * work's callback appears to be running, cancel_work_sync() will block until
409 * it has completed.
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700410 *
Oleg Nesterov28e53bd2007-05-09 02:34:22 -0700411 * cancel_work_sync() is designed to be used when the caller is tearing down
412 * data structures which the callback function operates upon. It is expected
413 * that, prior to calling cancel_work_sync(), the caller has arranged for the
414 * work to not be requeued.
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700415 */
Oleg Nesterov28e53bd2007-05-09 02:34:22 -0700416void cancel_work_sync(struct work_struct *work)
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700417{
418 struct cpu_workqueue_struct *cwq;
Oleg Nesterov28e53bd2007-05-09 02:34:22 -0700419 struct workqueue_struct *wq;
420 const cpumask_t *cpu_map;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700421 int cpu;
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700422
Oleg Nesterovf293ea92007-05-09 02:34:10 -0700423 might_sleep();
424
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700425 cwq = get_wq_data(work);
426 /* Was it ever queued ? */
427 if (!cwq)
Oleg Nesterov3af244332007-05-09 02:34:09 -0700428 return;
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700429
430 /*
Oleg Nesterov3af244332007-05-09 02:34:09 -0700431 * This work can't be re-queued, no need to re-check that
432 * get_wq_data() is still the same when we take cwq->lock.
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700433 */
434 spin_lock_irq(&cwq->lock);
435 list_del_init(&work->entry);
Oleg Nesterov23b2e592007-05-09 02:34:19 -0700436 work_clear_pending(work);
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700437 spin_unlock_irq(&cwq->lock);
438
Oleg Nesterov28e53bd2007-05-09 02:34:22 -0700439 wq = cwq->wq;
440 cpu_map = wq_cpu_map(wq);
441
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700442 for_each_cpu_mask(cpu, *cpu_map)
443 wait_on_work(per_cpu_ptr(wq->cpu_wq, cpu), work);
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700444}
Oleg Nesterov28e53bd2007-05-09 02:34:22 -0700445EXPORT_SYMBOL_GPL(cancel_work_sync);
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448static struct workqueue_struct *keventd_wq;
449
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -0700450/**
451 * schedule_work - put work task in global workqueue
452 * @work: job to be done
453 *
454 * This puts a job in the kernel-global workqueue.
455 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456int fastcall schedule_work(struct work_struct *work)
457{
458 return queue_work(keventd_wq, work);
459}
Dave Jonesae90dd52006-06-30 01:40:45 -0400460EXPORT_SYMBOL(schedule_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -0700462/**
463 * schedule_delayed_work - put work task in global workqueue after delay
David Howells52bad642006-11-22 14:54:01 +0000464 * @dwork: job to be done
465 * @delay: number of jiffies to wait or 0 for immediate execution
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -0700466 *
467 * After waiting for a given time this puts a job in the kernel-global
468 * workqueue.
469 */
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800470int fastcall schedule_delayed_work(struct delayed_work *dwork,
471 unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800473 timer_stats_timer_set_start_info(&dwork->timer);
David Howells52bad642006-11-22 14:54:01 +0000474 return queue_delayed_work(keventd_wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
Dave Jonesae90dd52006-06-30 01:40:45 -0400476EXPORT_SYMBOL(schedule_delayed_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -0700478/**
479 * schedule_delayed_work_on - queue work in global workqueue on CPU after delay
480 * @cpu: cpu to use
David Howells52bad642006-11-22 14:54:01 +0000481 * @dwork: job to be done
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -0700482 * @delay: number of jiffies to wait
483 *
484 * After waiting for a given time this puts a job in the kernel-global
485 * workqueue on the specified CPU.
486 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487int schedule_delayed_work_on(int cpu,
David Howells52bad642006-11-22 14:54:01 +0000488 struct delayed_work *dwork, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
David Howells52bad642006-11-22 14:54:01 +0000490 return queue_delayed_work_on(cpu, keventd_wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491}
Dave Jonesae90dd52006-06-30 01:40:45 -0400492EXPORT_SYMBOL(schedule_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Andrew Mortonb6136772006-06-25 05:47:49 -0700494/**
495 * schedule_on_each_cpu - call a function on each online CPU from keventd
496 * @func: the function to call
Andrew Mortonb6136772006-06-25 05:47:49 -0700497 *
498 * Returns zero on success.
499 * Returns -ve errno on failure.
500 *
501 * Appears to be racy against CPU hotplug.
502 *
503 * schedule_on_each_cpu() is very slow.
504 */
David Howells65f27f32006-11-22 14:55:48 +0000505int schedule_on_each_cpu(work_func_t func)
Christoph Lameter15316ba2006-01-08 01:00:43 -0800506{
507 int cpu;
Andrew Mortonb6136772006-06-25 05:47:49 -0700508 struct work_struct *works;
Christoph Lameter15316ba2006-01-08 01:00:43 -0800509
Andrew Mortonb6136772006-06-25 05:47:49 -0700510 works = alloc_percpu(struct work_struct);
511 if (!works)
Christoph Lameter15316ba2006-01-08 01:00:43 -0800512 return -ENOMEM;
Andrew Mortonb6136772006-06-25 05:47:49 -0700513
Andrew Mortone18f3ff2007-05-09 02:33:50 -0700514 preempt_disable(); /* CPU hotplug */
Christoph Lameter15316ba2006-01-08 01:00:43 -0800515 for_each_online_cpu(cpu) {
Ingo Molnar9bfb1832006-12-18 20:05:09 +0100516 struct work_struct *work = per_cpu_ptr(works, cpu);
517
518 INIT_WORK(work, func);
519 set_bit(WORK_STRUCT_PENDING, work_data_bits(work));
520 __queue_work(per_cpu_ptr(keventd_wq->cpu_wq, cpu), work);
Christoph Lameter15316ba2006-01-08 01:00:43 -0800521 }
Andrew Mortone18f3ff2007-05-09 02:33:50 -0700522 preempt_enable();
Christoph Lameter15316ba2006-01-08 01:00:43 -0800523 flush_workqueue(keventd_wq);
Andrew Mortonb6136772006-06-25 05:47:49 -0700524 free_percpu(works);
Christoph Lameter15316ba2006-01-08 01:00:43 -0800525 return 0;
526}
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528void flush_scheduled_work(void)
529{
530 flush_workqueue(keventd_wq);
531}
Dave Jonesae90dd52006-06-30 01:40:45 -0400532EXPORT_SYMBOL(flush_scheduled_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534/**
Oleg Nesterov1634c482007-05-09 02:34:18 -0700535 * cancel_rearming_delayed_work - kill off a delayed work whose handler rearms the delayed work.
David Howells52bad642006-11-22 14:54:01 +0000536 * @dwork: the delayed work struct
Oleg Nesteroved7c0fe2007-05-09 02:34:16 -0700537 *
538 * Note that the work callback function may still be running on return from
Oleg Nesterov28e53bd2007-05-09 02:34:22 -0700539 * cancel_delayed_work(). Run flush_workqueue() or cancel_work_sync() to wait
540 * on it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 */
David Howells52bad642006-11-22 14:54:01 +0000542void cancel_rearming_delayed_work(struct delayed_work *dwork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
Oleg Nesterov1634c482007-05-09 02:34:18 -0700544 struct cpu_workqueue_struct *cwq = get_wq_data(&dwork->work);
545
546 /* Was it ever queued ? */
547 if (cwq != NULL) {
548 struct workqueue_struct *wq = cwq->wq;
549
550 while (!cancel_delayed_work(dwork))
551 flush_workqueue(wq);
552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554EXPORT_SYMBOL(cancel_rearming_delayed_work);
555
James Bottomley1fa44ec2006-02-23 12:43:43 -0600556/**
557 * execute_in_process_context - reliably execute the routine with user context
558 * @fn: the function to execute
James Bottomley1fa44ec2006-02-23 12:43:43 -0600559 * @ew: guaranteed storage for the execute work structure (must
560 * be available when the work executes)
561 *
562 * Executes the function immediately if process context is available,
563 * otherwise schedules the function for delayed execution.
564 *
565 * Returns: 0 - function was executed
566 * 1 - function was scheduled for execution
567 */
David Howells65f27f32006-11-22 14:55:48 +0000568int execute_in_process_context(work_func_t fn, struct execute_work *ew)
James Bottomley1fa44ec2006-02-23 12:43:43 -0600569{
570 if (!in_interrupt()) {
David Howells65f27f32006-11-22 14:55:48 +0000571 fn(&ew->work);
James Bottomley1fa44ec2006-02-23 12:43:43 -0600572 return 0;
573 }
574
David Howells65f27f32006-11-22 14:55:48 +0000575 INIT_WORK(&ew->work, fn);
James Bottomley1fa44ec2006-02-23 12:43:43 -0600576 schedule_work(&ew->work);
577
578 return 1;
579}
580EXPORT_SYMBOL_GPL(execute_in_process_context);
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582int keventd_up(void)
583{
584 return keventd_wq != NULL;
585}
586
587int current_is_keventd(void)
588{
589 struct cpu_workqueue_struct *cwq;
590 int cpu = smp_processor_id(); /* preempt-safe: keventd is per-cpu */
591 int ret = 0;
592
593 BUG_ON(!keventd_wq);
594
Christoph Lameter89ada672005-10-30 15:01:59 -0800595 cwq = per_cpu_ptr(keventd_wq->cpu_wq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 if (current == cwq->thread)
597 ret = 1;
598
599 return ret;
600
601}
602
Oleg Nesterov3af244332007-05-09 02:34:09 -0700603static struct cpu_workqueue_struct *
604init_cpu_workqueue(struct workqueue_struct *wq, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
Christoph Lameter89ada672005-10-30 15:01:59 -0800606 struct cpu_workqueue_struct *cwq = per_cpu_ptr(wq->cpu_wq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Oleg Nesterov3af244332007-05-09 02:34:09 -0700608 cwq->wq = wq;
609 spin_lock_init(&cwq->lock);
610 INIT_LIST_HEAD(&cwq->worklist);
611 init_waitqueue_head(&cwq->more_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Oleg Nesterov3af244332007-05-09 02:34:09 -0700613 return cwq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
Oleg Nesterov3af244332007-05-09 02:34:09 -0700616static int create_workqueue_thread(struct cpu_workqueue_struct *cwq, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
Oleg Nesterov3af244332007-05-09 02:34:09 -0700618 struct workqueue_struct *wq = cwq->wq;
619 const char *fmt = is_single_threaded(wq) ? "%s" : "%s/%d";
620 struct task_struct *p;
621
622 p = kthread_create(worker_thread, cwq, fmt, wq->name, cpu);
623 /*
624 * Nobody can add the work_struct to this cwq,
625 * if (caller is __create_workqueue)
626 * nobody should see this wq
627 * else // caller is CPU_UP_PREPARE
628 * cpu is not on cpu_online_map
629 * so we can abort safely.
630 */
631 if (IS_ERR(p))
632 return PTR_ERR(p);
633
634 cwq->thread = p;
635 cwq->should_stop = 0;
Oleg Nesterov3af244332007-05-09 02:34:09 -0700636
637 return 0;
638}
639
Oleg Nesterov06ba38a2007-05-09 02:34:15 -0700640static void start_workqueue_thread(struct cpu_workqueue_struct *cwq, int cpu)
641{
642 struct task_struct *p = cwq->thread;
643
644 if (p != NULL) {
645 if (cpu >= 0)
646 kthread_bind(p, cpu);
647 wake_up_process(p);
648 }
649}
650
Oleg Nesterov3af244332007-05-09 02:34:09 -0700651struct workqueue_struct *__create_workqueue(const char *name,
652 int singlethread, int freezeable)
653{
654 struct workqueue_struct *wq;
655 struct cpu_workqueue_struct *cwq;
656 int err = 0, cpu;
657
658 wq = kzalloc(sizeof(*wq), GFP_KERNEL);
659 if (!wq)
660 return NULL;
661
662 wq->cpu_wq = alloc_percpu(struct cpu_workqueue_struct);
663 if (!wq->cpu_wq) {
664 kfree(wq);
665 return NULL;
666 }
667
668 wq->name = name;
Oleg Nesterovcce1a162007-05-09 02:34:13 -0700669 wq->singlethread = singlethread;
Oleg Nesterov3af244332007-05-09 02:34:09 -0700670 wq->freezeable = freezeable;
Oleg Nesterovcce1a162007-05-09 02:34:13 -0700671 INIT_LIST_HEAD(&wq->list);
Oleg Nesterov3af244332007-05-09 02:34:09 -0700672
673 if (singlethread) {
Oleg Nesterov3af244332007-05-09 02:34:09 -0700674 cwq = init_cpu_workqueue(wq, singlethread_cpu);
675 err = create_workqueue_thread(cwq, singlethread_cpu);
Oleg Nesterov06ba38a2007-05-09 02:34:15 -0700676 start_workqueue_thread(cwq, -1);
Oleg Nesterov3af244332007-05-09 02:34:09 -0700677 } else {
678 mutex_lock(&workqueue_mutex);
679 list_add(&wq->list, &workqueues);
680
681 for_each_possible_cpu(cpu) {
682 cwq = init_cpu_workqueue(wq, cpu);
683 if (err || !cpu_online(cpu))
684 continue;
685 err = create_workqueue_thread(cwq, cpu);
Oleg Nesterov06ba38a2007-05-09 02:34:15 -0700686 start_workqueue_thread(cwq, cpu);
Oleg Nesterov3af244332007-05-09 02:34:09 -0700687 }
688 mutex_unlock(&workqueue_mutex);
689 }
690
691 if (err) {
692 destroy_workqueue(wq);
693 wq = NULL;
694 }
695 return wq;
696}
697EXPORT_SYMBOL_GPL(__create_workqueue);
698
699static void cleanup_workqueue_thread(struct cpu_workqueue_struct *cwq, int cpu)
700{
701 struct wq_barrier barr;
702 int alive = 0;
703
704 spin_lock_irq(&cwq->lock);
705 if (cwq->thread != NULL) {
706 insert_wq_barrier(cwq, &barr, 1);
707 cwq->should_stop = 1;
708 alive = 1;
709 }
710 spin_unlock_irq(&cwq->lock);
711
712 if (alive) {
713 wait_for_completion(&barr.done);
714
715 while (unlikely(cwq->thread != NULL))
716 cpu_relax();
717 /*
718 * Wait until cwq->thread unlocks cwq->lock,
719 * it won't touch *cwq after that.
720 */
721 smp_rmb();
722 spin_unlock_wait(&cwq->lock);
723 }
724}
725
726/**
727 * destroy_workqueue - safely terminate a workqueue
728 * @wq: target workqueue
729 *
730 * Safely destroy a workqueue. All work currently pending will be done first.
731 */
732void destroy_workqueue(struct workqueue_struct *wq)
733{
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700734 const cpumask_t *cpu_map = wq_cpu_map(wq);
Oleg Nesterov3af244332007-05-09 02:34:09 -0700735 struct cpu_workqueue_struct *cwq;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700736 int cpu;
Oleg Nesterov3af244332007-05-09 02:34:09 -0700737
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700738 mutex_lock(&workqueue_mutex);
739 list_del(&wq->list);
740 mutex_unlock(&workqueue_mutex);
Oleg Nesterov3af244332007-05-09 02:34:09 -0700741
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700742 for_each_cpu_mask(cpu, *cpu_map) {
743 cwq = per_cpu_ptr(wq->cpu_wq, cpu);
744 cleanup_workqueue_thread(cwq, cpu);
Oleg Nesterov3af244332007-05-09 02:34:09 -0700745 }
746
747 free_percpu(wq->cpu_wq);
748 kfree(wq);
749}
750EXPORT_SYMBOL_GPL(destroy_workqueue);
751
752static int __devinit workqueue_cpu_callback(struct notifier_block *nfb,
753 unsigned long action,
754 void *hcpu)
755{
756 unsigned int cpu = (unsigned long)hcpu;
757 struct cpu_workqueue_struct *cwq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 struct workqueue_struct *wq;
759
760 switch (action) {
Oleg Nesterov3af244332007-05-09 02:34:09 -0700761 case CPU_LOCK_ACQUIRE:
762 mutex_lock(&workqueue_mutex);
763 return NOTIFY_OK;
764
765 case CPU_LOCK_RELEASE:
766 mutex_unlock(&workqueue_mutex);
767 return NOTIFY_OK;
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 case CPU_UP_PREPARE:
Oleg Nesterov3af244332007-05-09 02:34:09 -0700770 cpu_set(cpu, cpu_populated_map);
771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Oleg Nesterov3af244332007-05-09 02:34:09 -0700773 list_for_each_entry(wq, &workqueues, list) {
774 cwq = per_cpu_ptr(wq->cpu_wq, cpu);
Christoph Lameter89ada672005-10-30 15:01:59 -0800775
Oleg Nesterov3af244332007-05-09 02:34:09 -0700776 switch (action) {
777 case CPU_UP_PREPARE:
778 if (!create_workqueue_thread(cwq, cpu))
779 break;
780 printk(KERN_ERR "workqueue for %i failed\n", cpu);
781 return NOTIFY_BAD;
782
783 case CPU_ONLINE:
Oleg Nesterov06ba38a2007-05-09 02:34:15 -0700784 start_workqueue_thread(cwq, cpu);
Oleg Nesterov3af244332007-05-09 02:34:09 -0700785 break;
786
787 case CPU_UP_CANCELED:
Oleg Nesterov06ba38a2007-05-09 02:34:15 -0700788 start_workqueue_thread(cwq, -1);
Oleg Nesterov3af244332007-05-09 02:34:09 -0700789 case CPU_DEAD:
790 cleanup_workqueue_thread(cwq, cpu);
791 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
794
795 return NOTIFY_OK;
796}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Oleg Nesterovc12920d2007-05-09 02:34:14 -0700798void __init init_workqueues(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Oleg Nesterov3af244332007-05-09 02:34:09 -0700800 cpu_populated_map = cpu_online_map;
Nathan Lynchf756d5e2006-01-08 01:05:12 -0800801 singlethread_cpu = first_cpu(cpu_possible_map);
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700802 cpu_singlethread_map = cpumask_of_cpu(singlethread_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 hotcpu_notifier(workqueue_cpu_callback, 0);
804 keventd_wq = create_workqueue("events");
805 BUG_ON(!keventd_wq);
806}