worker_thread: don't play with signals
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / kernel / workqueue.c
CommitLineData
1da177e4
LT
1/*
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>
89ada679
CL
15 *
16 * Made to use alloc_percpu by Christoph Lameter <clameter@sgi.com>.
1da177e4
LT
17 */
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>
1fa44eca 30#include <linux/hardirq.h>
46934023 31#include <linux/mempolicy.h>
341a5958 32#include <linux/freezer.h>
d5abe669
PZ
33#include <linux/kallsyms.h>
34#include <linux/debug_locks.h>
1da177e4
LT
35
36/*
f756d5e2
NL
37 * The per-CPU workqueue (if single thread, we always use the first
38 * possible cpu).
1da177e4
LT
39 */
40struct cpu_workqueue_struct {
41
42 spinlock_t lock;
43
1da177e4
LT
44 struct list_head worklist;
45 wait_queue_head_t more_work;
3af24433 46 struct work_struct *current_work;
1da177e4
LT
47
48 struct workqueue_struct *wq;
36c8b586 49 struct task_struct *thread;
3af24433 50 int should_stop;
1da177e4
LT
51
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 {
89ada679 60 struct cpu_workqueue_struct *cpu_wq;
cce1a165 61 struct list_head list;
1da177e4 62 const char *name;
cce1a165 63 int singlethread;
319c2a98 64 int freezeable; /* Freeze threads during suspend */
1da177e4
LT
65};
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. */
9b41ea72 69static DEFINE_MUTEX(workqueue_mutex);
1da177e4
LT
70static LIST_HEAD(workqueues);
71
3af24433 72static int singlethread_cpu __read_mostly;
b1f4ec17 73static cpumask_t cpu_singlethread_map __read_mostly;
3af24433
ON
74/* optimization, we could use cpu_possible_map */
75static cpumask_t cpu_populated_map __read_mostly;
f756d5e2 76
1da177e4
LT
77/* If it's single threaded, it isn't in the list of workqueues. */
78static inline int is_single_threaded(struct workqueue_struct *wq)
79{
cce1a165 80 return wq->singlethread;
1da177e4
LT
81}
82
b1f4ec17
ON
83static 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
a848e3b6
ON
89static
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
4594bf15
DH
97/*
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 */
ed7c0fee
ON
101static inline void set_wq_data(struct work_struct *work,
102 struct cpu_workqueue_struct *cwq)
365970a1 103{
4594bf15
DH
104 unsigned long new;
105
106 BUG_ON(!work_pending(work));
365970a1 107
ed7c0fee 108 new = (unsigned long) cwq | (1UL << WORK_STRUCT_PENDING);
a08727ba
LT
109 new |= WORK_STRUCT_FLAG_MASK & *work_data_bits(work);
110 atomic_long_set(&work->data, new);
365970a1
DH
111}
112
ed7c0fee
ON
113static inline
114struct cpu_workqueue_struct *get_wq_data(struct work_struct *work)
365970a1 115{
a08727ba 116 return (void *) (atomic_long_read(&work->data) & WORK_STRUCT_WQ_DATA_MASK);
365970a1
DH
117}
118
b89deed3
ON
119static 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
1da177e4
LT
130/* 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);
b89deed3 137 insert_work(cwq, work, 1);
1da177e4
LT
138 spin_unlock_irqrestore(&cwq->lock, flags);
139}
140
0fcb78c2
REB
141/**
142 * queue_work - queue work on a workqueue
143 * @wq: workqueue to use
144 * @work: work to queue
145 *
057647fc 146 * Returns 0 if @work was already on a queue, non-zero otherwise.
1da177e4
LT
147 *
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{
a848e3b6 153 int ret = 0;
1da177e4 154
a08727ba 155 if (!test_and_set_bit(WORK_STRUCT_PENDING, work_data_bits(work))) {
1da177e4 156 BUG_ON(!list_empty(&work->entry));
a848e3b6
ON
157 __queue_work(wq_per_cpu(wq, get_cpu()), work);
158 put_cpu();
1da177e4
LT
159 ret = 1;
160 }
1da177e4
LT
161 return ret;
162}
ae90dd5d 163EXPORT_SYMBOL_GPL(queue_work);
1da177e4 164
82f67cd9 165void delayed_work_timer_fn(unsigned long __data)
1da177e4 166{
52bad64d 167 struct delayed_work *dwork = (struct delayed_work *)__data;
ed7c0fee
ON
168 struct cpu_workqueue_struct *cwq = get_wq_data(&dwork->work);
169 struct workqueue_struct *wq = cwq->wq;
1da177e4 170
a848e3b6 171 __queue_work(wq_per_cpu(wq, smp_processor_id()), &dwork->work);
1da177e4
LT
172}
173
0fcb78c2
REB
174/**
175 * queue_delayed_work - queue work on a workqueue after delay
176 * @wq: workqueue to use
af9997e4 177 * @dwork: delayable work to queue
0fcb78c2
REB
178 * @delay: number of jiffies to wait before queueing
179 *
057647fc 180 * Returns 0 if @work was already on a queue, non-zero otherwise.
0fcb78c2 181 */
1da177e4 182int fastcall queue_delayed_work(struct workqueue_struct *wq,
52bad64d 183 struct delayed_work *dwork, unsigned long delay)
1da177e4 184{
63bc0362 185 timer_stats_timer_set_start_info(&dwork->timer);
52bad64d 186 if (delay == 0)
63bc0362 187 return queue_work(wq, &dwork->work);
1da177e4 188
63bc0362 189 return queue_delayed_work_on(-1, wq, dwork, delay);
1da177e4 190}
ae90dd5d 191EXPORT_SYMBOL_GPL(queue_delayed_work);
1da177e4 192
0fcb78c2
REB
193/**
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
af9997e4 197 * @dwork: work to queue
0fcb78c2
REB
198 * @delay: number of jiffies to wait before queueing
199 *
057647fc 200 * Returns 0 if @work was already on a queue, non-zero otherwise.
0fcb78c2 201 */
7a6bc1cd 202int queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
52bad64d 203 struct delayed_work *dwork, unsigned long delay)
7a6bc1cd
VP
204{
205 int ret = 0;
52bad64d
DH
206 struct timer_list *timer = &dwork->timer;
207 struct work_struct *work = &dwork->work;
7a6bc1cd 208
a08727ba 209 if (!test_and_set_bit(WORK_STRUCT_PENDING, work_data_bits(work))) {
7a6bc1cd
VP
210 BUG_ON(timer_pending(timer));
211 BUG_ON(!list_empty(&work->entry));
212
ed7c0fee 213 /* This stores cwq for the moment, for the timer_fn */
a848e3b6 214 set_wq_data(work, wq_per_cpu(wq, raw_smp_processor_id()));
7a6bc1cd 215 timer->expires = jiffies + delay;
52bad64d 216 timer->data = (unsigned long)dwork;
7a6bc1cd 217 timer->function = delayed_work_timer_fn;
63bc0362
ON
218
219 if (unlikely(cpu >= 0))
220 add_timer_on(timer, cpu);
221 else
222 add_timer(timer);
7a6bc1cd
VP
223 ret = 1;
224 }
225 return ret;
226}
ae90dd5d 227EXPORT_SYMBOL_GPL(queue_delayed_work_on);
1da177e4 228
858119e1 229static void run_workqueue(struct cpu_workqueue_struct *cwq)
1da177e4 230{
f293ea92 231 spin_lock_irq(&cwq->lock);
1da177e4
LT
232 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);
6bb49e59 242 work_func_t f = work->func;
1da177e4 243
b89deed3 244 cwq->current_work = work;
1da177e4 245 list_del_init(cwq->worklist.next);
f293ea92 246 spin_unlock_irq(&cwq->lock);
1da177e4 247
365970a1 248 BUG_ON(get_wq_data(work) != cwq);
23b2e599 249 work_clear_pending(work);
65f27f38 250 f(work);
1da177e4 251
d5abe669
PZ
252 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
f293ea92 263 spin_lock_irq(&cwq->lock);
b89deed3 264 cwq->current_work = NULL;
1da177e4
LT
265 }
266 cwq->run_depth--;
f293ea92 267 spin_unlock_irq(&cwq->lock);
1da177e4
LT
268}
269
3af24433
ON
270/*
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
1da177e4
LT
288static int worker_thread(void *__cwq)
289{
290 struct cpu_workqueue_struct *cwq = __cwq;
3af24433 291 DEFINE_WAIT(wait);
1da177e4 292 struct k_sigaction sa;
1da177e4 293
319c2a98 294 if (!cwq->wq->freezeable)
341a5958 295 current->flags |= PF_NOFREEZE;
1da177e4
LT
296
297 set_user_nice(current, -5);
46934023
CL
298 /*
299 * We inherited MPOL_INTERLEAVE from the booting kernel.
300 * Set MPOL_DEFAULT to insure node local allocations.
301 */
302 numa_default_policy();
303
1da177e4
LT
304 /* SIG_IGN makes children autoreap: see do_notify_parent(). */
305 sa.sa.sa_handler = SIG_IGN;
306 sa.sa.sa_flags = 0;
307 siginitset(&sa.sa.sa_mask, sigmask(SIGCHLD));
308 do_sigaction(SIGCHLD, &sa, (struct k_sigaction *)0);
309
3af24433 310 for (;;) {
319c2a98 311 if (cwq->wq->freezeable)
341a5958
RW
312 try_to_freeze();
313
3af24433
ON
314 prepare_to_wait(&cwq->more_work, &wait, TASK_INTERRUPTIBLE);
315 if (!cwq->should_stop && list_empty(&cwq->worklist))
1da177e4 316 schedule();
3af24433
ON
317 finish_wait(&cwq->more_work, &wait);
318
319 if (cwq_should_stop(cwq))
320 break;
1da177e4 321
3af24433 322 run_workqueue(cwq);
1da177e4 323 }
3af24433 324
1da177e4
LT
325 return 0;
326}
327
fc2e4d70
ON
328struct wq_barrier {
329 struct work_struct work;
330 struct completion done;
331};
332
333static void wq_barrier_func(struct work_struct *work)
334{
335 struct wq_barrier *barr = container_of(work, struct wq_barrier, work);
336 complete(&barr->done);
337}
338
83c22520
ON
339static void insert_wq_barrier(struct cpu_workqueue_struct *cwq,
340 struct wq_barrier *barr, int tail)
fc2e4d70
ON
341{
342 INIT_WORK(&barr->work, wq_barrier_func);
343 __set_bit(WORK_STRUCT_PENDING, work_data_bits(&barr->work));
344
345 init_completion(&barr->done);
83c22520
ON
346
347 insert_work(cwq, &barr->work, tail);
fc2e4d70
ON
348}
349
1da177e4
LT
350static void flush_cpu_workqueue(struct cpu_workqueue_struct *cwq)
351{
352 if (cwq->thread == current) {
353 /*
354 * Probably keventd trying to flush its own queue. So simply run
355 * it by hand rather than deadlocking.
356 */
357 run_workqueue(cwq);
358 } else {
fc2e4d70 359 struct wq_barrier barr;
83c22520 360 int active = 0;
1da177e4 361
83c22520
ON
362 spin_lock_irq(&cwq->lock);
363 if (!list_empty(&cwq->worklist) || cwq->current_work != NULL) {
364 insert_wq_barrier(cwq, &barr, 1);
365 active = 1;
366 }
367 spin_unlock_irq(&cwq->lock);
1da177e4 368
d721304d 369 if (active)
83c22520 370 wait_for_completion(&barr.done);
1da177e4
LT
371 }
372}
373
0fcb78c2 374/**
1da177e4 375 * flush_workqueue - ensure that any scheduled work has run to completion.
0fcb78c2 376 * @wq: workqueue to flush
1da177e4
LT
377 *
378 * Forces execution of the workqueue and blocks until its completion.
379 * This is typically used in driver shutdown handlers.
380 *
fc2e4d70
ON
381 * We sleep until all works which were queued on entry have been handled,
382 * but we are not livelocked by new incoming ones.
1da177e4
LT
383 *
384 * This function used to run the workqueues itself. Now we just wait for the
385 * helper threads to do it.
386 */
387void fastcall flush_workqueue(struct workqueue_struct *wq)
388{
b1f4ec17 389 const cpumask_t *cpu_map = wq_cpu_map(wq);
cce1a165 390 int cpu;
1da177e4 391
b1f4ec17
ON
392 might_sleep();
393 for_each_cpu_mask(cpu, *cpu_map)
394 flush_cpu_workqueue(per_cpu_ptr(wq->cpu_wq, cpu));
1da177e4 395}
ae90dd5d 396EXPORT_SYMBOL_GPL(flush_workqueue);
1da177e4 397
b89deed3
ON
398static void wait_on_work(struct cpu_workqueue_struct *cwq,
399 struct work_struct *work)
400{
401 struct wq_barrier barr;
402 int running = 0;
403
404 spin_lock_irq(&cwq->lock);
405 if (unlikely(cwq->current_work == work)) {
83c22520 406 insert_wq_barrier(cwq, &barr, 0);
b89deed3
ON
407 running = 1;
408 }
409 spin_unlock_irq(&cwq->lock);
410
3af24433 411 if (unlikely(running))
b89deed3 412 wait_for_completion(&barr.done);
b89deed3
ON
413}
414
415/**
416 * flush_work - block until a work_struct's callback has terminated
417 * @wq: the workqueue on which the work is queued
418 * @work: the work which is to be flushed
419 *
420 * flush_work() will attempt to cancel the work if it is queued. If the work's
421 * callback appears to be running, flush_work() will block until it has
422 * completed.
423 *
424 * flush_work() is designed to be used when the caller is tearing down data
425 * structures which the callback function operates upon. It is expected that,
426 * prior to calling flush_work(), the caller has arranged for the work to not
427 * be requeued.
428 */
429void flush_work(struct workqueue_struct *wq, struct work_struct *work)
430{
b1f4ec17 431 const cpumask_t *cpu_map = wq_cpu_map(wq);
b89deed3 432 struct cpu_workqueue_struct *cwq;
b1f4ec17 433 int cpu;
b89deed3 434
f293ea92
ON
435 might_sleep();
436
b89deed3
ON
437 cwq = get_wq_data(work);
438 /* Was it ever queued ? */
439 if (!cwq)
3af24433 440 return;
b89deed3
ON
441
442 /*
3af24433
ON
443 * This work can't be re-queued, no need to re-check that
444 * get_wq_data() is still the same when we take cwq->lock.
b89deed3
ON
445 */
446 spin_lock_irq(&cwq->lock);
447 list_del_init(&work->entry);
23b2e599 448 work_clear_pending(work);
b89deed3
ON
449 spin_unlock_irq(&cwq->lock);
450
b1f4ec17
ON
451 for_each_cpu_mask(cpu, *cpu_map)
452 wait_on_work(per_cpu_ptr(wq->cpu_wq, cpu), work);
b89deed3
ON
453}
454EXPORT_SYMBOL_GPL(flush_work);
455
1da177e4
LT
456
457static struct workqueue_struct *keventd_wq;
458
0fcb78c2
REB
459/**
460 * schedule_work - put work task in global workqueue
461 * @work: job to be done
462 *
463 * This puts a job in the kernel-global workqueue.
464 */
1da177e4
LT
465int fastcall schedule_work(struct work_struct *work)
466{
467 return queue_work(keventd_wq, work);
468}
ae90dd5d 469EXPORT_SYMBOL(schedule_work);
1da177e4 470
0fcb78c2
REB
471/**
472 * schedule_delayed_work - put work task in global workqueue after delay
52bad64d
DH
473 * @dwork: job to be done
474 * @delay: number of jiffies to wait or 0 for immediate execution
0fcb78c2
REB
475 *
476 * After waiting for a given time this puts a job in the kernel-global
477 * workqueue.
478 */
82f67cd9
IM
479int fastcall schedule_delayed_work(struct delayed_work *dwork,
480 unsigned long delay)
1da177e4 481{
82f67cd9 482 timer_stats_timer_set_start_info(&dwork->timer);
52bad64d 483 return queue_delayed_work(keventd_wq, dwork, delay);
1da177e4 484}
ae90dd5d 485EXPORT_SYMBOL(schedule_delayed_work);
1da177e4 486
0fcb78c2
REB
487/**
488 * schedule_delayed_work_on - queue work in global workqueue on CPU after delay
489 * @cpu: cpu to use
52bad64d 490 * @dwork: job to be done
0fcb78c2
REB
491 * @delay: number of jiffies to wait
492 *
493 * After waiting for a given time this puts a job in the kernel-global
494 * workqueue on the specified CPU.
495 */
1da177e4 496int schedule_delayed_work_on(int cpu,
52bad64d 497 struct delayed_work *dwork, unsigned long delay)
1da177e4 498{
52bad64d 499 return queue_delayed_work_on(cpu, keventd_wq, dwork, delay);
1da177e4 500}
ae90dd5d 501EXPORT_SYMBOL(schedule_delayed_work_on);
1da177e4 502
b6136773
AM
503/**
504 * schedule_on_each_cpu - call a function on each online CPU from keventd
505 * @func: the function to call
b6136773
AM
506 *
507 * Returns zero on success.
508 * Returns -ve errno on failure.
509 *
510 * Appears to be racy against CPU hotplug.
511 *
512 * schedule_on_each_cpu() is very slow.
513 */
65f27f38 514int schedule_on_each_cpu(work_func_t func)
15316ba8
CL
515{
516 int cpu;
b6136773 517 struct work_struct *works;
15316ba8 518
b6136773
AM
519 works = alloc_percpu(struct work_struct);
520 if (!works)
15316ba8 521 return -ENOMEM;
b6136773 522
e18f3ffb 523 preempt_disable(); /* CPU hotplug */
15316ba8 524 for_each_online_cpu(cpu) {
9bfb1839
IM
525 struct work_struct *work = per_cpu_ptr(works, cpu);
526
527 INIT_WORK(work, func);
528 set_bit(WORK_STRUCT_PENDING, work_data_bits(work));
529 __queue_work(per_cpu_ptr(keventd_wq->cpu_wq, cpu), work);
15316ba8 530 }
e18f3ffb 531 preempt_enable();
15316ba8 532 flush_workqueue(keventd_wq);
b6136773 533 free_percpu(works);
15316ba8
CL
534 return 0;
535}
536
1da177e4
LT
537void flush_scheduled_work(void)
538{
539 flush_workqueue(keventd_wq);
540}
ae90dd5d 541EXPORT_SYMBOL(flush_scheduled_work);
1da177e4 542
b89deed3
ON
543void flush_work_keventd(struct work_struct *work)
544{
545 flush_work(keventd_wq, work);
546}
547EXPORT_SYMBOL(flush_work_keventd);
548
1da177e4 549/**
1634c48f 550 * cancel_rearming_delayed_work - kill off a delayed work whose handler rearms the delayed work.
52bad64d 551 * @dwork: the delayed work struct
ed7c0fee
ON
552 *
553 * Note that the work callback function may still be running on return from
554 * cancel_delayed_work(). Run flush_workqueue() or flush_work() to wait on it.
1da177e4 555 */
1634c48f 556void cancel_rearming_delayed_work(struct delayed_work *dwork)
1da177e4 557{
1634c48f 558 struct cpu_workqueue_struct *cwq = get_wq_data(&dwork->work);
dfb4b82e 559
1634c48f
ON
560 /* Was it ever queued ? */
561 if (cwq != NULL) {
562 struct workqueue_struct *wq = cwq->wq;
1da177e4 563
1634c48f
ON
564 while (!cancel_delayed_work(dwork))
565 flush_workqueue(wq);
566 }
1da177e4
LT
567}
568EXPORT_SYMBOL(cancel_rearming_delayed_work);
569
1fa44eca
JB
570/**
571 * execute_in_process_context - reliably execute the routine with user context
572 * @fn: the function to execute
1fa44eca
JB
573 * @ew: guaranteed storage for the execute work structure (must
574 * be available when the work executes)
575 *
576 * Executes the function immediately if process context is available,
577 * otherwise schedules the function for delayed execution.
578 *
579 * Returns: 0 - function was executed
580 * 1 - function was scheduled for execution
581 */
65f27f38 582int execute_in_process_context(work_func_t fn, struct execute_work *ew)
1fa44eca
JB
583{
584 if (!in_interrupt()) {
65f27f38 585 fn(&ew->work);
1fa44eca
JB
586 return 0;
587 }
588
65f27f38 589 INIT_WORK(&ew->work, fn);
1fa44eca
JB
590 schedule_work(&ew->work);
591
592 return 1;
593}
594EXPORT_SYMBOL_GPL(execute_in_process_context);
595
1da177e4
LT
596int keventd_up(void)
597{
598 return keventd_wq != NULL;
599}
600
601int current_is_keventd(void)
602{
603 struct cpu_workqueue_struct *cwq;
604 int cpu = smp_processor_id(); /* preempt-safe: keventd is per-cpu */
605 int ret = 0;
606
607 BUG_ON(!keventd_wq);
608
89ada679 609 cwq = per_cpu_ptr(keventd_wq->cpu_wq, cpu);
1da177e4
LT
610 if (current == cwq->thread)
611 ret = 1;
612
613 return ret;
614
615}
616
3af24433
ON
617static struct cpu_workqueue_struct *
618init_cpu_workqueue(struct workqueue_struct *wq, int cpu)
1da177e4 619{
89ada679 620 struct cpu_workqueue_struct *cwq = per_cpu_ptr(wq->cpu_wq, cpu);
1da177e4 621
3af24433
ON
622 cwq->wq = wq;
623 spin_lock_init(&cwq->lock);
624 INIT_LIST_HEAD(&cwq->worklist);
625 init_waitqueue_head(&cwq->more_work);
626
627 return cwq;
1da177e4
LT
628}
629
3af24433
ON
630static int create_workqueue_thread(struct cpu_workqueue_struct *cwq, int cpu)
631{
632 struct workqueue_struct *wq = cwq->wq;
633 const char *fmt = is_single_threaded(wq) ? "%s" : "%s/%d";
634 struct task_struct *p;
635
636 p = kthread_create(worker_thread, cwq, fmt, wq->name, cpu);
637 /*
638 * Nobody can add the work_struct to this cwq,
639 * if (caller is __create_workqueue)
640 * nobody should see this wq
641 * else // caller is CPU_UP_PREPARE
642 * cpu is not on cpu_online_map
643 * so we can abort safely.
644 */
645 if (IS_ERR(p))
646 return PTR_ERR(p);
647
648 cwq->thread = p;
649 cwq->should_stop = 0;
3af24433
ON
650
651 return 0;
652}
653
06ba38a9
ON
654static void start_workqueue_thread(struct cpu_workqueue_struct *cwq, int cpu)
655{
656 struct task_struct *p = cwq->thread;
657
658 if (p != NULL) {
659 if (cpu >= 0)
660 kthread_bind(p, cpu);
661 wake_up_process(p);
662 }
663}
664
3af24433
ON
665struct workqueue_struct *__create_workqueue(const char *name,
666 int singlethread, int freezeable)
1da177e4 667{
1da177e4 668 struct workqueue_struct *wq;
3af24433
ON
669 struct cpu_workqueue_struct *cwq;
670 int err = 0, cpu;
1da177e4 671
3af24433
ON
672 wq = kzalloc(sizeof(*wq), GFP_KERNEL);
673 if (!wq)
674 return NULL;
675
676 wq->cpu_wq = alloc_percpu(struct cpu_workqueue_struct);
677 if (!wq->cpu_wq) {
678 kfree(wq);
679 return NULL;
680 }
681
682 wq->name = name;
cce1a165 683 wq->singlethread = singlethread;
3af24433 684 wq->freezeable = freezeable;
cce1a165 685 INIT_LIST_HEAD(&wq->list);
3af24433
ON
686
687 if (singlethread) {
3af24433
ON
688 cwq = init_cpu_workqueue(wq, singlethread_cpu);
689 err = create_workqueue_thread(cwq, singlethread_cpu);
06ba38a9 690 start_workqueue_thread(cwq, -1);
3af24433 691 } else {
9b41ea72 692 mutex_lock(&workqueue_mutex);
3af24433
ON
693 list_add(&wq->list, &workqueues);
694
695 for_each_possible_cpu(cpu) {
696 cwq = init_cpu_workqueue(wq, cpu);
697 if (err || !cpu_online(cpu))
698 continue;
699 err = create_workqueue_thread(cwq, cpu);
06ba38a9 700 start_workqueue_thread(cwq, cpu);
1da177e4 701 }
3af24433
ON
702 mutex_unlock(&workqueue_mutex);
703 }
704
705 if (err) {
706 destroy_workqueue(wq);
707 wq = NULL;
708 }
709 return wq;
710}
711EXPORT_SYMBOL_GPL(__create_workqueue);
1da177e4 712
3af24433
ON
713static void cleanup_workqueue_thread(struct cpu_workqueue_struct *cwq, int cpu)
714{
715 struct wq_barrier barr;
716 int alive = 0;
89ada679 717
3af24433
ON
718 spin_lock_irq(&cwq->lock);
719 if (cwq->thread != NULL) {
720 insert_wq_barrier(cwq, &barr, 1);
721 cwq->should_stop = 1;
722 alive = 1;
723 }
724 spin_unlock_irq(&cwq->lock);
725
726 if (alive) {
727 wait_for_completion(&barr.done);
728
729 while (unlikely(cwq->thread != NULL))
730 cpu_relax();
731 /*
732 * Wait until cwq->thread unlocks cwq->lock,
733 * it won't touch *cwq after that.
734 */
735 smp_rmb();
736 spin_unlock_wait(&cwq->lock);
737 }
738}
739
740/**
741 * destroy_workqueue - safely terminate a workqueue
742 * @wq: target workqueue
743 *
744 * Safely destroy a workqueue. All work currently pending will be done first.
745 */
746void destroy_workqueue(struct workqueue_struct *wq)
747{
b1f4ec17 748 const cpumask_t *cpu_map = wq_cpu_map(wq);
3af24433 749 struct cpu_workqueue_struct *cwq;
b1f4ec17 750 int cpu;
3af24433 751
b1f4ec17
ON
752 mutex_lock(&workqueue_mutex);
753 list_del(&wq->list);
754 mutex_unlock(&workqueue_mutex);
3af24433 755
b1f4ec17
ON
756 for_each_cpu_mask(cpu, *cpu_map) {
757 cwq = per_cpu_ptr(wq->cpu_wq, cpu);
758 cleanup_workqueue_thread(cwq, cpu);
3af24433 759 }
9b41ea72 760
3af24433
ON
761 free_percpu(wq->cpu_wq);
762 kfree(wq);
763}
764EXPORT_SYMBOL_GPL(destroy_workqueue);
765
766static int __devinit workqueue_cpu_callback(struct notifier_block *nfb,
767 unsigned long action,
768 void *hcpu)
769{
770 unsigned int cpu = (unsigned long)hcpu;
771 struct cpu_workqueue_struct *cwq;
772 struct workqueue_struct *wq;
773
774 switch (action) {
775 case CPU_LOCK_ACQUIRE:
9b41ea72 776 mutex_lock(&workqueue_mutex);
3af24433 777 return NOTIFY_OK;
9b41ea72 778
3af24433 779 case CPU_LOCK_RELEASE:
9b41ea72 780 mutex_unlock(&workqueue_mutex);
3af24433 781 return NOTIFY_OK;
1da177e4 782
3af24433
ON
783 case CPU_UP_PREPARE:
784 cpu_set(cpu, cpu_populated_map);
785 }
786
787 list_for_each_entry(wq, &workqueues, list) {
788 cwq = per_cpu_ptr(wq->cpu_wq, cpu);
789
790 switch (action) {
791 case CPU_UP_PREPARE:
792 if (!create_workqueue_thread(cwq, cpu))
793 break;
794 printk(KERN_ERR "workqueue for %i failed\n", cpu);
795 return NOTIFY_BAD;
796
797 case CPU_ONLINE:
06ba38a9 798 start_workqueue_thread(cwq, cpu);
3af24433
ON
799 break;
800
801 case CPU_UP_CANCELED:
06ba38a9 802 start_workqueue_thread(cwq, -1);
3af24433
ON
803 case CPU_DEAD:
804 cleanup_workqueue_thread(cwq, cpu);
805 break;
806 }
1da177e4
LT
807 }
808
809 return NOTIFY_OK;
810}
1da177e4 811
c12920d1 812void __init init_workqueues(void)
1da177e4 813{
3af24433 814 cpu_populated_map = cpu_online_map;
f756d5e2 815 singlethread_cpu = first_cpu(cpu_possible_map);
b1f4ec17 816 cpu_singlethread_map = cpumask_of_cpu(singlethread_cpu);
1da177e4
LT
817 hotcpu_notifier(workqueue_cpu_callback, 0);
818 keventd_wq = create_workqueue("events");
819 BUG_ON(!keventd_wq);
820}