Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Tejun Heo | c54fce6 | 2010-09-10 16:51:36 +0200 | [diff] [blame] | 2 | * kernel/workqueue.c - generic async execution with shared worker pool |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
Tejun Heo | c54fce6 | 2010-09-10 16:51:36 +0200 | [diff] [blame] | 4 | * Copyright (C) 2002 Ingo Molnar |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
Tejun Heo | c54fce6 | 2010-09-10 16:51:36 +0200 | [diff] [blame] | 6 | * Derived from the taskqueue/keventd code by: |
| 7 | * David Woodhouse <dwmw2@infradead.org> |
| 8 | * Andrew Morton |
| 9 | * Kai Petzke <wpp@marie.physik.tu-berlin.de> |
| 10 | * Theodore Ts'o <tytso@mit.edu> |
Christoph Lameter | 89ada67 | 2005-10-30 15:01:59 -0800 | [diff] [blame] | 11 | * |
Christoph Lameter | cde5353 | 2008-07-04 09:59:22 -0700 | [diff] [blame] | 12 | * Made to use alloc_percpu by Christoph Lameter. |
Tejun Heo | c54fce6 | 2010-09-10 16:51:36 +0200 | [diff] [blame] | 13 | * |
| 14 | * Copyright (C) 2010 SUSE Linux Products GmbH |
| 15 | * Copyright (C) 2010 Tejun Heo <tj@kernel.org> |
| 16 | * |
| 17 | * This is the generic async execution mechanism. Work items as are |
| 18 | * executed in process context. The worker pool is shared and |
| 19 | * automatically managed. There is one worker pool for each CPU and |
| 20 | * one extra for works which are better served by workers which are |
| 21 | * not bound to any specific CPU. |
| 22 | * |
| 23 | * Please read Documentation/workqueue.txt for details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | */ |
| 25 | |
Paul Gortmaker | 9984de1 | 2011-05-23 14:51:41 -0400 | [diff] [blame] | 26 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/kernel.h> |
| 28 | #include <linux/sched.h> |
| 29 | #include <linux/init.h> |
| 30 | #include <linux/signal.h> |
| 31 | #include <linux/completion.h> |
| 32 | #include <linux/workqueue.h> |
| 33 | #include <linux/slab.h> |
| 34 | #include <linux/cpu.h> |
| 35 | #include <linux/notifier.h> |
| 36 | #include <linux/kthread.h> |
James Bottomley | 1fa44ec | 2006-02-23 12:43:43 -0600 | [diff] [blame] | 37 | #include <linux/hardirq.h> |
Christoph Lameter | 4693402 | 2006-10-11 01:21:26 -0700 | [diff] [blame] | 38 | #include <linux/mempolicy.h> |
Rafael J. Wysocki | 341a595 | 2006-12-06 20:34:49 -0800 | [diff] [blame] | 39 | #include <linux/freezer.h> |
Peter Zijlstra | d5abe66 | 2006-12-06 20:37:26 -0800 | [diff] [blame] | 40 | #include <linux/kallsyms.h> |
| 41 | #include <linux/debug_locks.h> |
Johannes Berg | 4e6045f | 2007-10-18 23:39:55 -0700 | [diff] [blame] | 42 | #include <linux/lockdep.h> |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 43 | #include <linux/idr.h> |
Sasha Levin | 42f8570 | 2012-12-17 10:01:23 -0500 | [diff] [blame] | 44 | #include <linux/hashtable.h> |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 45 | #include <linux/rculist.h> |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 46 | |
Tejun Heo | ea13844 | 2013-01-18 14:05:55 -0800 | [diff] [blame] | 47 | #include "workqueue_internal.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 49 | enum { |
Tejun Heo | bc2ae0f | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 50 | /* |
Tejun Heo | 2464757 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 51 | * worker_pool flags |
Tejun Heo | bc2ae0f | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 52 | * |
Tejun Heo | 2464757 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 53 | * A bound pool is either associated or disassociated with its CPU. |
Tejun Heo | bc2ae0f | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 54 | * While associated (!DISASSOCIATED), all workers are bound to the |
| 55 | * CPU and none has %WORKER_UNBOUND set and concurrency management |
| 56 | * is in effect. |
| 57 | * |
| 58 | * While DISASSOCIATED, the cpu may be offline and all workers have |
| 59 | * %WORKER_UNBOUND set and concurrency management disabled, and may |
Tejun Heo | 2464757 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 60 | * be executing on any CPU. The pool behaves as an unbound one. |
Tejun Heo | bc2ae0f | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 61 | * |
| 62 | * Note that DISASSOCIATED can be flipped only while holding |
Tejun Heo | 2464757 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 63 | * assoc_mutex to avoid changing binding state while |
| 64 | * create_worker() is in progress. |
Tejun Heo | bc2ae0f | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 65 | */ |
Tejun Heo | 11ebea5 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 66 | POOL_MANAGE_WORKERS = 1 << 0, /* need to manage workers */ |
Tejun Heo | 2464757 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 67 | POOL_DISASSOCIATED = 1 << 2, /* cpu can't serve workers */ |
Tejun Heo | 35b6bb6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 68 | POOL_FREEZING = 1 << 3, /* freeze in progress */ |
Tejun Heo | db7bccf | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 69 | |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 70 | /* worker flags */ |
| 71 | WORKER_STARTED = 1 << 0, /* started */ |
| 72 | WORKER_DIE = 1 << 1, /* die die die */ |
| 73 | WORKER_IDLE = 1 << 2, /* is idle */ |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 74 | WORKER_PREP = 1 << 3, /* preparing to run works */ |
Tejun Heo | fb0e7be | 2010-06-29 10:07:15 +0200 | [diff] [blame] | 75 | WORKER_CPU_INTENSIVE = 1 << 6, /* cpu intensive */ |
Tejun Heo | f342179 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 76 | WORKER_UNBOUND = 1 << 7, /* worker is unbound */ |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 77 | |
Lai Jiangshan | 5f7dabf | 2012-09-18 09:59:23 -0700 | [diff] [blame] | 78 | WORKER_NOT_RUNNING = WORKER_PREP | WORKER_UNBOUND | |
Tejun Heo | 403c821 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 79 | WORKER_CPU_INTENSIVE, |
Tejun Heo | db7bccf | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 80 | |
Tejun Heo | e34cdddb | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 81 | NR_STD_WORKER_POOLS = 2, /* # standard pools per cpu */ |
Tejun Heo | 4ce62e9 | 2012-07-13 22:16:44 -0700 | [diff] [blame] | 82 | |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 83 | BUSY_WORKER_HASH_ORDER = 6, /* 64 pointers */ |
Tejun Heo | db7bccf | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 84 | |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 85 | MAX_IDLE_WORKERS_RATIO = 4, /* 1/4 of busy can be idle */ |
| 86 | IDLE_WORKER_TIMEOUT = 300 * HZ, /* keep idle ones for 5 mins */ |
| 87 | |
Tejun Heo | 3233cdb | 2011-02-16 18:10:19 +0100 | [diff] [blame] | 88 | MAYDAY_INITIAL_TIMEOUT = HZ / 100 >= 2 ? HZ / 100 : 2, |
| 89 | /* call for help after 10ms |
| 90 | (min two ticks) */ |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 91 | MAYDAY_INTERVAL = HZ / 10, /* and then every 100ms */ |
| 92 | CREATE_COOLDOWN = HZ, /* time to breath after fail */ |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 93 | |
| 94 | /* |
| 95 | * Rescue workers are used only on emergencies and shared by |
| 96 | * all cpus. Give -20. |
| 97 | */ |
| 98 | RESCUER_NICE_LEVEL = -20, |
Tejun Heo | 3270476 | 2012-07-13 22:16:45 -0700 | [diff] [blame] | 99 | HIGHPRI_NICE_LEVEL = -20, |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 100 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | |
| 102 | /* |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 103 | * Structure fields follow one of the following exclusion rules. |
| 104 | * |
Tejun Heo | e41e704 | 2010-08-24 14:22:47 +0200 | [diff] [blame] | 105 | * I: Modifiable by initialization/destruction paths and read-only for |
| 106 | * everyone else. |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 107 | * |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 108 | * P: Preemption protected. Disabling preemption is enough and should |
| 109 | * only be modified and accessed from the local cpu. |
| 110 | * |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 111 | * L: pool->lock protected. Access with pool->lock held. |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 112 | * |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 113 | * X: During normal operation, modification requires pool->lock and should |
| 114 | * be done only from local cpu. Either disabling preemption on local |
| 115 | * cpu or grabbing pool->lock is enough for read access. If |
| 116 | * POOL_DISASSOCIATED is set, it's identical to L. |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 117 | * |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 118 | * F: wq->flush_mutex protected. |
| 119 | * |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 120 | * W: workqueue_lock protected. |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 121 | * |
| 122 | * R: workqueue_lock protected for writes. Sched-RCU protected for reads. |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 123 | */ |
| 124 | |
Tejun Heo | 2eaebdb | 2013-01-18 14:05:55 -0800 | [diff] [blame] | 125 | /* struct worker is defined in workqueue_internal.h */ |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 126 | |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 127 | struct worker_pool { |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 128 | spinlock_t lock; /* the pool lock */ |
Tejun Heo | d84ff05 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 129 | int cpu; /* I: the associated cpu */ |
Tejun Heo | 9daf9e6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 130 | int id; /* I: pool ID */ |
Tejun Heo | 11ebea5 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 131 | unsigned int flags; /* X: flags */ |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 132 | |
| 133 | struct list_head worklist; /* L: list of pending works */ |
| 134 | int nr_workers; /* L: total number of workers */ |
Lai Jiangshan | ea1abd6 | 2012-09-18 09:59:22 -0700 | [diff] [blame] | 135 | |
| 136 | /* nr_idle includes the ones off idle_list for rebinding */ |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 137 | int nr_idle; /* L: currently idle ones */ |
| 138 | |
| 139 | struct list_head idle_list; /* X: list of idle workers */ |
| 140 | struct timer_list idle_timer; /* L: worker idle timeout */ |
| 141 | struct timer_list mayday_timer; /* L: SOS timer for workers */ |
| 142 | |
Tejun Heo | c9e7cf2 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 143 | /* workers are chained either in busy_hash or idle_list */ |
| 144 | DECLARE_HASHTABLE(busy_hash, BUSY_WORKER_HASH_ORDER); |
| 145 | /* L: hash of busy workers */ |
| 146 | |
Tejun Heo | 34a06bd | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 147 | struct mutex manager_arb; /* manager arbitration */ |
Tejun Heo | 2464757 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 148 | struct mutex assoc_mutex; /* protect POOL_DISASSOCIATED */ |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 149 | struct ida worker_ida; /* L: for worker IDs */ |
Tejun Heo | e19e397 | 2013-01-24 11:39:44 -0800 | [diff] [blame] | 150 | |
Tejun Heo | 7a4e344 | 2013-03-12 11:30:00 -0700 | [diff] [blame^] | 151 | struct workqueue_attrs *attrs; /* I: worker attributes */ |
| 152 | |
Tejun Heo | e19e397 | 2013-01-24 11:39:44 -0800 | [diff] [blame] | 153 | /* |
| 154 | * The current concurrency level. As it's likely to be accessed |
| 155 | * from other CPUs during try_to_wake_up(), put it in a separate |
| 156 | * cacheline. |
| 157 | */ |
| 158 | atomic_t nr_running ____cacheline_aligned_in_smp; |
Tejun Heo | 8b03ae3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 159 | } ____cacheline_aligned_in_smp; |
| 160 | |
| 161 | /* |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 162 | * The per-pool workqueue. While queued, the lower WORK_STRUCT_FLAG_BITS |
| 163 | * of work_struct->data are used for flags and the remaining high bits |
| 164 | * point to the pwq; thus, pwqs need to be aligned at two's power of the |
| 165 | * number of flag bits. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | */ |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 167 | struct pool_workqueue { |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 168 | struct worker_pool *pool; /* I: the associated pool */ |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 169 | struct workqueue_struct *wq; /* I: the owning workqueue */ |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 170 | int work_color; /* L: current color */ |
| 171 | int flush_color; /* L: flushing color */ |
| 172 | int nr_in_flight[WORK_NR_COLORS]; |
| 173 | /* L: nr of in_flight works */ |
Tejun Heo | 1e19ffc | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 174 | int nr_active; /* L: nr of active works */ |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 175 | int max_active; /* L: max active works */ |
Tejun Heo | 1e19ffc | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 176 | struct list_head delayed_works; /* L: delayed works */ |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 177 | struct list_head pwqs_node; /* R: node on wq->pwqs */ |
Tejun Heo | 493a172 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 178 | struct list_head mayday_node; /* W: node on wq->maydays */ |
Tejun Heo | e904e6c | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 179 | } __aligned(1 << WORK_STRUCT_FLAG_BITS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | /* |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 182 | * Structure used to wait for workqueue flush. |
| 183 | */ |
| 184 | struct wq_flusher { |
| 185 | struct list_head list; /* F: list of flushers */ |
| 186 | int flush_color; /* F: flush color waiting for */ |
| 187 | struct completion done; /* flush completion */ |
| 188 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 190 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | * The externally visible workqueue abstraction is an array of |
| 192 | * per-CPU workqueues: |
| 193 | */ |
| 194 | struct workqueue_struct { |
Tejun Heo | 9c5a2ba | 2011-04-05 18:01:44 +0200 | [diff] [blame] | 195 | unsigned int flags; /* W: WQ_* flags */ |
Tejun Heo | 420c0dd | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 196 | struct pool_workqueue __percpu *cpu_pwqs; /* I: per-cpu pwq's */ |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 197 | struct list_head pwqs; /* R: all pwqs of this wq */ |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 198 | struct list_head list; /* W: list of all workqueues */ |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 199 | |
| 200 | struct mutex flush_mutex; /* protects wq flushing */ |
| 201 | int work_color; /* F: current work color */ |
| 202 | int flush_color; /* F: current flush color */ |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 203 | atomic_t nr_pwqs_to_flush; /* flush in progress */ |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 204 | struct wq_flusher *first_flusher; /* F: first flusher */ |
| 205 | struct list_head flusher_queue; /* F: flush waiters */ |
| 206 | struct list_head flusher_overflow; /* F: flush overflow list */ |
| 207 | |
Tejun Heo | 493a172 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 208 | struct list_head maydays; /* W: pwqs requesting rescue */ |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 209 | struct worker *rescuer; /* I: rescue worker */ |
| 210 | |
Tejun Heo | 9c5a2ba | 2011-04-05 18:01:44 +0200 | [diff] [blame] | 211 | int nr_drainers; /* W: drain in progress */ |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 212 | int saved_max_active; /* W: saved pwq max_active */ |
Johannes Berg | 4e6045f | 2007-10-18 23:39:55 -0700 | [diff] [blame] | 213 | #ifdef CONFIG_LOCKDEP |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 214 | struct lockdep_map lockdep_map; |
Johannes Berg | 4e6045f | 2007-10-18 23:39:55 -0700 | [diff] [blame] | 215 | #endif |
Tejun Heo | b196be8 | 2012-01-10 15:11:35 -0800 | [diff] [blame] | 216 | char name[]; /* I: workqueue name */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | }; |
| 218 | |
Tejun Heo | e904e6c | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 219 | static struct kmem_cache *pwq_cache; |
| 220 | |
Tejun Heo | d320c03 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 221 | struct workqueue_struct *system_wq __read_mostly; |
Tejun Heo | d320c03 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 222 | EXPORT_SYMBOL_GPL(system_wq); |
Valentin Ilie | 044c782 | 2012-08-19 00:52:42 +0300 | [diff] [blame] | 223 | struct workqueue_struct *system_highpri_wq __read_mostly; |
Joonsoo Kim | 1aabe90 | 2012-08-15 23:25:39 +0900 | [diff] [blame] | 224 | EXPORT_SYMBOL_GPL(system_highpri_wq); |
Valentin Ilie | 044c782 | 2012-08-19 00:52:42 +0300 | [diff] [blame] | 225 | struct workqueue_struct *system_long_wq __read_mostly; |
Tejun Heo | d320c03 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 226 | EXPORT_SYMBOL_GPL(system_long_wq); |
Valentin Ilie | 044c782 | 2012-08-19 00:52:42 +0300 | [diff] [blame] | 227 | struct workqueue_struct *system_unbound_wq __read_mostly; |
Tejun Heo | f342179 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 228 | EXPORT_SYMBOL_GPL(system_unbound_wq); |
Valentin Ilie | 044c782 | 2012-08-19 00:52:42 +0300 | [diff] [blame] | 229 | struct workqueue_struct *system_freezable_wq __read_mostly; |
Tejun Heo | 24d51ad | 2011-02-21 09:52:50 +0100 | [diff] [blame] | 230 | EXPORT_SYMBOL_GPL(system_freezable_wq); |
Tejun Heo | d320c03 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 231 | |
Tejun Heo | 97bd234 | 2010-10-05 10:41:14 +0200 | [diff] [blame] | 232 | #define CREATE_TRACE_POINTS |
| 233 | #include <trace/events/workqueue.h> |
| 234 | |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 235 | #define assert_rcu_or_wq_lock() \ |
| 236 | rcu_lockdep_assert(rcu_read_lock_sched_held() || \ |
| 237 | lockdep_is_held(&workqueue_lock), \ |
| 238 | "sched RCU or workqueue lock should be held") |
| 239 | |
Tejun Heo | 38db41d | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 240 | #define for_each_std_worker_pool(pool, cpu) \ |
Tejun Heo | a60dc39 | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 241 | for ((pool) = &std_worker_pools(cpu)[0]; \ |
| 242 | (pool) < &std_worker_pools(cpu)[NR_STD_WORKER_POOLS]; (pool)++) |
Tejun Heo | 4ce62e9 | 2012-07-13 22:16:44 -0700 | [diff] [blame] | 243 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 244 | #define for_each_busy_worker(worker, i, pool) \ |
| 245 | hash_for_each(pool->busy_hash, i, worker, hentry) |
Tejun Heo | db7bccf | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 246 | |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 247 | static inline int __next_wq_cpu(int cpu, const struct cpumask *mask, |
| 248 | unsigned int sw) |
Tejun Heo | f342179 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 249 | { |
| 250 | if (cpu < nr_cpu_ids) { |
| 251 | if (sw & 1) { |
| 252 | cpu = cpumask_next(cpu, mask); |
| 253 | if (cpu < nr_cpu_ids) |
| 254 | return cpu; |
| 255 | } |
| 256 | if (sw & 2) |
| 257 | return WORK_CPU_UNBOUND; |
| 258 | } |
Lai Jiangshan | 6be1958 | 2013-02-06 18:04:53 -0800 | [diff] [blame] | 259 | return WORK_CPU_END; |
Tejun Heo | f342179 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 260 | } |
| 261 | |
Tejun Heo | 0988495 | 2010-08-01 11:50:12 +0200 | [diff] [blame] | 262 | /* |
| 263 | * CPU iterators |
| 264 | * |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 265 | * An extra cpu number is defined using an invalid cpu number |
Tejun Heo | 0988495 | 2010-08-01 11:50:12 +0200 | [diff] [blame] | 266 | * (WORK_CPU_UNBOUND) to host workqueues which are not bound to any |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 267 | * specific CPU. The following iterators are similar to for_each_*_cpu() |
| 268 | * iterators but also considers the unbound CPU. |
Tejun Heo | 0988495 | 2010-08-01 11:50:12 +0200 | [diff] [blame] | 269 | * |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 270 | * for_each_wq_cpu() : possible CPUs + WORK_CPU_UNBOUND |
| 271 | * for_each_online_wq_cpu() : online CPUs + WORK_CPU_UNBOUND |
Tejun Heo | 0988495 | 2010-08-01 11:50:12 +0200 | [diff] [blame] | 272 | */ |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 273 | #define for_each_wq_cpu(cpu) \ |
| 274 | for ((cpu) = __next_wq_cpu(-1, cpu_possible_mask, 3); \ |
Lai Jiangshan | 6be1958 | 2013-02-06 18:04:53 -0800 | [diff] [blame] | 275 | (cpu) < WORK_CPU_END; \ |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 276 | (cpu) = __next_wq_cpu((cpu), cpu_possible_mask, 3)) |
Tejun Heo | f342179 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 277 | |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 278 | #define for_each_online_wq_cpu(cpu) \ |
| 279 | for ((cpu) = __next_wq_cpu(-1, cpu_online_mask, 3); \ |
Lai Jiangshan | 6be1958 | 2013-02-06 18:04:53 -0800 | [diff] [blame] | 280 | (cpu) < WORK_CPU_END; \ |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 281 | (cpu) = __next_wq_cpu((cpu), cpu_online_mask, 3)) |
Tejun Heo | f342179 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 282 | |
Tejun Heo | 49e3cf4 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 283 | /** |
Tejun Heo | 1711696 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 284 | * for_each_pool - iterate through all worker_pools in the system |
| 285 | * @pool: iteration cursor |
| 286 | * @id: integer used for iteration |
Tejun Heo | fa1b54e | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 287 | * |
| 288 | * This must be called either with workqueue_lock held or sched RCU read |
| 289 | * locked. If the pool needs to be used beyond the locking in effect, the |
| 290 | * caller is responsible for guaranteeing that the pool stays online. |
| 291 | * |
| 292 | * The if/else clause exists only for the lockdep assertion and can be |
| 293 | * ignored. |
Tejun Heo | 1711696 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 294 | */ |
| 295 | #define for_each_pool(pool, id) \ |
Tejun Heo | fa1b54e | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 296 | idr_for_each_entry(&worker_pool_idr, pool, id) \ |
| 297 | if (({ assert_rcu_or_wq_lock(); false; })) { } \ |
| 298 | else |
Tejun Heo | 1711696 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 299 | |
| 300 | /** |
Tejun Heo | 49e3cf4 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 301 | * for_each_pwq - iterate through all pool_workqueues of the specified workqueue |
| 302 | * @pwq: iteration cursor |
| 303 | * @wq: the target workqueue |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 304 | * |
| 305 | * This must be called either with workqueue_lock held or sched RCU read |
| 306 | * locked. If the pwq needs to be used beyond the locking in effect, the |
| 307 | * caller is responsible for guaranteeing that the pwq stays online. |
| 308 | * |
| 309 | * The if/else clause exists only for the lockdep assertion and can be |
| 310 | * ignored. |
Tejun Heo | 49e3cf4 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 311 | */ |
| 312 | #define for_each_pwq(pwq, wq) \ |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 313 | list_for_each_entry_rcu((pwq), &(wq)->pwqs, pwqs_node) \ |
| 314 | if (({ assert_rcu_or_wq_lock(); false; })) { } \ |
| 315 | else |
Tejun Heo | f342179 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 316 | |
Thomas Gleixner | dc186ad | 2009-11-16 01:09:48 +0900 | [diff] [blame] | 317 | #ifdef CONFIG_DEBUG_OBJECTS_WORK |
| 318 | |
| 319 | static struct debug_obj_descr work_debug_descr; |
| 320 | |
Stanislaw Gruszka | 9977728 | 2011-03-07 09:58:33 +0100 | [diff] [blame] | 321 | static void *work_debug_hint(void *addr) |
| 322 | { |
| 323 | return ((struct work_struct *) addr)->func; |
| 324 | } |
| 325 | |
Thomas Gleixner | dc186ad | 2009-11-16 01:09:48 +0900 | [diff] [blame] | 326 | /* |
| 327 | * fixup_init is called when: |
| 328 | * - an active object is initialized |
| 329 | */ |
| 330 | static int work_fixup_init(void *addr, enum debug_obj_state state) |
| 331 | { |
| 332 | struct work_struct *work = addr; |
| 333 | |
| 334 | switch (state) { |
| 335 | case ODEBUG_STATE_ACTIVE: |
| 336 | cancel_work_sync(work); |
| 337 | debug_object_init(work, &work_debug_descr); |
| 338 | return 1; |
| 339 | default: |
| 340 | return 0; |
| 341 | } |
| 342 | } |
| 343 | |
| 344 | /* |
| 345 | * fixup_activate is called when: |
| 346 | * - an active object is activated |
| 347 | * - an unknown object is activated (might be a statically initialized object) |
| 348 | */ |
| 349 | static int work_fixup_activate(void *addr, enum debug_obj_state state) |
| 350 | { |
| 351 | struct work_struct *work = addr; |
| 352 | |
| 353 | switch (state) { |
| 354 | |
| 355 | case ODEBUG_STATE_NOTAVAILABLE: |
| 356 | /* |
| 357 | * This is not really a fixup. The work struct was |
| 358 | * statically initialized. We just make sure that it |
| 359 | * is tracked in the object tracker. |
| 360 | */ |
Tejun Heo | 22df02b | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 361 | if (test_bit(WORK_STRUCT_STATIC_BIT, work_data_bits(work))) { |
Thomas Gleixner | dc186ad | 2009-11-16 01:09:48 +0900 | [diff] [blame] | 362 | debug_object_init(work, &work_debug_descr); |
| 363 | debug_object_activate(work, &work_debug_descr); |
| 364 | return 0; |
| 365 | } |
| 366 | WARN_ON_ONCE(1); |
| 367 | return 0; |
| 368 | |
| 369 | case ODEBUG_STATE_ACTIVE: |
| 370 | WARN_ON(1); |
| 371 | |
| 372 | default: |
| 373 | return 0; |
| 374 | } |
| 375 | } |
| 376 | |
| 377 | /* |
| 378 | * fixup_free is called when: |
| 379 | * - an active object is freed |
| 380 | */ |
| 381 | static int work_fixup_free(void *addr, enum debug_obj_state state) |
| 382 | { |
| 383 | struct work_struct *work = addr; |
| 384 | |
| 385 | switch (state) { |
| 386 | case ODEBUG_STATE_ACTIVE: |
| 387 | cancel_work_sync(work); |
| 388 | debug_object_free(work, &work_debug_descr); |
| 389 | return 1; |
| 390 | default: |
| 391 | return 0; |
| 392 | } |
| 393 | } |
| 394 | |
| 395 | static struct debug_obj_descr work_debug_descr = { |
| 396 | .name = "work_struct", |
Stanislaw Gruszka | 9977728 | 2011-03-07 09:58:33 +0100 | [diff] [blame] | 397 | .debug_hint = work_debug_hint, |
Thomas Gleixner | dc186ad | 2009-11-16 01:09:48 +0900 | [diff] [blame] | 398 | .fixup_init = work_fixup_init, |
| 399 | .fixup_activate = work_fixup_activate, |
| 400 | .fixup_free = work_fixup_free, |
| 401 | }; |
| 402 | |
| 403 | static inline void debug_work_activate(struct work_struct *work) |
| 404 | { |
| 405 | debug_object_activate(work, &work_debug_descr); |
| 406 | } |
| 407 | |
| 408 | static inline void debug_work_deactivate(struct work_struct *work) |
| 409 | { |
| 410 | debug_object_deactivate(work, &work_debug_descr); |
| 411 | } |
| 412 | |
| 413 | void __init_work(struct work_struct *work, int onstack) |
| 414 | { |
| 415 | if (onstack) |
| 416 | debug_object_init_on_stack(work, &work_debug_descr); |
| 417 | else |
| 418 | debug_object_init(work, &work_debug_descr); |
| 419 | } |
| 420 | EXPORT_SYMBOL_GPL(__init_work); |
| 421 | |
| 422 | void destroy_work_on_stack(struct work_struct *work) |
| 423 | { |
| 424 | debug_object_free(work, &work_debug_descr); |
| 425 | } |
| 426 | EXPORT_SYMBOL_GPL(destroy_work_on_stack); |
| 427 | |
| 428 | #else |
| 429 | static inline void debug_work_activate(struct work_struct *work) { } |
| 430 | static inline void debug_work_deactivate(struct work_struct *work) { } |
| 431 | #endif |
| 432 | |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 433 | /* Serializes the accesses to the list of workqueues. */ |
| 434 | static DEFINE_SPINLOCK(workqueue_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | static LIST_HEAD(workqueues); |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 436 | static bool workqueue_freezing; /* W: have wqs started freezing? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | |
Oleg Nesterov | 1444196 | 2007-05-23 13:57:57 -0700 | [diff] [blame] | 438 | /* |
Tejun Heo | e19e397 | 2013-01-24 11:39:44 -0800 | [diff] [blame] | 439 | * The CPU and unbound standard worker pools. The unbound ones have |
| 440 | * POOL_DISASSOCIATED set, and their workers have WORKER_UNBOUND set. |
Oleg Nesterov | 1444196 | 2007-05-23 13:57:57 -0700 | [diff] [blame] | 441 | */ |
Tejun Heo | e19e397 | 2013-01-24 11:39:44 -0800 | [diff] [blame] | 442 | static DEFINE_PER_CPU_SHARED_ALIGNED(struct worker_pool [NR_STD_WORKER_POOLS], |
| 443 | cpu_std_worker_pools); |
Tejun Heo | a60dc39 | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 444 | static struct worker_pool unbound_std_worker_pools[NR_STD_WORKER_POOLS]; |
Tejun Heo | f342179 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 445 | |
Tejun Heo | fa1b54e | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 446 | /* |
| 447 | * idr of all pools. Modifications are protected by workqueue_lock. Read |
| 448 | * accesses are protected by sched-RCU protected. |
| 449 | */ |
Tejun Heo | 9daf9e6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 450 | static DEFINE_IDR(worker_pool_idr); |
| 451 | |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 452 | static int worker_thread(void *__worker); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | |
Tejun Heo | a60dc39 | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 454 | static struct worker_pool *std_worker_pools(int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | { |
Tejun Heo | f342179 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 456 | if (cpu != WORK_CPU_UNBOUND) |
Tejun Heo | a60dc39 | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 457 | return per_cpu(cpu_std_worker_pools, cpu); |
Tejun Heo | f342179 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 458 | else |
Tejun Heo | a60dc39 | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 459 | return unbound_std_worker_pools; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | } |
| 461 | |
Tejun Heo | 4e8f0a6 | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 462 | static int std_worker_pool_pri(struct worker_pool *pool) |
| 463 | { |
Tejun Heo | a60dc39 | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 464 | return pool - std_worker_pools(pool->cpu); |
Tejun Heo | 4e8f0a6 | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 465 | } |
| 466 | |
Tejun Heo | 9daf9e6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 467 | /* allocate ID and assign it to @pool */ |
| 468 | static int worker_pool_assign_id(struct worker_pool *pool) |
| 469 | { |
| 470 | int ret; |
| 471 | |
Tejun Heo | fa1b54e | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 472 | do { |
| 473 | if (!idr_pre_get(&worker_pool_idr, GFP_KERNEL)) |
| 474 | return -ENOMEM; |
| 475 | |
| 476 | spin_lock_irq(&workqueue_lock); |
| 477 | ret = idr_get_new(&worker_pool_idr, pool, &pool->id); |
| 478 | spin_unlock_irq(&workqueue_lock); |
| 479 | } while (ret == -EAGAIN); |
Tejun Heo | 9daf9e6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 480 | |
| 481 | return ret; |
| 482 | } |
| 483 | |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 484 | static struct worker_pool *get_std_worker_pool(int cpu, bool highpri) |
| 485 | { |
Tejun Heo | a60dc39 | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 486 | struct worker_pool *pools = std_worker_pools(cpu); |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 487 | |
Tejun Heo | a60dc39 | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 488 | return &pools[highpri]; |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 489 | } |
| 490 | |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 491 | /** |
| 492 | * first_pwq - return the first pool_workqueue of the specified workqueue |
| 493 | * @wq: the target workqueue |
| 494 | * |
| 495 | * This must be called either with workqueue_lock held or sched RCU read |
| 496 | * locked. If the pwq needs to be used beyond the locking in effect, the |
| 497 | * caller is responsible for guaranteeing that the pwq stays online. |
| 498 | */ |
Tejun Heo | 7fb98ea | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 499 | static struct pool_workqueue *first_pwq(struct workqueue_struct *wq) |
Oleg Nesterov | a848e3b | 2007-05-09 02:34:17 -0700 | [diff] [blame] | 500 | { |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 501 | assert_rcu_or_wq_lock(); |
| 502 | return list_first_or_null_rcu(&wq->pwqs, struct pool_workqueue, |
| 503 | pwqs_node); |
Oleg Nesterov | a848e3b | 2007-05-09 02:34:17 -0700 | [diff] [blame] | 504 | } |
| 505 | |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 506 | static unsigned int work_color_to_flags(int color) |
| 507 | { |
| 508 | return color << WORK_STRUCT_COLOR_SHIFT; |
| 509 | } |
| 510 | |
| 511 | static int get_work_color(struct work_struct *work) |
| 512 | { |
| 513 | return (*work_data_bits(work) >> WORK_STRUCT_COLOR_SHIFT) & |
| 514 | ((1 << WORK_STRUCT_COLOR_BITS) - 1); |
| 515 | } |
| 516 | |
| 517 | static int work_next_color(int color) |
| 518 | { |
| 519 | return (color + 1) % WORK_NR_COLORS; |
Oleg Nesterov | b1f4ec1 | 2007-05-09 02:34:12 -0700 | [diff] [blame] | 520 | } |
| 521 | |
David Howells | 4594bf1 | 2006-12-07 11:33:26 +0000 | [diff] [blame] | 522 | /* |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 523 | * While queued, %WORK_STRUCT_PWQ is set and non flag bits of a work's data |
| 524 | * contain the pointer to the queued pwq. Once execution starts, the flag |
Tejun Heo | 7c3eed5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 525 | * is cleared and the high bits contain OFFQ flags and pool ID. |
Tejun Heo | 7a22ad7 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 526 | * |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 527 | * set_work_pwq(), set_work_pool_and_clear_pending(), mark_work_canceling() |
| 528 | * and clear_work_data() can be used to set the pwq, pool or clear |
Tejun Heo | bbb68df | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 529 | * work->data. These functions should only be called while the work is |
| 530 | * owned - ie. while the PENDING bit is set. |
Tejun Heo | 7a22ad7 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 531 | * |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 532 | * get_work_pool() and get_work_pwq() can be used to obtain the pool or pwq |
Tejun Heo | 7c3eed5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 533 | * corresponding to a work. Pool is available once the work has been |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 534 | * queued anywhere after initialization until it is sync canceled. pwq is |
Tejun Heo | 7c3eed5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 535 | * available only while the work item is queued. |
Tejun Heo | bbb68df | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 536 | * |
| 537 | * %WORK_OFFQ_CANCELING is used to mark a work item which is being |
| 538 | * canceled. While being canceled, a work item may have its PENDING set |
| 539 | * but stay off timer and worklist for arbitrarily long and nobody should |
| 540 | * try to steal the PENDING bit. |
David Howells | 4594bf1 | 2006-12-07 11:33:26 +0000 | [diff] [blame] | 541 | */ |
Tejun Heo | 7a22ad7 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 542 | static inline void set_work_data(struct work_struct *work, unsigned long data, |
| 543 | unsigned long flags) |
David Howells | 365970a | 2006-11-22 14:54:49 +0000 | [diff] [blame] | 544 | { |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 545 | WARN_ON_ONCE(!work_pending(work)); |
Tejun Heo | 7a22ad7 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 546 | atomic_long_set(&work->data, data | flags | work_static(work)); |
David Howells | 365970a | 2006-11-22 14:54:49 +0000 | [diff] [blame] | 547 | } |
David Howells | 365970a | 2006-11-22 14:54:49 +0000 | [diff] [blame] | 548 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 549 | static void set_work_pwq(struct work_struct *work, struct pool_workqueue *pwq, |
Tejun Heo | 7a22ad7 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 550 | unsigned long extra_flags) |
Oleg Nesterov | 4d707b9 | 2010-04-23 17:40:40 +0200 | [diff] [blame] | 551 | { |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 552 | set_work_data(work, (unsigned long)pwq, |
| 553 | WORK_STRUCT_PENDING | WORK_STRUCT_PWQ | extra_flags); |
Oleg Nesterov | 4d707b9 | 2010-04-23 17:40:40 +0200 | [diff] [blame] | 554 | } |
| 555 | |
Lai Jiangshan | 4468a00 | 2013-02-06 18:04:53 -0800 | [diff] [blame] | 556 | static void set_work_pool_and_keep_pending(struct work_struct *work, |
| 557 | int pool_id) |
| 558 | { |
| 559 | set_work_data(work, (unsigned long)pool_id << WORK_OFFQ_POOL_SHIFT, |
| 560 | WORK_STRUCT_PENDING); |
| 561 | } |
| 562 | |
Tejun Heo | 7c3eed5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 563 | static void set_work_pool_and_clear_pending(struct work_struct *work, |
| 564 | int pool_id) |
David Howells | 365970a | 2006-11-22 14:54:49 +0000 | [diff] [blame] | 565 | { |
Tejun Heo | 23657bb | 2012-08-13 17:08:19 -0700 | [diff] [blame] | 566 | /* |
| 567 | * The following wmb is paired with the implied mb in |
| 568 | * test_and_set_bit(PENDING) and ensures all updates to @work made |
| 569 | * here are visible to and precede any updates by the next PENDING |
| 570 | * owner. |
| 571 | */ |
| 572 | smp_wmb(); |
Tejun Heo | 7c3eed5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 573 | set_work_data(work, (unsigned long)pool_id << WORK_OFFQ_POOL_SHIFT, 0); |
Tejun Heo | 7a22ad7 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 574 | } |
| 575 | |
| 576 | static void clear_work_data(struct work_struct *work) |
| 577 | { |
Tejun Heo | 7c3eed5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 578 | smp_wmb(); /* see set_work_pool_and_clear_pending() */ |
| 579 | set_work_data(work, WORK_STRUCT_NO_POOL, 0); |
Tejun Heo | 7a22ad7 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 580 | } |
| 581 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 582 | static struct pool_workqueue *get_work_pwq(struct work_struct *work) |
Tejun Heo | 7a22ad7 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 583 | { |
Tejun Heo | e120153 | 2010-07-22 14:14:25 +0200 | [diff] [blame] | 584 | unsigned long data = atomic_long_read(&work->data); |
Tejun Heo | 7a22ad7 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 585 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 586 | if (data & WORK_STRUCT_PWQ) |
Tejun Heo | e120153 | 2010-07-22 14:14:25 +0200 | [diff] [blame] | 587 | return (void *)(data & WORK_STRUCT_WQ_DATA_MASK); |
| 588 | else |
| 589 | return NULL; |
Tejun Heo | 7a22ad7 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 590 | } |
| 591 | |
Tejun Heo | 7c3eed5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 592 | /** |
| 593 | * get_work_pool - return the worker_pool a given work was associated with |
| 594 | * @work: the work item of interest |
| 595 | * |
| 596 | * Return the worker_pool @work was last associated with. %NULL if none. |
Tejun Heo | fa1b54e | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 597 | * |
| 598 | * Pools are created and destroyed under workqueue_lock, and allows read |
| 599 | * access under sched-RCU read lock. As such, this function should be |
| 600 | * called under workqueue_lock or with preemption disabled. |
| 601 | * |
| 602 | * All fields of the returned pool are accessible as long as the above |
| 603 | * mentioned locking is in effect. If the returned pool needs to be used |
| 604 | * beyond the critical section, the caller is responsible for ensuring the |
| 605 | * returned pool is and stays online. |
Tejun Heo | 7c3eed5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 606 | */ |
| 607 | static struct worker_pool *get_work_pool(struct work_struct *work) |
Tejun Heo | 7a22ad7 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 608 | { |
Tejun Heo | e120153 | 2010-07-22 14:14:25 +0200 | [diff] [blame] | 609 | unsigned long data = atomic_long_read(&work->data); |
Tejun Heo | 7c3eed5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 610 | int pool_id; |
Tejun Heo | 7a22ad7 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 611 | |
Tejun Heo | fa1b54e | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 612 | assert_rcu_or_wq_lock(); |
| 613 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 614 | if (data & WORK_STRUCT_PWQ) |
| 615 | return ((struct pool_workqueue *) |
Tejun Heo | 7c3eed5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 616 | (data & WORK_STRUCT_WQ_DATA_MASK))->pool; |
Tejun Heo | 7a22ad7 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 617 | |
Tejun Heo | 7c3eed5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 618 | pool_id = data >> WORK_OFFQ_POOL_SHIFT; |
| 619 | if (pool_id == WORK_OFFQ_POOL_NONE) |
Tejun Heo | 7a22ad7 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 620 | return NULL; |
| 621 | |
Tejun Heo | fa1b54e | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 622 | return idr_find(&worker_pool_idr, pool_id); |
Tejun Heo | 7c3eed5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 623 | } |
| 624 | |
| 625 | /** |
| 626 | * get_work_pool_id - return the worker pool ID a given work is associated with |
| 627 | * @work: the work item of interest |
| 628 | * |
| 629 | * Return the worker_pool ID @work was last associated with. |
| 630 | * %WORK_OFFQ_POOL_NONE if none. |
| 631 | */ |
| 632 | static int get_work_pool_id(struct work_struct *work) |
| 633 | { |
Lai Jiangshan | 54d5b7d | 2013-02-07 13:14:20 -0800 | [diff] [blame] | 634 | unsigned long data = atomic_long_read(&work->data); |
Tejun Heo | 7c3eed5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 635 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 636 | if (data & WORK_STRUCT_PWQ) |
| 637 | return ((struct pool_workqueue *) |
Lai Jiangshan | 54d5b7d | 2013-02-07 13:14:20 -0800 | [diff] [blame] | 638 | (data & WORK_STRUCT_WQ_DATA_MASK))->pool->id; |
| 639 | |
| 640 | return data >> WORK_OFFQ_POOL_SHIFT; |
Tejun Heo | 7c3eed5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 641 | } |
| 642 | |
Tejun Heo | bbb68df | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 643 | static void mark_work_canceling(struct work_struct *work) |
| 644 | { |
Tejun Heo | 7c3eed5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 645 | unsigned long pool_id = get_work_pool_id(work); |
Tejun Heo | bbb68df | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 646 | |
Tejun Heo | 7c3eed5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 647 | pool_id <<= WORK_OFFQ_POOL_SHIFT; |
| 648 | set_work_data(work, pool_id | WORK_OFFQ_CANCELING, WORK_STRUCT_PENDING); |
Tejun Heo | bbb68df | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 649 | } |
| 650 | |
| 651 | static bool work_is_canceling(struct work_struct *work) |
| 652 | { |
| 653 | unsigned long data = atomic_long_read(&work->data); |
| 654 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 655 | return !(data & WORK_STRUCT_PWQ) && (data & WORK_OFFQ_CANCELING); |
Tejun Heo | bbb68df | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 656 | } |
| 657 | |
David Howells | 365970a | 2006-11-22 14:54:49 +0000 | [diff] [blame] | 658 | /* |
Tejun Heo | 3270476 | 2012-07-13 22:16:45 -0700 | [diff] [blame] | 659 | * Policy functions. These define the policies on how the global worker |
| 660 | * pools are managed. Unless noted otherwise, these functions assume that |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 661 | * they're being called with pool->lock held. |
David Howells | 365970a | 2006-11-22 14:54:49 +0000 | [diff] [blame] | 662 | */ |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 663 | |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 664 | static bool __need_more_worker(struct worker_pool *pool) |
David Howells | 365970a | 2006-11-22 14:54:49 +0000 | [diff] [blame] | 665 | { |
Tejun Heo | e19e397 | 2013-01-24 11:39:44 -0800 | [diff] [blame] | 666 | return !atomic_read(&pool->nr_running); |
David Howells | 365970a | 2006-11-22 14:54:49 +0000 | [diff] [blame] | 667 | } |
| 668 | |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 669 | /* |
| 670 | * Need to wake up a worker? Called from anything but currently |
| 671 | * running workers. |
Tejun Heo | 974271c | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 672 | * |
| 673 | * Note that, because unbound workers never contribute to nr_running, this |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 674 | * function will always return %true for unbound pools as long as the |
Tejun Heo | 974271c | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 675 | * worklist isn't empty. |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 676 | */ |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 677 | static bool need_more_worker(struct worker_pool *pool) |
David Howells | 365970a | 2006-11-22 14:54:49 +0000 | [diff] [blame] | 678 | { |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 679 | return !list_empty(&pool->worklist) && __need_more_worker(pool); |
David Howells | 365970a | 2006-11-22 14:54:49 +0000 | [diff] [blame] | 680 | } |
| 681 | |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 682 | /* Can I start working? Called from busy but !running workers. */ |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 683 | static bool may_start_working(struct worker_pool *pool) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 684 | { |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 685 | return pool->nr_idle; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 686 | } |
| 687 | |
| 688 | /* Do I need to keep working? Called from currently running workers. */ |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 689 | static bool keep_working(struct worker_pool *pool) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 690 | { |
Tejun Heo | e19e397 | 2013-01-24 11:39:44 -0800 | [diff] [blame] | 691 | return !list_empty(&pool->worklist) && |
| 692 | atomic_read(&pool->nr_running) <= 1; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 693 | } |
| 694 | |
| 695 | /* Do we need a new worker? Called from manager. */ |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 696 | static bool need_to_create_worker(struct worker_pool *pool) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 697 | { |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 698 | return need_more_worker(pool) && !may_start_working(pool); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 699 | } |
| 700 | |
| 701 | /* Do I need to be the manager? */ |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 702 | static bool need_to_manage_workers(struct worker_pool *pool) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 703 | { |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 704 | return need_to_create_worker(pool) || |
Tejun Heo | 11ebea5 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 705 | (pool->flags & POOL_MANAGE_WORKERS); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 706 | } |
| 707 | |
| 708 | /* Do we have too many workers and should some go away? */ |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 709 | static bool too_many_workers(struct worker_pool *pool) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 710 | { |
Tejun Heo | 34a06bd | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 711 | bool managing = mutex_is_locked(&pool->manager_arb); |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 712 | int nr_idle = pool->nr_idle + managing; /* manager is considered idle */ |
| 713 | int nr_busy = pool->nr_workers - nr_idle; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 714 | |
Lai Jiangshan | ea1abd6 | 2012-09-18 09:59:22 -0700 | [diff] [blame] | 715 | /* |
| 716 | * nr_idle and idle_list may disagree if idle rebinding is in |
| 717 | * progress. Never return %true if idle_list is empty. |
| 718 | */ |
| 719 | if (list_empty(&pool->idle_list)) |
| 720 | return false; |
| 721 | |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 722 | return nr_idle > 2 && (nr_idle - 2) * MAX_IDLE_WORKERS_RATIO >= nr_busy; |
| 723 | } |
| 724 | |
| 725 | /* |
| 726 | * Wake up functions. |
| 727 | */ |
| 728 | |
Tejun Heo | 7e11629 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 729 | /* Return the first worker. Safe with preemption disabled */ |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 730 | static struct worker *first_worker(struct worker_pool *pool) |
Tejun Heo | 7e11629 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 731 | { |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 732 | if (unlikely(list_empty(&pool->idle_list))) |
Tejun Heo | 7e11629 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 733 | return NULL; |
| 734 | |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 735 | return list_first_entry(&pool->idle_list, struct worker, entry); |
Tejun Heo | 7e11629 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 736 | } |
| 737 | |
| 738 | /** |
| 739 | * wake_up_worker - wake up an idle worker |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 740 | * @pool: worker pool to wake worker from |
Tejun Heo | 7e11629 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 741 | * |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 742 | * Wake up the first idle worker of @pool. |
Tejun Heo | 7e11629 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 743 | * |
| 744 | * CONTEXT: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 745 | * spin_lock_irq(pool->lock). |
Tejun Heo | 7e11629 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 746 | */ |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 747 | static void wake_up_worker(struct worker_pool *pool) |
Tejun Heo | 7e11629 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 748 | { |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 749 | struct worker *worker = first_worker(pool); |
Tejun Heo | 7e11629 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 750 | |
| 751 | if (likely(worker)) |
| 752 | wake_up_process(worker->task); |
| 753 | } |
| 754 | |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 755 | /** |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 756 | * wq_worker_waking_up - a worker is waking up |
| 757 | * @task: task waking up |
| 758 | * @cpu: CPU @task is waking up to |
| 759 | * |
| 760 | * This function is called during try_to_wake_up() when a worker is |
| 761 | * being awoken. |
| 762 | * |
| 763 | * CONTEXT: |
| 764 | * spin_lock_irq(rq->lock) |
| 765 | */ |
Tejun Heo | d84ff05 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 766 | void wq_worker_waking_up(struct task_struct *task, int cpu) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 767 | { |
| 768 | struct worker *worker = kthread_data(task); |
| 769 | |
Joonsoo Kim | 3657600 | 2012-10-26 23:03:49 +0900 | [diff] [blame] | 770 | if (!(worker->flags & WORKER_NOT_RUNNING)) { |
Tejun Heo | ec22ca5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 771 | WARN_ON_ONCE(worker->pool->cpu != cpu); |
Tejun Heo | e19e397 | 2013-01-24 11:39:44 -0800 | [diff] [blame] | 772 | atomic_inc(&worker->pool->nr_running); |
Joonsoo Kim | 3657600 | 2012-10-26 23:03:49 +0900 | [diff] [blame] | 773 | } |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 774 | } |
| 775 | |
| 776 | /** |
| 777 | * wq_worker_sleeping - a worker is going to sleep |
| 778 | * @task: task going to sleep |
| 779 | * @cpu: CPU in question, must be the current CPU number |
| 780 | * |
| 781 | * This function is called during schedule() when a busy worker is |
| 782 | * going to sleep. Worker on the same cpu can be woken up by |
| 783 | * returning pointer to its task. |
| 784 | * |
| 785 | * CONTEXT: |
| 786 | * spin_lock_irq(rq->lock) |
| 787 | * |
| 788 | * RETURNS: |
| 789 | * Worker task on @cpu to wake up, %NULL if none. |
| 790 | */ |
Tejun Heo | d84ff05 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 791 | struct task_struct *wq_worker_sleeping(struct task_struct *task, int cpu) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 792 | { |
| 793 | struct worker *worker = kthread_data(task), *to_wakeup = NULL; |
Tejun Heo | 111c225 | 2013-01-17 17:16:24 -0800 | [diff] [blame] | 794 | struct worker_pool *pool; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 795 | |
Tejun Heo | 111c225 | 2013-01-17 17:16:24 -0800 | [diff] [blame] | 796 | /* |
| 797 | * Rescuers, which may not have all the fields set up like normal |
| 798 | * workers, also reach here, let's not access anything before |
| 799 | * checking NOT_RUNNING. |
| 800 | */ |
Steven Rostedt | 2d64672 | 2010-12-03 23:12:33 -0500 | [diff] [blame] | 801 | if (worker->flags & WORKER_NOT_RUNNING) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 802 | return NULL; |
| 803 | |
Tejun Heo | 111c225 | 2013-01-17 17:16:24 -0800 | [diff] [blame] | 804 | pool = worker->pool; |
Tejun Heo | 111c225 | 2013-01-17 17:16:24 -0800 | [diff] [blame] | 805 | |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 806 | /* this can only happen on the local cpu */ |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 807 | if (WARN_ON_ONCE(cpu != raw_smp_processor_id())) |
| 808 | return NULL; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 809 | |
| 810 | /* |
| 811 | * The counterpart of the following dec_and_test, implied mb, |
| 812 | * worklist not empty test sequence is in insert_work(). |
| 813 | * Please read comment there. |
| 814 | * |
Tejun Heo | 628c78e | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 815 | * NOT_RUNNING is clear. This means that we're bound to and |
| 816 | * running on the local cpu w/ rq lock held and preemption |
| 817 | * disabled, which in turn means that none else could be |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 818 | * manipulating idle_list, so dereferencing idle_list without pool |
Tejun Heo | 628c78e | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 819 | * lock is safe. |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 820 | */ |
Tejun Heo | e19e397 | 2013-01-24 11:39:44 -0800 | [diff] [blame] | 821 | if (atomic_dec_and_test(&pool->nr_running) && |
| 822 | !list_empty(&pool->worklist)) |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 823 | to_wakeup = first_worker(pool); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 824 | return to_wakeup ? to_wakeup->task : NULL; |
| 825 | } |
| 826 | |
| 827 | /** |
| 828 | * worker_set_flags - set worker flags and adjust nr_running accordingly |
Tejun Heo | cb44476 | 2010-07-02 10:03:50 +0200 | [diff] [blame] | 829 | * @worker: self |
Tejun Heo | d302f01 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 830 | * @flags: flags to set |
| 831 | * @wakeup: wakeup an idle worker if necessary |
| 832 | * |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 833 | * Set @flags in @worker->flags and adjust nr_running accordingly. If |
| 834 | * nr_running becomes zero and @wakeup is %true, an idle worker is |
| 835 | * woken up. |
Tejun Heo | d302f01 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 836 | * |
Tejun Heo | cb44476 | 2010-07-02 10:03:50 +0200 | [diff] [blame] | 837 | * CONTEXT: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 838 | * spin_lock_irq(pool->lock) |
Tejun Heo | d302f01 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 839 | */ |
| 840 | static inline void worker_set_flags(struct worker *worker, unsigned int flags, |
| 841 | bool wakeup) |
| 842 | { |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 843 | struct worker_pool *pool = worker->pool; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 844 | |
Tejun Heo | cb44476 | 2010-07-02 10:03:50 +0200 | [diff] [blame] | 845 | WARN_ON_ONCE(worker->task != current); |
| 846 | |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 847 | /* |
| 848 | * If transitioning into NOT_RUNNING, adjust nr_running and |
| 849 | * wake up an idle worker as necessary if requested by |
| 850 | * @wakeup. |
| 851 | */ |
| 852 | if ((flags & WORKER_NOT_RUNNING) && |
| 853 | !(worker->flags & WORKER_NOT_RUNNING)) { |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 854 | if (wakeup) { |
Tejun Heo | e19e397 | 2013-01-24 11:39:44 -0800 | [diff] [blame] | 855 | if (atomic_dec_and_test(&pool->nr_running) && |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 856 | !list_empty(&pool->worklist)) |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 857 | wake_up_worker(pool); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 858 | } else |
Tejun Heo | e19e397 | 2013-01-24 11:39:44 -0800 | [diff] [blame] | 859 | atomic_dec(&pool->nr_running); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 860 | } |
| 861 | |
Tejun Heo | d302f01 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 862 | worker->flags |= flags; |
| 863 | } |
| 864 | |
| 865 | /** |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 866 | * worker_clr_flags - clear worker flags and adjust nr_running accordingly |
Tejun Heo | cb44476 | 2010-07-02 10:03:50 +0200 | [diff] [blame] | 867 | * @worker: self |
Tejun Heo | d302f01 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 868 | * @flags: flags to clear |
| 869 | * |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 870 | * Clear @flags in @worker->flags and adjust nr_running accordingly. |
Tejun Heo | d302f01 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 871 | * |
Tejun Heo | cb44476 | 2010-07-02 10:03:50 +0200 | [diff] [blame] | 872 | * CONTEXT: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 873 | * spin_lock_irq(pool->lock) |
Tejun Heo | d302f01 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 874 | */ |
| 875 | static inline void worker_clr_flags(struct worker *worker, unsigned int flags) |
| 876 | { |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 877 | struct worker_pool *pool = worker->pool; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 878 | unsigned int oflags = worker->flags; |
| 879 | |
Tejun Heo | cb44476 | 2010-07-02 10:03:50 +0200 | [diff] [blame] | 880 | WARN_ON_ONCE(worker->task != current); |
| 881 | |
Tejun Heo | d302f01 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 882 | worker->flags &= ~flags; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 883 | |
Tejun Heo | 42c025f | 2011-01-11 15:58:49 +0100 | [diff] [blame] | 884 | /* |
| 885 | * If transitioning out of NOT_RUNNING, increment nr_running. Note |
| 886 | * that the nested NOT_RUNNING is not a noop. NOT_RUNNING is mask |
| 887 | * of multiple flags, not a single flag. |
| 888 | */ |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 889 | if ((flags & WORKER_NOT_RUNNING) && (oflags & WORKER_NOT_RUNNING)) |
| 890 | if (!(worker->flags & WORKER_NOT_RUNNING)) |
Tejun Heo | e19e397 | 2013-01-24 11:39:44 -0800 | [diff] [blame] | 891 | atomic_inc(&pool->nr_running); |
Tejun Heo | d302f01 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 892 | } |
| 893 | |
| 894 | /** |
Tejun Heo | 8cca0ee | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 895 | * find_worker_executing_work - find worker which is executing a work |
Tejun Heo | c9e7cf2 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 896 | * @pool: pool of interest |
Tejun Heo | 8cca0ee | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 897 | * @work: work to find worker for |
| 898 | * |
Tejun Heo | c9e7cf2 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 899 | * Find a worker which is executing @work on @pool by searching |
| 900 | * @pool->busy_hash which is keyed by the address of @work. For a worker |
Tejun Heo | a2c1c57 | 2012-12-18 10:35:02 -0800 | [diff] [blame] | 901 | * to match, its current execution should match the address of @work and |
| 902 | * its work function. This is to avoid unwanted dependency between |
| 903 | * unrelated work executions through a work item being recycled while still |
| 904 | * being executed. |
| 905 | * |
| 906 | * This is a bit tricky. A work item may be freed once its execution |
| 907 | * starts and nothing prevents the freed area from being recycled for |
| 908 | * another work item. If the same work item address ends up being reused |
| 909 | * before the original execution finishes, workqueue will identify the |
| 910 | * recycled work item as currently executing and make it wait until the |
| 911 | * current execution finishes, introducing an unwanted dependency. |
| 912 | * |
| 913 | * This function checks the work item address, work function and workqueue |
| 914 | * to avoid false positives. Note that this isn't complete as one may |
| 915 | * construct a work function which can introduce dependency onto itself |
| 916 | * through a recycled work item. Well, if somebody wants to shoot oneself |
| 917 | * in the foot that badly, there's only so much we can do, and if such |
| 918 | * deadlock actually occurs, it should be easy to locate the culprit work |
| 919 | * function. |
Tejun Heo | 8cca0ee | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 920 | * |
| 921 | * CONTEXT: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 922 | * spin_lock_irq(pool->lock). |
Tejun Heo | 8cca0ee | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 923 | * |
| 924 | * RETURNS: |
| 925 | * Pointer to worker which is executing @work if found, NULL |
| 926 | * otherwise. |
| 927 | */ |
Tejun Heo | c9e7cf2 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 928 | static struct worker *find_worker_executing_work(struct worker_pool *pool, |
Tejun Heo | 8cca0ee | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 929 | struct work_struct *work) |
| 930 | { |
Sasha Levin | 42f8570 | 2012-12-17 10:01:23 -0500 | [diff] [blame] | 931 | struct worker *worker; |
Sasha Levin | 42f8570 | 2012-12-17 10:01:23 -0500 | [diff] [blame] | 932 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 933 | hash_for_each_possible(pool->busy_hash, worker, hentry, |
Tejun Heo | a2c1c57 | 2012-12-18 10:35:02 -0800 | [diff] [blame] | 934 | (unsigned long)work) |
| 935 | if (worker->current_work == work && |
| 936 | worker->current_func == work->func) |
Sasha Levin | 42f8570 | 2012-12-17 10:01:23 -0500 | [diff] [blame] | 937 | return worker; |
| 938 | |
| 939 | return NULL; |
Tejun Heo | 8cca0ee | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 940 | } |
| 941 | |
| 942 | /** |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 943 | * move_linked_works - move linked works to a list |
| 944 | * @work: start of series of works to be scheduled |
| 945 | * @head: target list to append @work to |
| 946 | * @nextp: out paramter for nested worklist walking |
| 947 | * |
| 948 | * Schedule linked works starting from @work to @head. Work series to |
| 949 | * be scheduled starts at @work and includes any consecutive work with |
| 950 | * WORK_STRUCT_LINKED set in its predecessor. |
| 951 | * |
| 952 | * If @nextp is not NULL, it's updated to point to the next work of |
| 953 | * the last scheduled work. This allows move_linked_works() to be |
| 954 | * nested inside outer list_for_each_entry_safe(). |
| 955 | * |
| 956 | * CONTEXT: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 957 | * spin_lock_irq(pool->lock). |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 958 | */ |
| 959 | static void move_linked_works(struct work_struct *work, struct list_head *head, |
| 960 | struct work_struct **nextp) |
| 961 | { |
| 962 | struct work_struct *n; |
| 963 | |
| 964 | /* |
| 965 | * Linked worklist will always end before the end of the list, |
| 966 | * use NULL for list head. |
| 967 | */ |
| 968 | list_for_each_entry_safe_from(work, n, NULL, entry) { |
| 969 | list_move_tail(&work->entry, head); |
| 970 | if (!(*work_data_bits(work) & WORK_STRUCT_LINKED)) |
| 971 | break; |
| 972 | } |
| 973 | |
| 974 | /* |
| 975 | * If we're already inside safe list traversal and have moved |
| 976 | * multiple works to the scheduled queue, the next position |
| 977 | * needs to be updated. |
| 978 | */ |
| 979 | if (nextp) |
| 980 | *nextp = n; |
| 981 | } |
| 982 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 983 | static void pwq_activate_delayed_work(struct work_struct *work) |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 984 | { |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 985 | struct pool_workqueue *pwq = get_work_pwq(work); |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 986 | |
| 987 | trace_workqueue_activate_work(work); |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 988 | move_linked_works(work, &pwq->pool->worklist, NULL); |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 989 | __clear_bit(WORK_STRUCT_DELAYED_BIT, work_data_bits(work)); |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 990 | pwq->nr_active++; |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 991 | } |
| 992 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 993 | static void pwq_activate_first_delayed(struct pool_workqueue *pwq) |
Lai Jiangshan | 3aa6249 | 2012-09-18 10:40:00 -0700 | [diff] [blame] | 994 | { |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 995 | struct work_struct *work = list_first_entry(&pwq->delayed_works, |
Lai Jiangshan | 3aa6249 | 2012-09-18 10:40:00 -0700 | [diff] [blame] | 996 | struct work_struct, entry); |
| 997 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 998 | pwq_activate_delayed_work(work); |
Lai Jiangshan | 3aa6249 | 2012-09-18 10:40:00 -0700 | [diff] [blame] | 999 | } |
| 1000 | |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1001 | /** |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1002 | * pwq_dec_nr_in_flight - decrement pwq's nr_in_flight |
| 1003 | * @pwq: pwq of interest |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1004 | * @color: color of work which left the queue |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1005 | * |
| 1006 | * A work either has completed or is removed from pending queue, |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1007 | * decrement nr_in_flight of its pwq and handle workqueue flushing. |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1008 | * |
| 1009 | * CONTEXT: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1010 | * spin_lock_irq(pool->lock). |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1011 | */ |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1012 | static void pwq_dec_nr_in_flight(struct pool_workqueue *pwq, int color) |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1013 | { |
| 1014 | /* ignore uncolored works */ |
| 1015 | if (color == WORK_NO_COLOR) |
| 1016 | return; |
| 1017 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1018 | pwq->nr_in_flight[color]--; |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1019 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1020 | pwq->nr_active--; |
| 1021 | if (!list_empty(&pwq->delayed_works)) { |
Lai Jiangshan | b3f9f40 | 2012-09-18 10:40:00 -0700 | [diff] [blame] | 1022 | /* one down, submit a delayed one */ |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1023 | if (pwq->nr_active < pwq->max_active) |
| 1024 | pwq_activate_first_delayed(pwq); |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1025 | } |
| 1026 | |
| 1027 | /* is flush in progress and are we at the flushing tip? */ |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1028 | if (likely(pwq->flush_color != color)) |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1029 | return; |
| 1030 | |
| 1031 | /* are there still in-flight works? */ |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1032 | if (pwq->nr_in_flight[color]) |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1033 | return; |
| 1034 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1035 | /* this pwq is done, clear flush_color */ |
| 1036 | pwq->flush_color = -1; |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1037 | |
| 1038 | /* |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1039 | * If this was the last pwq, wake up the first flusher. It |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1040 | * will handle the rest. |
| 1041 | */ |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1042 | if (atomic_dec_and_test(&pwq->wq->nr_pwqs_to_flush)) |
| 1043 | complete(&pwq->wq->first_flusher->done); |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1044 | } |
| 1045 | |
Tejun Heo | 36e227d | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1046 | /** |
Tejun Heo | bbb68df | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1047 | * try_to_grab_pending - steal work item from worklist and disable irq |
Tejun Heo | 36e227d | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1048 | * @work: work item to steal |
| 1049 | * @is_dwork: @work is a delayed_work |
Tejun Heo | bbb68df | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1050 | * @flags: place to store irq state |
Tejun Heo | 36e227d | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1051 | * |
| 1052 | * Try to grab PENDING bit of @work. This function can handle @work in any |
| 1053 | * stable state - idle, on timer or on worklist. Return values are |
| 1054 | * |
| 1055 | * 1 if @work was pending and we successfully stole PENDING |
| 1056 | * 0 if @work was idle and we claimed PENDING |
| 1057 | * -EAGAIN if PENDING couldn't be grabbed at the moment, safe to busy-retry |
Tejun Heo | bbb68df | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1058 | * -ENOENT if someone else is canceling @work, this state may persist |
| 1059 | * for arbitrarily long |
Tejun Heo | 36e227d | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1060 | * |
Tejun Heo | bbb68df | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1061 | * On >= 0 return, the caller owns @work's PENDING bit. To avoid getting |
Tejun Heo | e0aecdd | 2012-08-21 13:18:24 -0700 | [diff] [blame] | 1062 | * interrupted while holding PENDING and @work off queue, irq must be |
| 1063 | * disabled on entry. This, combined with delayed_work->timer being |
| 1064 | * irqsafe, ensures that we return -EAGAIN for finite short period of time. |
Tejun Heo | bbb68df | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1065 | * |
| 1066 | * On successful return, >= 0, irq is disabled and the caller is |
| 1067 | * responsible for releasing it using local_irq_restore(*@flags). |
| 1068 | * |
Tejun Heo | e0aecdd | 2012-08-21 13:18:24 -0700 | [diff] [blame] | 1069 | * This function is safe to call from any context including IRQ handler. |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1070 | */ |
Tejun Heo | bbb68df | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1071 | static int try_to_grab_pending(struct work_struct *work, bool is_dwork, |
| 1072 | unsigned long *flags) |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1073 | { |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1074 | struct worker_pool *pool; |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1075 | struct pool_workqueue *pwq; |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1076 | |
Tejun Heo | bbb68df | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1077 | local_irq_save(*flags); |
| 1078 | |
Tejun Heo | 36e227d | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1079 | /* try to steal the timer if it exists */ |
| 1080 | if (is_dwork) { |
| 1081 | struct delayed_work *dwork = to_delayed_work(work); |
| 1082 | |
Tejun Heo | e0aecdd | 2012-08-21 13:18:24 -0700 | [diff] [blame] | 1083 | /* |
| 1084 | * dwork->timer is irqsafe. If del_timer() fails, it's |
| 1085 | * guaranteed that the timer is not queued anywhere and not |
| 1086 | * running on the local CPU. |
| 1087 | */ |
Tejun Heo | 36e227d | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1088 | if (likely(del_timer(&dwork->timer))) |
| 1089 | return 1; |
| 1090 | } |
| 1091 | |
| 1092 | /* try to claim PENDING the normal way */ |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1093 | if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) |
| 1094 | return 0; |
| 1095 | |
| 1096 | /* |
| 1097 | * The queueing is in progress, or it is already queued. Try to |
| 1098 | * steal it from ->worklist without clearing WORK_STRUCT_PENDING. |
| 1099 | */ |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1100 | pool = get_work_pool(work); |
| 1101 | if (!pool) |
Tejun Heo | bbb68df | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1102 | goto fail; |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1103 | |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1104 | spin_lock(&pool->lock); |
Lai Jiangshan | 0b3dae6 | 2013-02-06 18:04:53 -0800 | [diff] [blame] | 1105 | /* |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1106 | * work->data is guaranteed to point to pwq only while the work |
| 1107 | * item is queued on pwq->wq, and both updating work->data to point |
| 1108 | * to pwq on queueing and to pool on dequeueing are done under |
| 1109 | * pwq->pool->lock. This in turn guarantees that, if work->data |
| 1110 | * points to pwq which is associated with a locked pool, the work |
Lai Jiangshan | 0b3dae6 | 2013-02-06 18:04:53 -0800 | [diff] [blame] | 1111 | * item is currently queued on that pool. |
| 1112 | */ |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1113 | pwq = get_work_pwq(work); |
| 1114 | if (pwq && pwq->pool == pool) { |
Tejun Heo | 1606283 | 2013-02-06 18:04:53 -0800 | [diff] [blame] | 1115 | debug_work_deactivate(work); |
Lai Jiangshan | 3aa6249 | 2012-09-18 10:40:00 -0700 | [diff] [blame] | 1116 | |
Tejun Heo | 1606283 | 2013-02-06 18:04:53 -0800 | [diff] [blame] | 1117 | /* |
| 1118 | * A delayed work item cannot be grabbed directly because |
| 1119 | * it might have linked NO_COLOR work items which, if left |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1120 | * on the delayed_list, will confuse pwq->nr_active |
Tejun Heo | 1606283 | 2013-02-06 18:04:53 -0800 | [diff] [blame] | 1121 | * management later on and cause stall. Make sure the work |
| 1122 | * item is activated before grabbing. |
| 1123 | */ |
| 1124 | if (*work_data_bits(work) & WORK_STRUCT_DELAYED) |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1125 | pwq_activate_delayed_work(work); |
Lai Jiangshan | 3aa6249 | 2012-09-18 10:40:00 -0700 | [diff] [blame] | 1126 | |
Tejun Heo | 1606283 | 2013-02-06 18:04:53 -0800 | [diff] [blame] | 1127 | list_del_init(&work->entry); |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1128 | pwq_dec_nr_in_flight(get_work_pwq(work), get_work_color(work)); |
Tejun Heo | 36e227d | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1129 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1130 | /* work->data points to pwq iff queued, point to pool */ |
Tejun Heo | 1606283 | 2013-02-06 18:04:53 -0800 | [diff] [blame] | 1131 | set_work_pool_and_keep_pending(work, pool->id); |
Lai Jiangshan | 4468a00 | 2013-02-06 18:04:53 -0800 | [diff] [blame] | 1132 | |
Tejun Heo | 1606283 | 2013-02-06 18:04:53 -0800 | [diff] [blame] | 1133 | spin_unlock(&pool->lock); |
| 1134 | return 1; |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1135 | } |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1136 | spin_unlock(&pool->lock); |
Tejun Heo | bbb68df | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1137 | fail: |
| 1138 | local_irq_restore(*flags); |
| 1139 | if (work_is_canceling(work)) |
| 1140 | return -ENOENT; |
| 1141 | cpu_relax(); |
Tejun Heo | 36e227d | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1142 | return -EAGAIN; |
Tejun Heo | bf4ede0 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1143 | } |
| 1144 | |
| 1145 | /** |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 1146 | * insert_work - insert a work into a pool |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1147 | * @pwq: pwq @work belongs to |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 1148 | * @work: work to insert |
| 1149 | * @head: insertion point |
| 1150 | * @extra_flags: extra WORK_STRUCT_* flags to set |
| 1151 | * |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1152 | * Insert @work which belongs to @pwq after @head. @extra_flags is or'd to |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 1153 | * work_struct flags. |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 1154 | * |
| 1155 | * CONTEXT: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1156 | * spin_lock_irq(pool->lock). |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 1157 | */ |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1158 | static void insert_work(struct pool_workqueue *pwq, struct work_struct *work, |
| 1159 | struct list_head *head, unsigned int extra_flags) |
Oleg Nesterov | b89deed | 2007-05-09 02:33:52 -0700 | [diff] [blame] | 1160 | { |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1161 | struct worker_pool *pool = pwq->pool; |
Frederic Weisbecker | e1d8aa9 | 2009-01-12 23:15:46 +0100 | [diff] [blame] | 1162 | |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 1163 | /* we own @work, set data and link */ |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1164 | set_work_pwq(work, pwq, extra_flags); |
Oleg Nesterov | 1a4d9b0 | 2008-07-25 01:47:47 -0700 | [diff] [blame] | 1165 | list_add_tail(&work->entry, head); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1166 | |
| 1167 | /* |
| 1168 | * Ensure either worker_sched_deactivated() sees the above |
| 1169 | * list_add_tail() or we see zero nr_running to avoid workers |
| 1170 | * lying around lazily while there are works to be processed. |
| 1171 | */ |
| 1172 | smp_mb(); |
| 1173 | |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1174 | if (__need_more_worker(pool)) |
| 1175 | wake_up_worker(pool); |
Oleg Nesterov | b89deed | 2007-05-09 02:33:52 -0700 | [diff] [blame] | 1176 | } |
| 1177 | |
Tejun Heo | c8efcc2 | 2010-12-20 19:32:04 +0100 | [diff] [blame] | 1178 | /* |
| 1179 | * Test whether @work is being queued from another work executing on the |
Tejun Heo | 8d03ecf | 2013-02-13 19:29:10 -0800 | [diff] [blame] | 1180 | * same workqueue. |
Tejun Heo | c8efcc2 | 2010-12-20 19:32:04 +0100 | [diff] [blame] | 1181 | */ |
| 1182 | static bool is_chained_work(struct workqueue_struct *wq) |
| 1183 | { |
Tejun Heo | 8d03ecf | 2013-02-13 19:29:10 -0800 | [diff] [blame] | 1184 | struct worker *worker; |
Tejun Heo | c8efcc2 | 2010-12-20 19:32:04 +0100 | [diff] [blame] | 1185 | |
Tejun Heo | 8d03ecf | 2013-02-13 19:29:10 -0800 | [diff] [blame] | 1186 | worker = current_wq_worker(); |
| 1187 | /* |
| 1188 | * Return %true iff I'm a worker execuing a work item on @wq. If |
| 1189 | * I'm @worker, it's safe to dereference it without locking. |
| 1190 | */ |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1191 | return worker && worker->current_pwq->wq == wq; |
Tejun Heo | c8efcc2 | 2010-12-20 19:32:04 +0100 | [diff] [blame] | 1192 | } |
| 1193 | |
Tejun Heo | d84ff05 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 1194 | static void __queue_work(int cpu, struct workqueue_struct *wq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | struct work_struct *work) |
| 1196 | { |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1197 | struct pool_workqueue *pwq; |
Tejun Heo | 1e19ffc | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1198 | struct list_head *worklist; |
Tejun Heo | 8a2e8e5d | 2010-08-25 10:33:56 +0200 | [diff] [blame] | 1199 | unsigned int work_flags; |
Joonsoo Kim | b75cac9 | 2012-08-15 23:25:37 +0900 | [diff] [blame] | 1200 | unsigned int req_cpu = cpu; |
Tejun Heo | 8930cab | 2012-08-03 10:30:45 -0700 | [diff] [blame] | 1201 | |
| 1202 | /* |
| 1203 | * While a work item is PENDING && off queue, a task trying to |
| 1204 | * steal the PENDING will busy-loop waiting for it to either get |
| 1205 | * queued or lose PENDING. Grabbing PENDING and queueing should |
| 1206 | * happen with IRQ disabled. |
| 1207 | */ |
| 1208 | WARN_ON_ONCE(!irqs_disabled()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | |
Thomas Gleixner | dc186ad | 2009-11-16 01:09:48 +0900 | [diff] [blame] | 1210 | debug_work_activate(work); |
Tejun Heo | 1e19ffc | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1211 | |
Tejun Heo | c8efcc2 | 2010-12-20 19:32:04 +0100 | [diff] [blame] | 1212 | /* if dying, only works from the same workqueue are allowed */ |
Tejun Heo | 9c5a2ba | 2011-04-05 18:01:44 +0200 | [diff] [blame] | 1213 | if (unlikely(wq->flags & WQ_DRAINING) && |
Tejun Heo | c8efcc2 | 2010-12-20 19:32:04 +0100 | [diff] [blame] | 1214 | WARN_ON_ONCE(!is_chained_work(wq))) |
Tejun Heo | e41e704 | 2010-08-24 14:22:47 +0200 | [diff] [blame] | 1215 | return; |
| 1216 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1217 | /* determine the pwq to use */ |
Tejun Heo | c7fc77f | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 1218 | if (!(wq->flags & WQ_UNBOUND)) { |
Tejun Heo | c9e7cf2 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1219 | struct worker_pool *last_pool; |
Tejun Heo | 18aa9ef | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 1220 | |
Tejun Heo | 5746982 | 2012-08-03 10:30:45 -0700 | [diff] [blame] | 1221 | if (cpu == WORK_CPU_UNBOUND) |
Tejun Heo | c7fc77f | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 1222 | cpu = raw_smp_processor_id(); |
| 1223 | |
Tejun Heo | 18aa9ef | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 1224 | /* |
Tejun Heo | dbf2576 | 2012-08-20 14:51:23 -0700 | [diff] [blame] | 1225 | * It's multi cpu. If @work was previously on a different |
| 1226 | * cpu, it might still be running there, in which case the |
| 1227 | * work needs to be queued on that cpu to guarantee |
| 1228 | * non-reentrancy. |
Tejun Heo | 18aa9ef | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 1229 | */ |
Tejun Heo | 7fb98ea | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 1230 | pwq = per_cpu_ptr(wq->cpu_pwqs, cpu); |
Tejun Heo | c9e7cf2 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1231 | last_pool = get_work_pool(work); |
Tejun Heo | dbf2576 | 2012-08-20 14:51:23 -0700 | [diff] [blame] | 1232 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1233 | if (last_pool && last_pool != pwq->pool) { |
Tejun Heo | 18aa9ef | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 1234 | struct worker *worker; |
| 1235 | |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1236 | spin_lock(&last_pool->lock); |
Tejun Heo | 18aa9ef | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 1237 | |
Tejun Heo | c9e7cf2 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1238 | worker = find_worker_executing_work(last_pool, work); |
Tejun Heo | 18aa9ef | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 1239 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1240 | if (worker && worker->current_pwq->wq == wq) { |
Tejun Heo | 7fb98ea | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 1241 | pwq = per_cpu_ptr(wq->cpu_pwqs, last_pool->cpu); |
Lai Jiangshan | 8594fad | 2013-02-07 13:14:20 -0800 | [diff] [blame] | 1242 | } else { |
Tejun Heo | 18aa9ef | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 1243 | /* meh... not running there, queue here */ |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1244 | spin_unlock(&last_pool->lock); |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1245 | spin_lock(&pwq->pool->lock); |
Tejun Heo | 18aa9ef | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 1246 | } |
Tejun Heo | 8930cab | 2012-08-03 10:30:45 -0700 | [diff] [blame] | 1247 | } else { |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1248 | spin_lock(&pwq->pool->lock); |
Tejun Heo | 8930cab | 2012-08-03 10:30:45 -0700 | [diff] [blame] | 1249 | } |
Tejun Heo | f342179 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 1250 | } else { |
Tejun Heo | 7fb98ea | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 1251 | pwq = first_pwq(wq); |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1252 | spin_lock(&pwq->pool->lock); |
Tejun Heo | 502ca9d | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 1253 | } |
| 1254 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1255 | /* pwq determined, queue */ |
| 1256 | trace_workqueue_queue_work(req_cpu, pwq, work); |
Tejun Heo | 502ca9d | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 1257 | |
Dan Carpenter | f5b2552 | 2012-04-13 22:06:58 +0300 | [diff] [blame] | 1258 | if (WARN_ON(!list_empty(&work->entry))) { |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1259 | spin_unlock(&pwq->pool->lock); |
Dan Carpenter | f5b2552 | 2012-04-13 22:06:58 +0300 | [diff] [blame] | 1260 | return; |
| 1261 | } |
Tejun Heo | 1e19ffc | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1262 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1263 | pwq->nr_in_flight[pwq->work_color]++; |
| 1264 | work_flags = work_color_to_flags(pwq->work_color); |
Tejun Heo | 1e19ffc | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1265 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1266 | if (likely(pwq->nr_active < pwq->max_active)) { |
Tejun Heo | cdadf00 | 2010-10-05 10:49:55 +0200 | [diff] [blame] | 1267 | trace_workqueue_activate_work(work); |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1268 | pwq->nr_active++; |
| 1269 | worklist = &pwq->pool->worklist; |
Tejun Heo | 8a2e8e5d | 2010-08-25 10:33:56 +0200 | [diff] [blame] | 1270 | } else { |
| 1271 | work_flags |= WORK_STRUCT_DELAYED; |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1272 | worklist = &pwq->delayed_works; |
Tejun Heo | 8a2e8e5d | 2010-08-25 10:33:56 +0200 | [diff] [blame] | 1273 | } |
Tejun Heo | 1e19ffc | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1274 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1275 | insert_work(pwq, work, worklist, work_flags); |
Tejun Heo | 1e19ffc | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1276 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1277 | spin_unlock(&pwq->pool->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | } |
| 1279 | |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 1280 | /** |
Zhang Rui | c1a220e | 2008-07-23 21:28:39 -0700 | [diff] [blame] | 1281 | * queue_work_on - queue work on specific cpu |
| 1282 | * @cpu: CPU number to execute work on |
| 1283 | * @wq: workqueue to use |
| 1284 | * @work: work to queue |
| 1285 | * |
Tejun Heo | d4283e9 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 1286 | * Returns %false if @work was already on a queue, %true otherwise. |
Zhang Rui | c1a220e | 2008-07-23 21:28:39 -0700 | [diff] [blame] | 1287 | * |
| 1288 | * We queue the work to a specific CPU, the caller must ensure it |
| 1289 | * can't go away. |
| 1290 | */ |
Tejun Heo | d4283e9 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 1291 | bool queue_work_on(int cpu, struct workqueue_struct *wq, |
| 1292 | struct work_struct *work) |
Zhang Rui | c1a220e | 2008-07-23 21:28:39 -0700 | [diff] [blame] | 1293 | { |
Tejun Heo | d4283e9 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 1294 | bool ret = false; |
Tejun Heo | 8930cab | 2012-08-03 10:30:45 -0700 | [diff] [blame] | 1295 | unsigned long flags; |
| 1296 | |
| 1297 | local_irq_save(flags); |
Zhang Rui | c1a220e | 2008-07-23 21:28:39 -0700 | [diff] [blame] | 1298 | |
Tejun Heo | 22df02b | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 1299 | if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) { |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 1300 | __queue_work(cpu, wq, work); |
Tejun Heo | d4283e9 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 1301 | ret = true; |
Zhang Rui | c1a220e | 2008-07-23 21:28:39 -0700 | [diff] [blame] | 1302 | } |
Tejun Heo | 8930cab | 2012-08-03 10:30:45 -0700 | [diff] [blame] | 1303 | |
| 1304 | local_irq_restore(flags); |
Zhang Rui | c1a220e | 2008-07-23 21:28:39 -0700 | [diff] [blame] | 1305 | return ret; |
| 1306 | } |
| 1307 | EXPORT_SYMBOL_GPL(queue_work_on); |
| 1308 | |
Tejun Heo | 0a13c00 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 1309 | /** |
| 1310 | * queue_work - queue work on a workqueue |
| 1311 | * @wq: workqueue to use |
| 1312 | * @work: work to queue |
| 1313 | * |
Tejun Heo | d4283e9 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 1314 | * Returns %false if @work was already on a queue, %true otherwise. |
Tejun Heo | 0a13c00 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 1315 | * |
| 1316 | * We queue the work to the CPU on which it was submitted, but if the CPU dies |
| 1317 | * it can be processed by another CPU. |
| 1318 | */ |
Tejun Heo | d4283e9 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 1319 | bool queue_work(struct workqueue_struct *wq, struct work_struct *work) |
Tejun Heo | 0a13c00 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 1320 | { |
Tejun Heo | 5746982 | 2012-08-03 10:30:45 -0700 | [diff] [blame] | 1321 | return queue_work_on(WORK_CPU_UNBOUND, wq, work); |
Tejun Heo | 0a13c00 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 1322 | } |
| 1323 | EXPORT_SYMBOL_GPL(queue_work); |
| 1324 | |
Tejun Heo | d8e794d | 2012-08-03 10:30:45 -0700 | [diff] [blame] | 1325 | void delayed_work_timer_fn(unsigned long __data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | { |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 1327 | struct delayed_work *dwork = (struct delayed_work *)__data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | |
Tejun Heo | e0aecdd | 2012-08-21 13:18:24 -0700 | [diff] [blame] | 1329 | /* should have been called from irqsafe timer with irq already off */ |
Lai Jiangshan | 60c057b | 2013-02-06 18:04:53 -0800 | [diff] [blame] | 1330 | __queue_work(dwork->cpu, dwork->wq, &dwork->work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | } |
Konstantin Khlebnikov | 1438ade5 | 2013-01-24 16:36:31 +0400 | [diff] [blame] | 1332 | EXPORT_SYMBOL(delayed_work_timer_fn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 | |
Tejun Heo | 7beb2ed | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1334 | static void __queue_delayed_work(int cpu, struct workqueue_struct *wq, |
| 1335 | struct delayed_work *dwork, unsigned long delay) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | { |
Tejun Heo | 7beb2ed | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1337 | struct timer_list *timer = &dwork->timer; |
| 1338 | struct work_struct *work = &dwork->work; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | |
Tejun Heo | 7beb2ed | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1340 | WARN_ON_ONCE(timer->function != delayed_work_timer_fn || |
| 1341 | timer->data != (unsigned long)dwork); |
Tejun Heo | fc4b514 | 2012-12-04 07:40:39 -0800 | [diff] [blame] | 1342 | WARN_ON_ONCE(timer_pending(timer)); |
| 1343 | WARN_ON_ONCE(!list_empty(&work->entry)); |
Tejun Heo | 7beb2ed | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1344 | |
Tejun Heo | 8852aac | 2012-12-01 16:23:42 -0800 | [diff] [blame] | 1345 | /* |
| 1346 | * If @delay is 0, queue @dwork->work immediately. This is for |
| 1347 | * both optimization and correctness. The earliest @timer can |
| 1348 | * expire is on the closest next tick and delayed_work users depend |
| 1349 | * on that there's no such delay when @delay is 0. |
| 1350 | */ |
| 1351 | if (!delay) { |
| 1352 | __queue_work(cpu, wq, &dwork->work); |
| 1353 | return; |
| 1354 | } |
| 1355 | |
Tejun Heo | 7beb2ed | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1356 | timer_stats_timer_set_start_info(&dwork->timer); |
| 1357 | |
Lai Jiangshan | 60c057b | 2013-02-06 18:04:53 -0800 | [diff] [blame] | 1358 | dwork->wq = wq; |
Tejun Heo | 1265057 | 2012-08-08 09:38:42 -0700 | [diff] [blame] | 1359 | dwork->cpu = cpu; |
Tejun Heo | 7beb2ed | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1360 | timer->expires = jiffies + delay; |
| 1361 | |
| 1362 | if (unlikely(cpu != WORK_CPU_UNBOUND)) |
| 1363 | add_timer_on(timer, cpu); |
| 1364 | else |
| 1365 | add_timer(timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1366 | } |
| 1367 | |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 1368 | /** |
| 1369 | * queue_delayed_work_on - queue work on specific CPU after delay |
| 1370 | * @cpu: CPU number to execute work on |
| 1371 | * @wq: workqueue to use |
Randy Dunlap | af9997e | 2006-12-22 01:06:52 -0800 | [diff] [blame] | 1372 | * @dwork: work to queue |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 1373 | * @delay: number of jiffies to wait before queueing |
| 1374 | * |
Tejun Heo | 715f130 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1375 | * Returns %false if @work was already on a queue, %true otherwise. If |
| 1376 | * @delay is zero and @dwork is idle, it will be scheduled for immediate |
| 1377 | * execution. |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 1378 | */ |
Tejun Heo | d4283e9 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 1379 | bool queue_delayed_work_on(int cpu, struct workqueue_struct *wq, |
| 1380 | struct delayed_work *dwork, unsigned long delay) |
Venkatesh Pallipadi | 7a6bc1c | 2006-06-28 13:50:33 -0700 | [diff] [blame] | 1381 | { |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 1382 | struct work_struct *work = &dwork->work; |
Tejun Heo | d4283e9 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 1383 | bool ret = false; |
Tejun Heo | 8930cab | 2012-08-03 10:30:45 -0700 | [diff] [blame] | 1384 | unsigned long flags; |
| 1385 | |
| 1386 | /* read the comment in __queue_work() */ |
| 1387 | local_irq_save(flags); |
Venkatesh Pallipadi | 7a6bc1c | 2006-06-28 13:50:33 -0700 | [diff] [blame] | 1388 | |
Tejun Heo | 22df02b | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 1389 | if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) { |
Tejun Heo | 7beb2ed | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1390 | __queue_delayed_work(cpu, wq, dwork, delay); |
Tejun Heo | d4283e9 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 1391 | ret = true; |
Venkatesh Pallipadi | 7a6bc1c | 2006-06-28 13:50:33 -0700 | [diff] [blame] | 1392 | } |
Tejun Heo | 8930cab | 2012-08-03 10:30:45 -0700 | [diff] [blame] | 1393 | |
| 1394 | local_irq_restore(flags); |
Venkatesh Pallipadi | 7a6bc1c | 2006-06-28 13:50:33 -0700 | [diff] [blame] | 1395 | return ret; |
| 1396 | } |
Dave Jones | ae90dd5 | 2006-06-30 01:40:45 -0400 | [diff] [blame] | 1397 | EXPORT_SYMBOL_GPL(queue_delayed_work_on); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1399 | /** |
Tejun Heo | 0a13c00 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 1400 | * queue_delayed_work - queue work on a workqueue after delay |
| 1401 | * @wq: workqueue to use |
| 1402 | * @dwork: delayable work to queue |
| 1403 | * @delay: number of jiffies to wait before queueing |
| 1404 | * |
Tejun Heo | 715f130 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 1405 | * Equivalent to queue_delayed_work_on() but tries to use the local CPU. |
Tejun Heo | 0a13c00 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 1406 | */ |
Tejun Heo | d4283e9 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 1407 | bool queue_delayed_work(struct workqueue_struct *wq, |
Tejun Heo | 0a13c00 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 1408 | struct delayed_work *dwork, unsigned long delay) |
| 1409 | { |
Tejun Heo | 5746982 | 2012-08-03 10:30:45 -0700 | [diff] [blame] | 1410 | return queue_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay); |
Tejun Heo | 0a13c00 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 1411 | } |
| 1412 | EXPORT_SYMBOL_GPL(queue_delayed_work); |
| 1413 | |
| 1414 | /** |
Tejun Heo | 8376fe2 | 2012-08-03 10:30:47 -0700 | [diff] [blame] | 1415 | * mod_delayed_work_on - modify delay of or queue a delayed work on specific CPU |
| 1416 | * @cpu: CPU number to execute work on |
| 1417 | * @wq: workqueue to use |
| 1418 | * @dwork: work to queue |
| 1419 | * @delay: number of jiffies to wait before queueing |
| 1420 | * |
| 1421 | * If @dwork is idle, equivalent to queue_delayed_work_on(); otherwise, |
| 1422 | * modify @dwork's timer so that it expires after @delay. If @delay is |
| 1423 | * zero, @work is guaranteed to be scheduled immediately regardless of its |
| 1424 | * current state. |
| 1425 | * |
| 1426 | * Returns %false if @dwork was idle and queued, %true if @dwork was |
| 1427 | * pending and its timer was modified. |
| 1428 | * |
Tejun Heo | e0aecdd | 2012-08-21 13:18:24 -0700 | [diff] [blame] | 1429 | * This function is safe to call from any context including IRQ handler. |
Tejun Heo | 8376fe2 | 2012-08-03 10:30:47 -0700 | [diff] [blame] | 1430 | * See try_to_grab_pending() for details. |
| 1431 | */ |
| 1432 | bool mod_delayed_work_on(int cpu, struct workqueue_struct *wq, |
| 1433 | struct delayed_work *dwork, unsigned long delay) |
| 1434 | { |
| 1435 | unsigned long flags; |
| 1436 | int ret; |
| 1437 | |
| 1438 | do { |
| 1439 | ret = try_to_grab_pending(&dwork->work, true, &flags); |
| 1440 | } while (unlikely(ret == -EAGAIN)); |
| 1441 | |
| 1442 | if (likely(ret >= 0)) { |
| 1443 | __queue_delayed_work(cpu, wq, dwork, delay); |
| 1444 | local_irq_restore(flags); |
| 1445 | } |
| 1446 | |
| 1447 | /* -ENOENT from try_to_grab_pending() becomes %true */ |
| 1448 | return ret; |
| 1449 | } |
| 1450 | EXPORT_SYMBOL_GPL(mod_delayed_work_on); |
| 1451 | |
| 1452 | /** |
| 1453 | * mod_delayed_work - modify delay of or queue a delayed work |
| 1454 | * @wq: workqueue to use |
| 1455 | * @dwork: work to queue |
| 1456 | * @delay: number of jiffies to wait before queueing |
| 1457 | * |
| 1458 | * mod_delayed_work_on() on local CPU. |
| 1459 | */ |
| 1460 | bool mod_delayed_work(struct workqueue_struct *wq, struct delayed_work *dwork, |
| 1461 | unsigned long delay) |
| 1462 | { |
| 1463 | return mod_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay); |
| 1464 | } |
| 1465 | EXPORT_SYMBOL_GPL(mod_delayed_work); |
| 1466 | |
| 1467 | /** |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1468 | * worker_enter_idle - enter idle state |
| 1469 | * @worker: worker which is entering idle state |
| 1470 | * |
| 1471 | * @worker is entering idle state. Update stats and idle timer if |
| 1472 | * necessary. |
| 1473 | * |
| 1474 | * LOCKING: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1475 | * spin_lock_irq(pool->lock). |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1476 | */ |
| 1477 | static void worker_enter_idle(struct worker *worker) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | { |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1479 | struct worker_pool *pool = worker->pool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1480 | |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 1481 | if (WARN_ON_ONCE(worker->flags & WORKER_IDLE) || |
| 1482 | WARN_ON_ONCE(!list_empty(&worker->entry) && |
| 1483 | (worker->hentry.next || worker->hentry.pprev))) |
| 1484 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1485 | |
Tejun Heo | cb44476 | 2010-07-02 10:03:50 +0200 | [diff] [blame] | 1486 | /* can't use worker_set_flags(), also called from start_worker() */ |
| 1487 | worker->flags |= WORKER_IDLE; |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1488 | pool->nr_idle++; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1489 | worker->last_active = jiffies; |
Peter Zijlstra | d5abe66 | 2006-12-06 20:37:26 -0800 | [diff] [blame] | 1490 | |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1491 | /* idle_list is LIFO */ |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1492 | list_add(&worker->entry, &pool->idle_list); |
Tejun Heo | db7bccf | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1493 | |
Tejun Heo | 628c78e | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1494 | if (too_many_workers(pool) && !timer_pending(&pool->idle_timer)) |
| 1495 | mod_timer(&pool->idle_timer, jiffies + IDLE_WORKER_TIMEOUT); |
Tejun Heo | cb44476 | 2010-07-02 10:03:50 +0200 | [diff] [blame] | 1496 | |
Tejun Heo | 544ecf3 | 2012-05-14 15:04:50 -0700 | [diff] [blame] | 1497 | /* |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 1498 | * Sanity check nr_running. Because wq_unbind_fn() releases |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1499 | * pool->lock between setting %WORKER_UNBOUND and zapping |
Tejun Heo | 628c78e | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1500 | * nr_running, the warning may trigger spuriously. Check iff |
| 1501 | * unbind is not in progress. |
Tejun Heo | 544ecf3 | 2012-05-14 15:04:50 -0700 | [diff] [blame] | 1502 | */ |
Tejun Heo | 2464757 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1503 | WARN_ON_ONCE(!(pool->flags & POOL_DISASSOCIATED) && |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1504 | pool->nr_workers == pool->nr_idle && |
Tejun Heo | e19e397 | 2013-01-24 11:39:44 -0800 | [diff] [blame] | 1505 | atomic_read(&pool->nr_running)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1506 | } |
| 1507 | |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1508 | /** |
| 1509 | * worker_leave_idle - leave idle state |
| 1510 | * @worker: worker which is leaving idle state |
| 1511 | * |
| 1512 | * @worker is leaving idle state. Update stats. |
| 1513 | * |
| 1514 | * LOCKING: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1515 | * spin_lock_irq(pool->lock). |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1516 | */ |
| 1517 | static void worker_leave_idle(struct worker *worker) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1518 | { |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1519 | struct worker_pool *pool = worker->pool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1520 | |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 1521 | if (WARN_ON_ONCE(!(worker->flags & WORKER_IDLE))) |
| 1522 | return; |
Tejun Heo | d302f01 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 1523 | worker_clr_flags(worker, WORKER_IDLE); |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1524 | pool->nr_idle--; |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1525 | list_del_init(&worker->entry); |
| 1526 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1527 | |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1528 | /** |
Lai Jiangshan | f36dc67 | 2013-02-19 12:17:02 -0800 | [diff] [blame] | 1529 | * worker_maybe_bind_and_lock - try to bind %current to worker_pool and lock it |
| 1530 | * @pool: target worker_pool |
| 1531 | * |
| 1532 | * Bind %current to the cpu of @pool if it is associated and lock @pool. |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1533 | * |
| 1534 | * Works which are scheduled while the cpu is online must at least be |
| 1535 | * scheduled to a worker which is bound to the cpu so that if they are |
| 1536 | * flushed from cpu callbacks while cpu is going down, they are |
| 1537 | * guaranteed to execute on the cpu. |
| 1538 | * |
Lai Jiangshan | f5faa07 | 2013-02-19 12:17:02 -0800 | [diff] [blame] | 1539 | * This function is to be used by unbound workers and rescuers to bind |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1540 | * themselves to the target cpu and may race with cpu going down or |
| 1541 | * coming online. kthread_bind() can't be used because it may put the |
| 1542 | * worker to already dead cpu and set_cpus_allowed_ptr() can't be used |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 1543 | * verbatim as it's best effort and blocking and pool may be |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1544 | * [dis]associated in the meantime. |
| 1545 | * |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 1546 | * This function tries set_cpus_allowed() and locks pool and verifies the |
Tejun Heo | 2464757 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1547 | * binding against %POOL_DISASSOCIATED which is set during |
Tejun Heo | f2d5a0e | 2012-07-17 12:39:26 -0700 | [diff] [blame] | 1548 | * %CPU_DOWN_PREPARE and cleared during %CPU_ONLINE, so if the worker |
| 1549 | * enters idle state or fetches works without dropping lock, it can |
| 1550 | * guarantee the scheduling requirement described in the first paragraph. |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1551 | * |
| 1552 | * CONTEXT: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1553 | * Might sleep. Called without any lock but returns with pool->lock |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1554 | * held. |
| 1555 | * |
| 1556 | * RETURNS: |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 1557 | * %true if the associated pool is online (@worker is successfully |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1558 | * bound), %false if offline. |
| 1559 | */ |
Lai Jiangshan | f36dc67 | 2013-02-19 12:17:02 -0800 | [diff] [blame] | 1560 | static bool worker_maybe_bind_and_lock(struct worker_pool *pool) |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1561 | __acquires(&pool->lock) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1562 | { |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1563 | while (true) { |
| 1564 | /* |
| 1565 | * The following call may fail, succeed or succeed |
| 1566 | * without actually migrating the task to the cpu if |
| 1567 | * it races with cpu hotunplug operation. Verify |
Tejun Heo | 2464757 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1568 | * against POOL_DISASSOCIATED. |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1569 | */ |
Tejun Heo | 2464757 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1570 | if (!(pool->flags & POOL_DISASSOCIATED)) |
Tejun Heo | 7a4e344 | 2013-03-12 11:30:00 -0700 | [diff] [blame^] | 1571 | set_cpus_allowed_ptr(current, pool->attrs->cpumask); |
Oleg Nesterov | 85f4186 | 2007-05-09 02:34:20 -0700 | [diff] [blame] | 1572 | |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1573 | spin_lock_irq(&pool->lock); |
Tejun Heo | 2464757 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1574 | if (pool->flags & POOL_DISASSOCIATED) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1575 | return false; |
Lai Jiangshan | f5faa07 | 2013-02-19 12:17:02 -0800 | [diff] [blame] | 1576 | if (task_cpu(current) == pool->cpu && |
Tejun Heo | 7a4e344 | 2013-03-12 11:30:00 -0700 | [diff] [blame^] | 1577 | cpumask_equal(¤t->cpus_allowed, pool->attrs->cpumask)) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1578 | return true; |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1579 | spin_unlock_irq(&pool->lock); |
Oleg Nesterov | 3af24433 | 2007-05-09 02:34:09 -0700 | [diff] [blame] | 1580 | |
Tejun Heo | 5035b20 | 2011-04-29 18:08:37 +0200 | [diff] [blame] | 1581 | /* |
| 1582 | * We've raced with CPU hot[un]plug. Give it a breather |
| 1583 | * and retry migration. cond_resched() is required here; |
| 1584 | * otherwise, we might deadlock against cpu_stop trying to |
| 1585 | * bring down the CPU on non-preemptive kernel. |
| 1586 | */ |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1587 | cpu_relax(); |
Tejun Heo | 5035b20 | 2011-04-29 18:08:37 +0200 | [diff] [blame] | 1588 | cond_resched(); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1589 | } |
| 1590 | } |
| 1591 | |
| 1592 | /* |
Lai Jiangshan | ea1abd6 | 2012-09-18 09:59:22 -0700 | [diff] [blame] | 1593 | * Rebind an idle @worker to its CPU. worker_thread() will test |
Lai Jiangshan | 5f7dabf | 2012-09-18 09:59:23 -0700 | [diff] [blame] | 1594 | * list_empty(@worker->entry) before leaving idle and call this function. |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1595 | */ |
| 1596 | static void idle_worker_rebind(struct worker *worker) |
| 1597 | { |
Lai Jiangshan | 5f7dabf | 2012-09-18 09:59:23 -0700 | [diff] [blame] | 1598 | /* CPU may go down again inbetween, clear UNBOUND only on success */ |
Lai Jiangshan | f36dc67 | 2013-02-19 12:17:02 -0800 | [diff] [blame] | 1599 | if (worker_maybe_bind_and_lock(worker->pool)) |
Lai Jiangshan | 5f7dabf | 2012-09-18 09:59:23 -0700 | [diff] [blame] | 1600 | worker_clr_flags(worker, WORKER_UNBOUND); |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1601 | |
Lai Jiangshan | ea1abd6 | 2012-09-18 09:59:22 -0700 | [diff] [blame] | 1602 | /* rebind complete, become available again */ |
| 1603 | list_add(&worker->entry, &worker->pool->idle_list); |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1604 | spin_unlock_irq(&worker->pool->lock); |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1605 | } |
| 1606 | |
| 1607 | /* |
| 1608 | * Function for @worker->rebind.work used to rebind unbound busy workers to |
Tejun Heo | 403c821 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1609 | * the associated cpu which is coming back online. This is scheduled by |
| 1610 | * cpu up but can race with other cpu hotplug operations and may be |
| 1611 | * executed twice without intervening cpu down. |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1612 | */ |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1613 | static void busy_worker_rebind_fn(struct work_struct *work) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1614 | { |
| 1615 | struct worker *worker = container_of(work, struct worker, rebind_work); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1616 | |
Lai Jiangshan | f36dc67 | 2013-02-19 12:17:02 -0800 | [diff] [blame] | 1617 | if (worker_maybe_bind_and_lock(worker->pool)) |
Lai Jiangshan | eab6d82 | 2012-09-18 09:59:22 -0700 | [diff] [blame] | 1618 | worker_clr_flags(worker, WORKER_UNBOUND); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1619 | |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1620 | spin_unlock_irq(&worker->pool->lock); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1621 | } |
| 1622 | |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1623 | /** |
Tejun Heo | 94cf58b | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1624 | * rebind_workers - rebind all workers of a pool to the associated CPU |
| 1625 | * @pool: pool of interest |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1626 | * |
Tejun Heo | 94cf58b | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1627 | * @pool->cpu is coming online. Rebind all workers to the CPU. Rebinding |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1628 | * is different for idle and busy ones. |
| 1629 | * |
Lai Jiangshan | ea1abd6 | 2012-09-18 09:59:22 -0700 | [diff] [blame] | 1630 | * Idle ones will be removed from the idle_list and woken up. They will |
| 1631 | * add themselves back after completing rebind. This ensures that the |
| 1632 | * idle_list doesn't contain any unbound workers when re-bound busy workers |
| 1633 | * try to perform local wake-ups for concurrency management. |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1634 | * |
Lai Jiangshan | ea1abd6 | 2012-09-18 09:59:22 -0700 | [diff] [blame] | 1635 | * Busy workers can rebind after they finish their current work items. |
| 1636 | * Queueing the rebind work item at the head of the scheduled list is |
| 1637 | * enough. Note that nr_running will be properly bumped as busy workers |
| 1638 | * rebind. |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1639 | * |
Lai Jiangshan | ea1abd6 | 2012-09-18 09:59:22 -0700 | [diff] [blame] | 1640 | * On return, all non-manager workers are scheduled for rebind - see |
| 1641 | * manage_workers() for the manager special case. Any idle worker |
| 1642 | * including the manager will not appear on @idle_list until rebind is |
| 1643 | * complete, making local wake-ups safe. |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1644 | */ |
Tejun Heo | 94cf58b | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1645 | static void rebind_workers(struct worker_pool *pool) |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1646 | { |
Lai Jiangshan | ea1abd6 | 2012-09-18 09:59:22 -0700 | [diff] [blame] | 1647 | struct worker *worker, *n; |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1648 | int i; |
| 1649 | |
Tejun Heo | 94cf58b | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1650 | lockdep_assert_held(&pool->assoc_mutex); |
| 1651 | lockdep_assert_held(&pool->lock); |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1652 | |
Lai Jiangshan | 5f7dabf | 2012-09-18 09:59:23 -0700 | [diff] [blame] | 1653 | /* dequeue and kick idle ones */ |
Tejun Heo | 94cf58b | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1654 | list_for_each_entry_safe(worker, n, &pool->idle_list, entry) { |
| 1655 | /* |
| 1656 | * idle workers should be off @pool->idle_list until rebind |
| 1657 | * is complete to avoid receiving premature local wake-ups. |
| 1658 | */ |
| 1659 | list_del_init(&worker->entry); |
Lai Jiangshan | 96e6530 | 2012-09-02 00:28:19 +0800 | [diff] [blame] | 1660 | |
Tejun Heo | 94cf58b | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1661 | /* |
| 1662 | * worker_thread() will see the above dequeuing and call |
| 1663 | * idle_worker_rebind(). |
| 1664 | */ |
| 1665 | wake_up_process(worker->task); |
| 1666 | } |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1667 | |
Tejun Heo | 94cf58b | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1668 | /* rebind busy workers */ |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1669 | for_each_busy_worker(worker, i, pool) { |
Tejun Heo | 94cf58b | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1670 | struct work_struct *rebind_work = &worker->rebind_work; |
| 1671 | struct workqueue_struct *wq; |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1672 | |
Tejun Heo | 94cf58b | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1673 | if (test_and_set_bit(WORK_STRUCT_PENDING_BIT, |
| 1674 | work_data_bits(rebind_work))) |
| 1675 | continue; |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1676 | |
Tejun Heo | 94cf58b | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1677 | debug_work_activate(rebind_work); |
Tejun Heo | 90beca5 | 2012-09-04 23:12:33 -0700 | [diff] [blame] | 1678 | |
Tejun Heo | 94cf58b | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1679 | /* |
| 1680 | * wq doesn't really matter but let's keep @worker->pool |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1681 | * and @pwq->pool consistent for sanity. |
Tejun Heo | 94cf58b | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1682 | */ |
Tejun Heo | 7a4e344 | 2013-03-12 11:30:00 -0700 | [diff] [blame^] | 1683 | if (worker->pool->attrs->nice < 0) |
Tejun Heo | 94cf58b | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1684 | wq = system_highpri_wq; |
| 1685 | else |
| 1686 | wq = system_wq; |
Tejun Heo | ec58815 | 2012-09-04 23:16:32 -0700 | [diff] [blame] | 1687 | |
Tejun Heo | 7fb98ea | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 1688 | insert_work(per_cpu_ptr(wq->cpu_pwqs, pool->cpu), rebind_work, |
Tejun Heo | 94cf58b | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1689 | worker->scheduled.next, |
| 1690 | work_color_to_flags(WORK_NO_COLOR)); |
Tejun Heo | ec58815 | 2012-09-04 23:16:32 -0700 | [diff] [blame] | 1691 | } |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1692 | } |
| 1693 | |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1694 | static struct worker *alloc_worker(void) |
| 1695 | { |
| 1696 | struct worker *worker; |
| 1697 | |
| 1698 | worker = kzalloc(sizeof(*worker), GFP_KERNEL); |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1699 | if (worker) { |
| 1700 | INIT_LIST_HEAD(&worker->entry); |
Tejun Heo | affee4b | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1701 | INIT_LIST_HEAD(&worker->scheduled); |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1702 | INIT_WORK(&worker->rebind_work, busy_worker_rebind_fn); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1703 | /* on creation a worker is in !idle && prep state */ |
| 1704 | worker->flags = WORKER_PREP; |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1705 | } |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1706 | return worker; |
| 1707 | } |
| 1708 | |
| 1709 | /** |
| 1710 | * create_worker - create a new workqueue worker |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1711 | * @pool: pool the new worker will belong to |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1712 | * |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1713 | * Create a new worker which is bound to @pool. The returned worker |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1714 | * can be started by calling start_worker() or destroyed using |
| 1715 | * destroy_worker(). |
| 1716 | * |
| 1717 | * CONTEXT: |
| 1718 | * Might sleep. Does GFP_KERNEL allocations. |
| 1719 | * |
| 1720 | * RETURNS: |
| 1721 | * Pointer to the newly created worker. |
| 1722 | */ |
Tejun Heo | bc2ae0f | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1723 | static struct worker *create_worker(struct worker_pool *pool) |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1724 | { |
Tejun Heo | 7a4e344 | 2013-03-12 11:30:00 -0700 | [diff] [blame^] | 1725 | const char *pri = pool->attrs->nice < 0 ? "H" : ""; |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1726 | struct worker *worker = NULL; |
Tejun Heo | f342179 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 1727 | int id = -1; |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1728 | |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1729 | spin_lock_irq(&pool->lock); |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1730 | while (ida_get_new(&pool->worker_ida, &id)) { |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1731 | spin_unlock_irq(&pool->lock); |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1732 | if (!ida_pre_get(&pool->worker_ida, GFP_KERNEL)) |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1733 | goto fail; |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1734 | spin_lock_irq(&pool->lock); |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1735 | } |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1736 | spin_unlock_irq(&pool->lock); |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1737 | |
| 1738 | worker = alloc_worker(); |
| 1739 | if (!worker) |
| 1740 | goto fail; |
| 1741 | |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1742 | worker->pool = pool; |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1743 | worker->id = id; |
| 1744 | |
Tejun Heo | ec22ca5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1745 | if (pool->cpu != WORK_CPU_UNBOUND) |
Eric Dumazet | 94dcf29 | 2011-03-22 16:30:45 -0700 | [diff] [blame] | 1746 | worker->task = kthread_create_on_node(worker_thread, |
Tejun Heo | ec22ca5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1747 | worker, cpu_to_node(pool->cpu), |
Tejun Heo | d84ff05 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 1748 | "kworker/%d:%d%s", pool->cpu, id, pri); |
Tejun Heo | f342179 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 1749 | else |
| 1750 | worker->task = kthread_create(worker_thread, worker, |
Tejun Heo | 3270476 | 2012-07-13 22:16:45 -0700 | [diff] [blame] | 1751 | "kworker/u:%d%s", id, pri); |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1752 | if (IS_ERR(worker->task)) |
| 1753 | goto fail; |
| 1754 | |
Tejun Heo | 7a4e344 | 2013-03-12 11:30:00 -0700 | [diff] [blame^] | 1755 | set_user_nice(worker->task, pool->attrs->nice); |
| 1756 | set_cpus_allowed_ptr(worker->task, pool->attrs->cpumask); |
Tejun Heo | 3270476 | 2012-07-13 22:16:45 -0700 | [diff] [blame] | 1757 | |
Tejun Heo | db7bccf | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1758 | /* |
Tejun Heo | 7a4e344 | 2013-03-12 11:30:00 -0700 | [diff] [blame^] | 1759 | * %PF_THREAD_BOUND is used to prevent userland from meddling with |
| 1760 | * cpumask of workqueue workers. This is an abuse. We need |
| 1761 | * %PF_NO_SETAFFINITY. |
Tejun Heo | db7bccf | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1762 | */ |
Tejun Heo | 7a4e344 | 2013-03-12 11:30:00 -0700 | [diff] [blame^] | 1763 | worker->task->flags |= PF_THREAD_BOUND; |
| 1764 | |
| 1765 | /* |
| 1766 | * The caller is responsible for ensuring %POOL_DISASSOCIATED |
| 1767 | * remains stable across this function. See the comments above the |
| 1768 | * flag definition for details. |
| 1769 | */ |
| 1770 | if (pool->flags & POOL_DISASSOCIATED) |
Tejun Heo | bc2ae0f | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1771 | worker->flags |= WORKER_UNBOUND; |
Oleg Nesterov | 3af24433 | 2007-05-09 02:34:09 -0700 | [diff] [blame] | 1772 | |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1773 | return worker; |
| 1774 | fail: |
| 1775 | if (id >= 0) { |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1776 | spin_lock_irq(&pool->lock); |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1777 | ida_remove(&pool->worker_ida, id); |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1778 | spin_unlock_irq(&pool->lock); |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1779 | } |
| 1780 | kfree(worker); |
| 1781 | return NULL; |
| 1782 | } |
| 1783 | |
| 1784 | /** |
| 1785 | * start_worker - start a newly created worker |
| 1786 | * @worker: worker to start |
| 1787 | * |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 1788 | * Make the pool aware of @worker and start it. |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1789 | * |
| 1790 | * CONTEXT: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1791 | * spin_lock_irq(pool->lock). |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1792 | */ |
| 1793 | static void start_worker(struct worker *worker) |
| 1794 | { |
Tejun Heo | cb44476 | 2010-07-02 10:03:50 +0200 | [diff] [blame] | 1795 | worker->flags |= WORKER_STARTED; |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1796 | worker->pool->nr_workers++; |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1797 | worker_enter_idle(worker); |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1798 | wake_up_process(worker->task); |
| 1799 | } |
| 1800 | |
| 1801 | /** |
| 1802 | * destroy_worker - destroy a workqueue worker |
| 1803 | * @worker: worker to be destroyed |
| 1804 | * |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 1805 | * Destroy @worker and adjust @pool stats accordingly. |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1806 | * |
| 1807 | * CONTEXT: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1808 | * spin_lock_irq(pool->lock) which is released and regrabbed. |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1809 | */ |
| 1810 | static void destroy_worker(struct worker *worker) |
| 1811 | { |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1812 | struct worker_pool *pool = worker->pool; |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1813 | int id = worker->id; |
| 1814 | |
| 1815 | /* sanity check frenzy */ |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 1816 | if (WARN_ON(worker->current_work) || |
| 1817 | WARN_ON(!list_empty(&worker->scheduled))) |
| 1818 | return; |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1819 | |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1820 | if (worker->flags & WORKER_STARTED) |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1821 | pool->nr_workers--; |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1822 | if (worker->flags & WORKER_IDLE) |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1823 | pool->nr_idle--; |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1824 | |
| 1825 | list_del_init(&worker->entry); |
Tejun Heo | cb44476 | 2010-07-02 10:03:50 +0200 | [diff] [blame] | 1826 | worker->flags |= WORKER_DIE; |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1827 | |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1828 | spin_unlock_irq(&pool->lock); |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 1829 | |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1830 | kthread_stop(worker->task); |
| 1831 | kfree(worker); |
| 1832 | |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1833 | spin_lock_irq(&pool->lock); |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1834 | ida_remove(&pool->worker_ida, id); |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 1835 | } |
| 1836 | |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1837 | static void idle_worker_timeout(unsigned long __pool) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1838 | { |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1839 | struct worker_pool *pool = (void *)__pool; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1840 | |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1841 | spin_lock_irq(&pool->lock); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1842 | |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1843 | if (too_many_workers(pool)) { |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1844 | struct worker *worker; |
| 1845 | unsigned long expires; |
| 1846 | |
| 1847 | /* idle_list is kept in LIFO order, check the last one */ |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1848 | worker = list_entry(pool->idle_list.prev, struct worker, entry); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1849 | expires = worker->last_active + IDLE_WORKER_TIMEOUT; |
| 1850 | |
| 1851 | if (time_before(jiffies, expires)) |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1852 | mod_timer(&pool->idle_timer, expires); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1853 | else { |
| 1854 | /* it's been idle for too long, wake up manager */ |
Tejun Heo | 11ebea5 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1855 | pool->flags |= POOL_MANAGE_WORKERS; |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1856 | wake_up_worker(pool); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1857 | } |
| 1858 | } |
| 1859 | |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1860 | spin_unlock_irq(&pool->lock); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1861 | } |
| 1862 | |
Tejun Heo | 493a172 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 1863 | static void send_mayday(struct work_struct *work) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1864 | { |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 1865 | struct pool_workqueue *pwq = get_work_pwq(work); |
| 1866 | struct workqueue_struct *wq = pwq->wq; |
Tejun Heo | 493a172 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 1867 | |
| 1868 | lockdep_assert_held(&workqueue_lock); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1869 | |
| 1870 | if (!(wq->flags & WQ_RESCUER)) |
Tejun Heo | 493a172 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 1871 | return; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1872 | |
| 1873 | /* mayday mayday mayday */ |
Tejun Heo | 493a172 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 1874 | if (list_empty(&pwq->mayday_node)) { |
| 1875 | list_add_tail(&pwq->mayday_node, &wq->maydays); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1876 | wake_up_process(wq->rescuer->task); |
Tejun Heo | 493a172 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 1877 | } |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1878 | } |
| 1879 | |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 1880 | static void pool_mayday_timeout(unsigned long __pool) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1881 | { |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1882 | struct worker_pool *pool = (void *)__pool; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1883 | struct work_struct *work; |
| 1884 | |
Tejun Heo | 493a172 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 1885 | spin_lock_irq(&workqueue_lock); /* for wq->maydays */ |
| 1886 | spin_lock(&pool->lock); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1887 | |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1888 | if (need_to_create_worker(pool)) { |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1889 | /* |
| 1890 | * We've been trying to create a new worker but |
| 1891 | * haven't been successful. We might be hitting an |
| 1892 | * allocation deadlock. Send distress signals to |
| 1893 | * rescuers. |
| 1894 | */ |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1895 | list_for_each_entry(work, &pool->worklist, entry) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1896 | send_mayday(work); |
| 1897 | } |
| 1898 | |
Tejun Heo | 493a172 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 1899 | spin_unlock(&pool->lock); |
| 1900 | spin_unlock_irq(&workqueue_lock); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1901 | |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1902 | mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INTERVAL); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1903 | } |
| 1904 | |
| 1905 | /** |
| 1906 | * maybe_create_worker - create a new worker if necessary |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1907 | * @pool: pool to create a new worker for |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1908 | * |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1909 | * Create a new worker for @pool if necessary. @pool is guaranteed to |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1910 | * have at least one idle worker on return from this function. If |
| 1911 | * creating a new worker takes longer than MAYDAY_INTERVAL, mayday is |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1912 | * sent to all rescuers with works scheduled on @pool to resolve |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1913 | * possible allocation deadlock. |
| 1914 | * |
| 1915 | * On return, need_to_create_worker() is guaranteed to be false and |
| 1916 | * may_start_working() true. |
| 1917 | * |
| 1918 | * LOCKING: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1919 | * spin_lock_irq(pool->lock) which may be released and regrabbed |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1920 | * multiple times. Does GFP_KERNEL allocations. Called only from |
| 1921 | * manager. |
| 1922 | * |
| 1923 | * RETURNS: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1924 | * false if no action was taken and pool->lock stayed locked, true |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1925 | * otherwise. |
| 1926 | */ |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1927 | static bool maybe_create_worker(struct worker_pool *pool) |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1928 | __releases(&pool->lock) |
| 1929 | __acquires(&pool->lock) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1930 | { |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1931 | if (!need_to_create_worker(pool)) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1932 | return false; |
| 1933 | restart: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1934 | spin_unlock_irq(&pool->lock); |
Tejun Heo | 9f9c236 | 2010-07-14 11:31:20 +0200 | [diff] [blame] | 1935 | |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1936 | /* if we don't make progress in MAYDAY_INITIAL_TIMEOUT, call for help */ |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1937 | mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INITIAL_TIMEOUT); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1938 | |
| 1939 | while (true) { |
| 1940 | struct worker *worker; |
| 1941 | |
Tejun Heo | bc2ae0f | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 1942 | worker = create_worker(pool); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1943 | if (worker) { |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1944 | del_timer_sync(&pool->mayday_timer); |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1945 | spin_lock_irq(&pool->lock); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1946 | start_worker(worker); |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 1947 | if (WARN_ON_ONCE(need_to_create_worker(pool))) |
| 1948 | goto restart; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1949 | return true; |
| 1950 | } |
| 1951 | |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1952 | if (!need_to_create_worker(pool)) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1953 | break; |
| 1954 | |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1955 | __set_current_state(TASK_INTERRUPTIBLE); |
| 1956 | schedule_timeout(CREATE_COOLDOWN); |
Tejun Heo | 9f9c236 | 2010-07-14 11:31:20 +0200 | [diff] [blame] | 1957 | |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1958 | if (!need_to_create_worker(pool)) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1959 | break; |
| 1960 | } |
| 1961 | |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1962 | del_timer_sync(&pool->mayday_timer); |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1963 | spin_lock_irq(&pool->lock); |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1964 | if (need_to_create_worker(pool)) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1965 | goto restart; |
| 1966 | return true; |
| 1967 | } |
| 1968 | |
| 1969 | /** |
| 1970 | * maybe_destroy_worker - destroy workers which have been idle for a while |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1971 | * @pool: pool to destroy workers for |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1972 | * |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1973 | * Destroy @pool workers which have been idle for longer than |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1974 | * IDLE_WORKER_TIMEOUT. |
| 1975 | * |
| 1976 | * LOCKING: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1977 | * spin_lock_irq(pool->lock) which may be released and regrabbed |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1978 | * multiple times. Called only from manager. |
| 1979 | * |
| 1980 | * RETURNS: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 1981 | * false if no action was taken and pool->lock stayed locked, true |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1982 | * otherwise. |
| 1983 | */ |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1984 | static bool maybe_destroy_workers(struct worker_pool *pool) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1985 | { |
| 1986 | bool ret = false; |
| 1987 | |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1988 | while (too_many_workers(pool)) { |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1989 | struct worker *worker; |
| 1990 | unsigned long expires; |
| 1991 | |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1992 | worker = list_entry(pool->idle_list.prev, struct worker, entry); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1993 | expires = worker->last_active + IDLE_WORKER_TIMEOUT; |
| 1994 | |
| 1995 | if (time_before(jiffies, expires)) { |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 1996 | mod_timer(&pool->idle_timer, expires); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 1997 | break; |
| 1998 | } |
| 1999 | |
| 2000 | destroy_worker(worker); |
| 2001 | ret = true; |
| 2002 | } |
| 2003 | |
| 2004 | return ret; |
| 2005 | } |
| 2006 | |
| 2007 | /** |
| 2008 | * manage_workers - manage worker pool |
| 2009 | * @worker: self |
| 2010 | * |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 2011 | * Assume the manager role and manage the worker pool @worker belongs |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2012 | * to. At any given time, there can be only zero or one manager per |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 2013 | * pool. The exclusion is handled automatically by this function. |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2014 | * |
| 2015 | * The caller can safely start processing works on false return. On |
| 2016 | * true return, it's guaranteed that need_to_create_worker() is false |
| 2017 | * and may_start_working() is true. |
| 2018 | * |
| 2019 | * CONTEXT: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2020 | * spin_lock_irq(pool->lock) which may be released and regrabbed |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2021 | * multiple times. Does GFP_KERNEL allocations. |
| 2022 | * |
| 2023 | * RETURNS: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2024 | * spin_lock_irq(pool->lock) which may be released and regrabbed |
| 2025 | * multiple times. Does GFP_KERNEL allocations. |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2026 | */ |
| 2027 | static bool manage_workers(struct worker *worker) |
| 2028 | { |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 2029 | struct worker_pool *pool = worker->pool; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2030 | bool ret = false; |
| 2031 | |
Tejun Heo | 34a06bd | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 2032 | if (!mutex_trylock(&pool->manager_arb)) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2033 | return ret; |
| 2034 | |
Lai Jiangshan | ee378aa | 2012-09-10 10:03:44 -0700 | [diff] [blame] | 2035 | /* |
| 2036 | * To simplify both worker management and CPU hotplug, hold off |
| 2037 | * management while hotplug is in progress. CPU hotplug path can't |
Tejun Heo | 34a06bd | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 2038 | * grab @pool->manager_arb to achieve this because that can lead to |
| 2039 | * idle worker depletion (all become busy thinking someone else is |
| 2040 | * managing) which in turn can result in deadlock under extreme |
| 2041 | * circumstances. Use @pool->assoc_mutex to synchronize manager |
| 2042 | * against CPU hotplug. |
Lai Jiangshan | ee378aa | 2012-09-10 10:03:44 -0700 | [diff] [blame] | 2043 | * |
Lai Jiangshan | b2eb83d | 2012-09-18 09:59:23 -0700 | [diff] [blame] | 2044 | * assoc_mutex would always be free unless CPU hotplug is in |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2045 | * progress. trylock first without dropping @pool->lock. |
Lai Jiangshan | ee378aa | 2012-09-10 10:03:44 -0700 | [diff] [blame] | 2046 | */ |
Lai Jiangshan | b2eb83d | 2012-09-18 09:59:23 -0700 | [diff] [blame] | 2047 | if (unlikely(!mutex_trylock(&pool->assoc_mutex))) { |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2048 | spin_unlock_irq(&pool->lock); |
Lai Jiangshan | b2eb83d | 2012-09-18 09:59:23 -0700 | [diff] [blame] | 2049 | mutex_lock(&pool->assoc_mutex); |
Lai Jiangshan | ee378aa | 2012-09-10 10:03:44 -0700 | [diff] [blame] | 2050 | /* |
| 2051 | * CPU hotplug could have happened while we were waiting |
Lai Jiangshan | b2eb83d | 2012-09-18 09:59:23 -0700 | [diff] [blame] | 2052 | * for assoc_mutex. Hotplug itself can't handle us |
Lai Jiangshan | ee378aa | 2012-09-10 10:03:44 -0700 | [diff] [blame] | 2053 | * because manager isn't either on idle or busy list, and |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 2054 | * @pool's state and ours could have deviated. |
Lai Jiangshan | ee378aa | 2012-09-10 10:03:44 -0700 | [diff] [blame] | 2055 | * |
Lai Jiangshan | b2eb83d | 2012-09-18 09:59:23 -0700 | [diff] [blame] | 2056 | * As hotplug is now excluded via assoc_mutex, we can |
Lai Jiangshan | ee378aa | 2012-09-10 10:03:44 -0700 | [diff] [blame] | 2057 | * simply try to bind. It will succeed or fail depending |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 2058 | * on @pool's current state. Try it and adjust |
Lai Jiangshan | ee378aa | 2012-09-10 10:03:44 -0700 | [diff] [blame] | 2059 | * %WORKER_UNBOUND accordingly. |
| 2060 | */ |
Lai Jiangshan | f36dc67 | 2013-02-19 12:17:02 -0800 | [diff] [blame] | 2061 | if (worker_maybe_bind_and_lock(pool)) |
Lai Jiangshan | ee378aa | 2012-09-10 10:03:44 -0700 | [diff] [blame] | 2062 | worker->flags &= ~WORKER_UNBOUND; |
| 2063 | else |
| 2064 | worker->flags |= WORKER_UNBOUND; |
| 2065 | |
| 2066 | ret = true; |
| 2067 | } |
| 2068 | |
Tejun Heo | 11ebea5 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 2069 | pool->flags &= ~POOL_MANAGE_WORKERS; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2070 | |
| 2071 | /* |
| 2072 | * Destroy and then create so that may_start_working() is true |
| 2073 | * on return. |
| 2074 | */ |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 2075 | ret |= maybe_destroy_workers(pool); |
| 2076 | ret |= maybe_create_worker(pool); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2077 | |
Lai Jiangshan | b2eb83d | 2012-09-18 09:59:23 -0700 | [diff] [blame] | 2078 | mutex_unlock(&pool->assoc_mutex); |
Tejun Heo | 34a06bd | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 2079 | mutex_unlock(&pool->manager_arb); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2080 | return ret; |
| 2081 | } |
| 2082 | |
Tejun Heo | a62428c | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2083 | /** |
| 2084 | * process_one_work - process single work |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2085 | * @worker: self |
Tejun Heo | a62428c | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2086 | * @work: work to process |
| 2087 | * |
| 2088 | * Process @work. This function contains all the logics necessary to |
| 2089 | * process a single work including synchronization against and |
| 2090 | * interaction with other workers on the same cpu, queueing and |
| 2091 | * flushing. As long as context requirement is met, any worker can |
| 2092 | * call this function to process a work. |
| 2093 | * |
| 2094 | * CONTEXT: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2095 | * spin_lock_irq(pool->lock) which is released and regrabbed. |
Tejun Heo | a62428c | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2096 | */ |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2097 | static void process_one_work(struct worker *worker, struct work_struct *work) |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2098 | __releases(&pool->lock) |
| 2099 | __acquires(&pool->lock) |
Tejun Heo | a62428c | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2100 | { |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2101 | struct pool_workqueue *pwq = get_work_pwq(work); |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 2102 | struct worker_pool *pool = worker->pool; |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2103 | bool cpu_intensive = pwq->wq->flags & WQ_CPU_INTENSIVE; |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2104 | int work_color; |
Tejun Heo | 7e11629 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 2105 | struct worker *collision; |
Tejun Heo | a62428c | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2106 | #ifdef CONFIG_LOCKDEP |
| 2107 | /* |
| 2108 | * It is permissible to free the struct work_struct from |
| 2109 | * inside the function that is called from it, this we need to |
| 2110 | * take into account for lockdep too. To avoid bogus "held |
| 2111 | * lock freed" warnings as well as problems when looking into |
| 2112 | * work->lockdep_map, make a copy and use that here. |
| 2113 | */ |
Peter Zijlstra | 4d82a1d | 2012-05-15 08:06:19 -0700 | [diff] [blame] | 2114 | struct lockdep_map lockdep_map; |
| 2115 | |
| 2116 | lockdep_copy_map(&lockdep_map, &work->lockdep_map); |
Tejun Heo | a62428c | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2117 | #endif |
Tejun Heo | 6fec10a | 2012-07-22 10:16:34 -0700 | [diff] [blame] | 2118 | /* |
| 2119 | * Ensure we're on the correct CPU. DISASSOCIATED test is |
| 2120 | * necessary to avoid spurious warnings from rescuers servicing the |
Tejun Heo | 2464757 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2121 | * unbound or a disassociated pool. |
Tejun Heo | 6fec10a | 2012-07-22 10:16:34 -0700 | [diff] [blame] | 2122 | */ |
Lai Jiangshan | 5f7dabf | 2012-09-18 09:59:23 -0700 | [diff] [blame] | 2123 | WARN_ON_ONCE(!(worker->flags & WORKER_UNBOUND) && |
Tejun Heo | 2464757 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2124 | !(pool->flags & POOL_DISASSOCIATED) && |
Tejun Heo | ec22ca5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2125 | raw_smp_processor_id() != pool->cpu); |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 2126 | |
Tejun Heo | 7e11629 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 2127 | /* |
| 2128 | * A single work shouldn't be executed concurrently by |
| 2129 | * multiple workers on a single cpu. Check whether anyone is |
| 2130 | * already processing the work. If so, defer the work to the |
| 2131 | * currently executing one. |
| 2132 | */ |
Tejun Heo | c9e7cf2 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2133 | collision = find_worker_executing_work(pool, work); |
Tejun Heo | 7e11629 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 2134 | if (unlikely(collision)) { |
| 2135 | move_linked_works(work, &collision->scheduled, NULL); |
| 2136 | return; |
| 2137 | } |
| 2138 | |
Tejun Heo | 8930cab | 2012-08-03 10:30:45 -0700 | [diff] [blame] | 2139 | /* claim and dequeue */ |
Tejun Heo | a62428c | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2140 | debug_work_deactivate(work); |
Tejun Heo | c9e7cf2 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2141 | hash_add(pool->busy_hash, &worker->hentry, (unsigned long)work); |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2142 | worker->current_work = work; |
Tejun Heo | a2c1c57 | 2012-12-18 10:35:02 -0800 | [diff] [blame] | 2143 | worker->current_func = work->func; |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2144 | worker->current_pwq = pwq; |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2145 | work_color = get_work_color(work); |
Tejun Heo | 7a22ad7 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 2146 | |
Tejun Heo | a62428c | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2147 | list_del_init(&work->entry); |
| 2148 | |
Tejun Heo | 649027d | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2149 | /* |
Tejun Heo | fb0e7be | 2010-06-29 10:07:15 +0200 | [diff] [blame] | 2150 | * CPU intensive works don't participate in concurrency |
| 2151 | * management. They're the scheduler's responsibility. |
| 2152 | */ |
| 2153 | if (unlikely(cpu_intensive)) |
| 2154 | worker_set_flags(worker, WORKER_CPU_INTENSIVE, true); |
| 2155 | |
Tejun Heo | 974271c | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 2156 | /* |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2157 | * Unbound pool isn't concurrency managed and work items should be |
Tejun Heo | 974271c | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 2158 | * executed ASAP. Wake up another worker if necessary. |
| 2159 | */ |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 2160 | if ((worker->flags & WORKER_UNBOUND) && need_more_worker(pool)) |
| 2161 | wake_up_worker(pool); |
Tejun Heo | 974271c | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 2162 | |
Tejun Heo | 8930cab | 2012-08-03 10:30:45 -0700 | [diff] [blame] | 2163 | /* |
Tejun Heo | 7c3eed5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2164 | * Record the last pool and clear PENDING which should be the last |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2165 | * update to @work. Also, do this inside @pool->lock so that |
Tejun Heo | 23657bb | 2012-08-13 17:08:19 -0700 | [diff] [blame] | 2166 | * PENDING and queued state changes happen together while IRQ is |
| 2167 | * disabled. |
Tejun Heo | 8930cab | 2012-08-03 10:30:45 -0700 | [diff] [blame] | 2168 | */ |
Tejun Heo | 7c3eed5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2169 | set_work_pool_and_clear_pending(work, pool->id); |
Tejun Heo | a62428c | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2170 | |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2171 | spin_unlock_irq(&pool->lock); |
Tejun Heo | a62428c | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2172 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2173 | lock_map_acquire_read(&pwq->wq->lockdep_map); |
Tejun Heo | a62428c | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2174 | lock_map_acquire(&lockdep_map); |
Arjan van de Ven | e36c886 | 2010-08-21 13:07:26 -0700 | [diff] [blame] | 2175 | trace_workqueue_execute_start(work); |
Tejun Heo | a2c1c57 | 2012-12-18 10:35:02 -0800 | [diff] [blame] | 2176 | worker->current_func(work); |
Arjan van de Ven | e36c886 | 2010-08-21 13:07:26 -0700 | [diff] [blame] | 2177 | /* |
| 2178 | * While we must be careful to not use "work" after this, the trace |
| 2179 | * point will only record its address. |
| 2180 | */ |
| 2181 | trace_workqueue_execute_end(work); |
Tejun Heo | a62428c | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2182 | lock_map_release(&lockdep_map); |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2183 | lock_map_release(&pwq->wq->lockdep_map); |
Tejun Heo | a62428c | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2184 | |
| 2185 | if (unlikely(in_atomic() || lockdep_depth(current) > 0)) { |
Valentin Ilie | 044c782 | 2012-08-19 00:52:42 +0300 | [diff] [blame] | 2186 | pr_err("BUG: workqueue leaked lock or atomic: %s/0x%08x/%d\n" |
| 2187 | " last function: %pf\n", |
Tejun Heo | a2c1c57 | 2012-12-18 10:35:02 -0800 | [diff] [blame] | 2188 | current->comm, preempt_count(), task_pid_nr(current), |
| 2189 | worker->current_func); |
Tejun Heo | a62428c | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2190 | debug_show_held_locks(current); |
| 2191 | dump_stack(); |
| 2192 | } |
| 2193 | |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2194 | spin_lock_irq(&pool->lock); |
Tejun Heo | a62428c | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2195 | |
Tejun Heo | fb0e7be | 2010-06-29 10:07:15 +0200 | [diff] [blame] | 2196 | /* clear cpu intensive status */ |
| 2197 | if (unlikely(cpu_intensive)) |
| 2198 | worker_clr_flags(worker, WORKER_CPU_INTENSIVE); |
| 2199 | |
Tejun Heo | a62428c | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2200 | /* we're done with it, release */ |
Sasha Levin | 42f8570 | 2012-12-17 10:01:23 -0500 | [diff] [blame] | 2201 | hash_del(&worker->hentry); |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2202 | worker->current_work = NULL; |
Tejun Heo | a2c1c57 | 2012-12-18 10:35:02 -0800 | [diff] [blame] | 2203 | worker->current_func = NULL; |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2204 | worker->current_pwq = NULL; |
| 2205 | pwq_dec_nr_in_flight(pwq, work_color); |
Tejun Heo | a62428c | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2206 | } |
| 2207 | |
Tejun Heo | affee4b | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 2208 | /** |
| 2209 | * process_scheduled_works - process scheduled works |
| 2210 | * @worker: self |
| 2211 | * |
| 2212 | * Process all scheduled works. Please note that the scheduled list |
| 2213 | * may change while processing a work, so this function repeatedly |
| 2214 | * fetches a work from the top and executes it. |
| 2215 | * |
| 2216 | * CONTEXT: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2217 | * spin_lock_irq(pool->lock) which may be released and regrabbed |
Tejun Heo | affee4b | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 2218 | * multiple times. |
| 2219 | */ |
| 2220 | static void process_scheduled_works(struct worker *worker) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2221 | { |
Tejun Heo | affee4b | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 2222 | while (!list_empty(&worker->scheduled)) { |
| 2223 | struct work_struct *work = list_first_entry(&worker->scheduled, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2224 | struct work_struct, entry); |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2225 | process_one_work(worker, work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2226 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2227 | } |
| 2228 | |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2229 | /** |
| 2230 | * worker_thread - the worker thread function |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2231 | * @__worker: self |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2232 | * |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 2233 | * The worker thread function. There are NR_CPU_WORKER_POOLS dynamic pools |
| 2234 | * of these per each cpu. These workers process all works regardless of |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2235 | * their specific target workqueue. The only exception is works which |
| 2236 | * belong to workqueues with a rescuer which will be explained in |
| 2237 | * rescuer_thread(). |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2238 | */ |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2239 | static int worker_thread(void *__worker) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2240 | { |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2241 | struct worker *worker = __worker; |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 2242 | struct worker_pool *pool = worker->pool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2243 | |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2244 | /* tell the scheduler that this is a workqueue worker */ |
| 2245 | worker->task->flags |= PF_WQ_WORKER; |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 2246 | woke_up: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2247 | spin_lock_irq(&pool->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2248 | |
Lai Jiangshan | 5f7dabf | 2012-09-18 09:59:23 -0700 | [diff] [blame] | 2249 | /* we are off idle list if destruction or rebind is requested */ |
| 2250 | if (unlikely(list_empty(&worker->entry))) { |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2251 | spin_unlock_irq(&pool->lock); |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 2252 | |
Lai Jiangshan | 5f7dabf | 2012-09-18 09:59:23 -0700 | [diff] [blame] | 2253 | /* if DIE is set, destruction is requested */ |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 2254 | if (worker->flags & WORKER_DIE) { |
| 2255 | worker->task->flags &= ~PF_WQ_WORKER; |
| 2256 | return 0; |
| 2257 | } |
| 2258 | |
Lai Jiangshan | 5f7dabf | 2012-09-18 09:59:23 -0700 | [diff] [blame] | 2259 | /* otherwise, rebind */ |
Tejun Heo | 25511a4 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 2260 | idle_worker_rebind(worker); |
| 2261 | goto woke_up; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2262 | } |
| 2263 | |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 2264 | worker_leave_idle(worker); |
Tejun Heo | db7bccf | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 2265 | recheck: |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2266 | /* no more worker necessary? */ |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 2267 | if (!need_more_worker(pool)) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2268 | goto sleep; |
| 2269 | |
| 2270 | /* do we need to manage? */ |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 2271 | if (unlikely(!may_start_working(pool)) && manage_workers(worker)) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2272 | goto recheck; |
| 2273 | |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 2274 | /* |
| 2275 | * ->scheduled list can only be filled while a worker is |
| 2276 | * preparing to process a work or actually processing it. |
| 2277 | * Make sure nobody diddled with it while I was sleeping. |
| 2278 | */ |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 2279 | WARN_ON_ONCE(!list_empty(&worker->scheduled)); |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 2280 | |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2281 | /* |
| 2282 | * When control reaches this point, we're guaranteed to have |
| 2283 | * at least one idle worker or that someone else has already |
| 2284 | * assumed the manager role. |
| 2285 | */ |
| 2286 | worker_clr_flags(worker, WORKER_PREP); |
| 2287 | |
| 2288 | do { |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 2289 | struct work_struct *work = |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 2290 | list_first_entry(&pool->worklist, |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 2291 | struct work_struct, entry); |
| 2292 | |
| 2293 | if (likely(!(*work_data_bits(work) & WORK_STRUCT_LINKED))) { |
| 2294 | /* optimization path, not strictly necessary */ |
| 2295 | process_one_work(worker, work); |
| 2296 | if (unlikely(!list_empty(&worker->scheduled))) |
| 2297 | process_scheduled_works(worker); |
| 2298 | } else { |
| 2299 | move_linked_works(work, &worker->scheduled, NULL); |
| 2300 | process_scheduled_works(worker); |
| 2301 | } |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 2302 | } while (keep_working(pool)); |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 2303 | |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2304 | worker_set_flags(worker, WORKER_PREP, false); |
Tejun Heo | d313dd8 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 2305 | sleep: |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 2306 | if (unlikely(need_to_manage_workers(pool)) && manage_workers(worker)) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2307 | goto recheck; |
Tejun Heo | d313dd8 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 2308 | |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 2309 | /* |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2310 | * pool->lock is held and there's no work to process and no need to |
| 2311 | * manage, sleep. Workers are woken up only while holding |
| 2312 | * pool->lock or from local cpu, so setting the current state |
| 2313 | * before releasing pool->lock is enough to prevent losing any |
| 2314 | * event. |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 2315 | */ |
| 2316 | worker_enter_idle(worker); |
| 2317 | __set_current_state(TASK_INTERRUPTIBLE); |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2318 | spin_unlock_irq(&pool->lock); |
Tejun Heo | c8e55f3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 2319 | schedule(); |
| 2320 | goto woke_up; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2321 | } |
| 2322 | |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2323 | /** |
| 2324 | * rescuer_thread - the rescuer thread function |
Tejun Heo | 111c225 | 2013-01-17 17:16:24 -0800 | [diff] [blame] | 2325 | * @__rescuer: self |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2326 | * |
| 2327 | * Workqueue rescuer thread function. There's one rescuer for each |
| 2328 | * workqueue which has WQ_RESCUER set. |
| 2329 | * |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 2330 | * Regular work processing on a pool may block trying to create a new |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2331 | * worker which uses GFP_KERNEL allocation which has slight chance of |
| 2332 | * developing into deadlock if some works currently on the same queue |
| 2333 | * need to be processed to satisfy the GFP_KERNEL allocation. This is |
| 2334 | * the problem rescuer solves. |
| 2335 | * |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 2336 | * When such condition is possible, the pool summons rescuers of all |
| 2337 | * workqueues which have works queued on the pool and let them process |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2338 | * those works so that forward progress can be guaranteed. |
| 2339 | * |
| 2340 | * This should happen rarely. |
| 2341 | */ |
Tejun Heo | 111c225 | 2013-01-17 17:16:24 -0800 | [diff] [blame] | 2342 | static int rescuer_thread(void *__rescuer) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2343 | { |
Tejun Heo | 111c225 | 2013-01-17 17:16:24 -0800 | [diff] [blame] | 2344 | struct worker *rescuer = __rescuer; |
| 2345 | struct workqueue_struct *wq = rescuer->rescue_wq; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2346 | struct list_head *scheduled = &rescuer->scheduled; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2347 | |
| 2348 | set_user_nice(current, RESCUER_NICE_LEVEL); |
Tejun Heo | 111c225 | 2013-01-17 17:16:24 -0800 | [diff] [blame] | 2349 | |
| 2350 | /* |
| 2351 | * Mark rescuer as worker too. As WORKER_PREP is never cleared, it |
| 2352 | * doesn't participate in concurrency management. |
| 2353 | */ |
| 2354 | rescuer->task->flags |= PF_WQ_WORKER; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2355 | repeat: |
| 2356 | set_current_state(TASK_INTERRUPTIBLE); |
| 2357 | |
Mike Galbraith | 412d32e | 2012-11-28 07:17:18 +0100 | [diff] [blame] | 2358 | if (kthread_should_stop()) { |
| 2359 | __set_current_state(TASK_RUNNING); |
Tejun Heo | 111c225 | 2013-01-17 17:16:24 -0800 | [diff] [blame] | 2360 | rescuer->task->flags &= ~PF_WQ_WORKER; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2361 | return 0; |
Mike Galbraith | 412d32e | 2012-11-28 07:17:18 +0100 | [diff] [blame] | 2362 | } |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2363 | |
Tejun Heo | 493a172 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 2364 | /* see whether any pwq is asking for help */ |
| 2365 | spin_lock_irq(&workqueue_lock); |
| 2366 | |
| 2367 | while (!list_empty(&wq->maydays)) { |
| 2368 | struct pool_workqueue *pwq = list_first_entry(&wq->maydays, |
| 2369 | struct pool_workqueue, mayday_node); |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2370 | struct worker_pool *pool = pwq->pool; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2371 | struct work_struct *work, *n; |
| 2372 | |
| 2373 | __set_current_state(TASK_RUNNING); |
Tejun Heo | 493a172 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 2374 | list_del_init(&pwq->mayday_node); |
| 2375 | |
| 2376 | spin_unlock_irq(&workqueue_lock); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2377 | |
| 2378 | /* migrate to the target cpu if possible */ |
Lai Jiangshan | f36dc67 | 2013-02-19 12:17:02 -0800 | [diff] [blame] | 2379 | worker_maybe_bind_and_lock(pool); |
Lai Jiangshan | b310410 | 2013-02-19 12:17:02 -0800 | [diff] [blame] | 2380 | rescuer->pool = pool; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2381 | |
| 2382 | /* |
| 2383 | * Slurp in all works issued via this workqueue and |
| 2384 | * process'em. |
| 2385 | */ |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 2386 | WARN_ON_ONCE(!list_empty(&rescuer->scheduled)); |
Tejun Heo | bd7bdd4 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 2387 | list_for_each_entry_safe(work, n, &pool->worklist, entry) |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2388 | if (get_work_pwq(work) == pwq) |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2389 | move_linked_works(work, scheduled, &n); |
| 2390 | |
| 2391 | process_scheduled_works(rescuer); |
Tejun Heo | 7576958 | 2011-02-14 14:04:46 +0100 | [diff] [blame] | 2392 | |
| 2393 | /* |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2394 | * Leave this pool. If keep_working() is %true, notify a |
Tejun Heo | 7576958 | 2011-02-14 14:04:46 +0100 | [diff] [blame] | 2395 | * regular worker; otherwise, we end up with 0 concurrency |
| 2396 | * and stalling the execution. |
| 2397 | */ |
Tejun Heo | 63d95a9 | 2012-07-12 14:46:37 -0700 | [diff] [blame] | 2398 | if (keep_working(pool)) |
| 2399 | wake_up_worker(pool); |
Tejun Heo | 7576958 | 2011-02-14 14:04:46 +0100 | [diff] [blame] | 2400 | |
Lai Jiangshan | b310410 | 2013-02-19 12:17:02 -0800 | [diff] [blame] | 2401 | rescuer->pool = NULL; |
Tejun Heo | 493a172 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 2402 | spin_unlock(&pool->lock); |
| 2403 | spin_lock(&workqueue_lock); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2404 | } |
| 2405 | |
Tejun Heo | 493a172 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 2406 | spin_unlock_irq(&workqueue_lock); |
| 2407 | |
Tejun Heo | 111c225 | 2013-01-17 17:16:24 -0800 | [diff] [blame] | 2408 | /* rescuers should never participate in concurrency management */ |
| 2409 | WARN_ON_ONCE(!(rescuer->flags & WORKER_NOT_RUNNING)); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2410 | schedule(); |
| 2411 | goto repeat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2412 | } |
| 2413 | |
Oleg Nesterov | fc2e4d7 | 2007-05-09 02:33:51 -0700 | [diff] [blame] | 2414 | struct wq_barrier { |
| 2415 | struct work_struct work; |
| 2416 | struct completion done; |
| 2417 | }; |
| 2418 | |
| 2419 | static void wq_barrier_func(struct work_struct *work) |
| 2420 | { |
| 2421 | struct wq_barrier *barr = container_of(work, struct wq_barrier, work); |
| 2422 | complete(&barr->done); |
| 2423 | } |
| 2424 | |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2425 | /** |
| 2426 | * insert_wq_barrier - insert a barrier work |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2427 | * @pwq: pwq to insert barrier into |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2428 | * @barr: wq_barrier to insert |
Tejun Heo | affee4b | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 2429 | * @target: target work to attach @barr to |
| 2430 | * @worker: worker currently executing @target, NULL if @target is not executing |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2431 | * |
Tejun Heo | affee4b | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 2432 | * @barr is linked to @target such that @barr is completed only after |
| 2433 | * @target finishes execution. Please note that the ordering |
| 2434 | * guarantee is observed only with respect to @target and on the local |
| 2435 | * cpu. |
| 2436 | * |
| 2437 | * Currently, a queued barrier can't be canceled. This is because |
| 2438 | * try_to_grab_pending() can't determine whether the work to be |
| 2439 | * grabbed is at the head of the queue and thus can't clear LINKED |
| 2440 | * flag of the previous work while there must be a valid next work |
| 2441 | * after a work with LINKED flag set. |
| 2442 | * |
| 2443 | * Note that when @worker is non-NULL, @target may be modified |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2444 | * underneath us, so we can't reliably determine pwq from @target. |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2445 | * |
| 2446 | * CONTEXT: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2447 | * spin_lock_irq(pool->lock). |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2448 | */ |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2449 | static void insert_wq_barrier(struct pool_workqueue *pwq, |
Tejun Heo | affee4b | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 2450 | struct wq_barrier *barr, |
| 2451 | struct work_struct *target, struct worker *worker) |
Oleg Nesterov | fc2e4d7 | 2007-05-09 02:33:51 -0700 | [diff] [blame] | 2452 | { |
Tejun Heo | affee4b | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 2453 | struct list_head *head; |
| 2454 | unsigned int linked = 0; |
| 2455 | |
Thomas Gleixner | dc186ad | 2009-11-16 01:09:48 +0900 | [diff] [blame] | 2456 | /* |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2457 | * debugobject calls are safe here even with pool->lock locked |
Thomas Gleixner | dc186ad | 2009-11-16 01:09:48 +0900 | [diff] [blame] | 2458 | * as we know for sure that this will not trigger any of the |
| 2459 | * checks and call back into the fixup functions where we |
| 2460 | * might deadlock. |
| 2461 | */ |
Andrew Morton | ca1cab3 | 2010-10-26 14:22:34 -0700 | [diff] [blame] | 2462 | INIT_WORK_ONSTACK(&barr->work, wq_barrier_func); |
Tejun Heo | 22df02b | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 2463 | __set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(&barr->work)); |
Oleg Nesterov | fc2e4d7 | 2007-05-09 02:33:51 -0700 | [diff] [blame] | 2464 | init_completion(&barr->done); |
Oleg Nesterov | 83c2252 | 2007-05-09 02:33:54 -0700 | [diff] [blame] | 2465 | |
Tejun Heo | affee4b | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 2466 | /* |
| 2467 | * If @target is currently being executed, schedule the |
| 2468 | * barrier to the worker; otherwise, put it after @target. |
| 2469 | */ |
| 2470 | if (worker) |
| 2471 | head = worker->scheduled.next; |
| 2472 | else { |
| 2473 | unsigned long *bits = work_data_bits(target); |
| 2474 | |
| 2475 | head = target->entry.next; |
| 2476 | /* there can already be other linked works, inherit and set */ |
| 2477 | linked = *bits & WORK_STRUCT_LINKED; |
| 2478 | __set_bit(WORK_STRUCT_LINKED_BIT, bits); |
| 2479 | } |
| 2480 | |
Thomas Gleixner | dc186ad | 2009-11-16 01:09:48 +0900 | [diff] [blame] | 2481 | debug_work_activate(&barr->work); |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2482 | insert_work(pwq, &barr->work, head, |
Tejun Heo | affee4b | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 2483 | work_color_to_flags(WORK_NO_COLOR) | linked); |
Oleg Nesterov | fc2e4d7 | 2007-05-09 02:33:51 -0700 | [diff] [blame] | 2484 | } |
| 2485 | |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2486 | /** |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2487 | * flush_workqueue_prep_pwqs - prepare pwqs for workqueue flushing |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2488 | * @wq: workqueue being flushed |
| 2489 | * @flush_color: new flush color, < 0 for no-op |
| 2490 | * @work_color: new work color, < 0 for no-op |
| 2491 | * |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2492 | * Prepare pwqs for workqueue flushing. |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2493 | * |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2494 | * If @flush_color is non-negative, flush_color on all pwqs should be |
| 2495 | * -1. If no pwq has in-flight commands at the specified color, all |
| 2496 | * pwq->flush_color's stay at -1 and %false is returned. If any pwq |
| 2497 | * has in flight commands, its pwq->flush_color is set to |
| 2498 | * @flush_color, @wq->nr_pwqs_to_flush is updated accordingly, pwq |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2499 | * wakeup logic is armed and %true is returned. |
| 2500 | * |
| 2501 | * The caller should have initialized @wq->first_flusher prior to |
| 2502 | * calling this function with non-negative @flush_color. If |
| 2503 | * @flush_color is negative, no flush color update is done and %false |
| 2504 | * is returned. |
| 2505 | * |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2506 | * If @work_color is non-negative, all pwqs should have the same |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2507 | * work_color which is previous to @work_color and all will be |
| 2508 | * advanced to @work_color. |
| 2509 | * |
| 2510 | * CONTEXT: |
| 2511 | * mutex_lock(wq->flush_mutex). |
| 2512 | * |
| 2513 | * RETURNS: |
| 2514 | * %true if @flush_color >= 0 and there's something to flush. %false |
| 2515 | * otherwise. |
| 2516 | */ |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2517 | static bool flush_workqueue_prep_pwqs(struct workqueue_struct *wq, |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2518 | int flush_color, int work_color) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2519 | { |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2520 | bool wait = false; |
Tejun Heo | 49e3cf4 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 2521 | struct pool_workqueue *pwq; |
Oleg Nesterov | 1444196 | 2007-05-23 13:57:57 -0700 | [diff] [blame] | 2522 | |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2523 | if (flush_color >= 0) { |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 2524 | WARN_ON_ONCE(atomic_read(&wq->nr_pwqs_to_flush)); |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2525 | atomic_set(&wq->nr_pwqs_to_flush, 1); |
Thomas Gleixner | dc186ad | 2009-11-16 01:09:48 +0900 | [diff] [blame] | 2526 | } |
Oleg Nesterov | 1444196 | 2007-05-23 13:57:57 -0700 | [diff] [blame] | 2527 | |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 2528 | local_irq_disable(); |
| 2529 | |
Tejun Heo | 49e3cf4 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 2530 | for_each_pwq(pwq, wq) { |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2531 | struct worker_pool *pool = pwq->pool; |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2532 | |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 2533 | spin_lock(&pool->lock); |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2534 | |
| 2535 | if (flush_color >= 0) { |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 2536 | WARN_ON_ONCE(pwq->flush_color != -1); |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2537 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2538 | if (pwq->nr_in_flight[flush_color]) { |
| 2539 | pwq->flush_color = flush_color; |
| 2540 | atomic_inc(&wq->nr_pwqs_to_flush); |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2541 | wait = true; |
| 2542 | } |
| 2543 | } |
| 2544 | |
| 2545 | if (work_color >= 0) { |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 2546 | WARN_ON_ONCE(work_color != work_next_color(pwq->work_color)); |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2547 | pwq->work_color = work_color; |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2548 | } |
| 2549 | |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 2550 | spin_unlock(&pool->lock); |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2551 | } |
| 2552 | |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 2553 | local_irq_enable(); |
| 2554 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2555 | if (flush_color >= 0 && atomic_dec_and_test(&wq->nr_pwqs_to_flush)) |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2556 | complete(&wq->first_flusher->done); |
| 2557 | |
| 2558 | return wait; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2559 | } |
| 2560 | |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 2561 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2562 | * flush_workqueue - ensure that any scheduled work has run to completion. |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 2563 | * @wq: workqueue to flush |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2564 | * |
| 2565 | * Forces execution of the workqueue and blocks until its completion. |
| 2566 | * This is typically used in driver shutdown handlers. |
| 2567 | * |
Oleg Nesterov | fc2e4d7 | 2007-05-09 02:33:51 -0700 | [diff] [blame] | 2568 | * We sleep until all works which were queued on entry have been handled, |
| 2569 | * but we are not livelocked by new incoming ones. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2570 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 2571 | void flush_workqueue(struct workqueue_struct *wq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2572 | { |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2573 | struct wq_flusher this_flusher = { |
| 2574 | .list = LIST_HEAD_INIT(this_flusher.list), |
| 2575 | .flush_color = -1, |
| 2576 | .done = COMPLETION_INITIALIZER_ONSTACK(this_flusher.done), |
| 2577 | }; |
| 2578 | int next_color; |
Oleg Nesterov | b1f4ec1 | 2007-05-09 02:34:12 -0700 | [diff] [blame] | 2579 | |
Ingo Molnar | 3295f0e | 2008-08-11 10:30:30 +0200 | [diff] [blame] | 2580 | lock_map_acquire(&wq->lockdep_map); |
| 2581 | lock_map_release(&wq->lockdep_map); |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2582 | |
| 2583 | mutex_lock(&wq->flush_mutex); |
| 2584 | |
| 2585 | /* |
| 2586 | * Start-to-wait phase |
| 2587 | */ |
| 2588 | next_color = work_next_color(wq->work_color); |
| 2589 | |
| 2590 | if (next_color != wq->flush_color) { |
| 2591 | /* |
| 2592 | * Color space is not full. The current work_color |
| 2593 | * becomes our flush_color and work_color is advanced |
| 2594 | * by one. |
| 2595 | */ |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 2596 | WARN_ON_ONCE(!list_empty(&wq->flusher_overflow)); |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2597 | this_flusher.flush_color = wq->work_color; |
| 2598 | wq->work_color = next_color; |
| 2599 | |
| 2600 | if (!wq->first_flusher) { |
| 2601 | /* no flush in progress, become the first flusher */ |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 2602 | WARN_ON_ONCE(wq->flush_color != this_flusher.flush_color); |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2603 | |
| 2604 | wq->first_flusher = &this_flusher; |
| 2605 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2606 | if (!flush_workqueue_prep_pwqs(wq, wq->flush_color, |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2607 | wq->work_color)) { |
| 2608 | /* nothing to flush, done */ |
| 2609 | wq->flush_color = next_color; |
| 2610 | wq->first_flusher = NULL; |
| 2611 | goto out_unlock; |
| 2612 | } |
| 2613 | } else { |
| 2614 | /* wait in queue */ |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 2615 | WARN_ON_ONCE(wq->flush_color == this_flusher.flush_color); |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2616 | list_add_tail(&this_flusher.list, &wq->flusher_queue); |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2617 | flush_workqueue_prep_pwqs(wq, -1, wq->work_color); |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2618 | } |
| 2619 | } else { |
| 2620 | /* |
| 2621 | * Oops, color space is full, wait on overflow queue. |
| 2622 | * The next flush completion will assign us |
| 2623 | * flush_color and transfer to flusher_queue. |
| 2624 | */ |
| 2625 | list_add_tail(&this_flusher.list, &wq->flusher_overflow); |
| 2626 | } |
| 2627 | |
| 2628 | mutex_unlock(&wq->flush_mutex); |
| 2629 | |
| 2630 | wait_for_completion(&this_flusher.done); |
| 2631 | |
| 2632 | /* |
| 2633 | * Wake-up-and-cascade phase |
| 2634 | * |
| 2635 | * First flushers are responsible for cascading flushes and |
| 2636 | * handling overflow. Non-first flushers can simply return. |
| 2637 | */ |
| 2638 | if (wq->first_flusher != &this_flusher) |
| 2639 | return; |
| 2640 | |
| 2641 | mutex_lock(&wq->flush_mutex); |
| 2642 | |
Tejun Heo | 4ce48b3 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 2643 | /* we might have raced, check again with mutex held */ |
| 2644 | if (wq->first_flusher != &this_flusher) |
| 2645 | goto out_unlock; |
| 2646 | |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2647 | wq->first_flusher = NULL; |
| 2648 | |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 2649 | WARN_ON_ONCE(!list_empty(&this_flusher.list)); |
| 2650 | WARN_ON_ONCE(wq->flush_color != this_flusher.flush_color); |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2651 | |
| 2652 | while (true) { |
| 2653 | struct wq_flusher *next, *tmp; |
| 2654 | |
| 2655 | /* complete all the flushers sharing the current flush color */ |
| 2656 | list_for_each_entry_safe(next, tmp, &wq->flusher_queue, list) { |
| 2657 | if (next->flush_color != wq->flush_color) |
| 2658 | break; |
| 2659 | list_del_init(&next->list); |
| 2660 | complete(&next->done); |
| 2661 | } |
| 2662 | |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 2663 | WARN_ON_ONCE(!list_empty(&wq->flusher_overflow) && |
| 2664 | wq->flush_color != work_next_color(wq->work_color)); |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2665 | |
| 2666 | /* this flush_color is finished, advance by one */ |
| 2667 | wq->flush_color = work_next_color(wq->flush_color); |
| 2668 | |
| 2669 | /* one color has been freed, handle overflow queue */ |
| 2670 | if (!list_empty(&wq->flusher_overflow)) { |
| 2671 | /* |
| 2672 | * Assign the same color to all overflowed |
| 2673 | * flushers, advance work_color and append to |
| 2674 | * flusher_queue. This is the start-to-wait |
| 2675 | * phase for these overflowed flushers. |
| 2676 | */ |
| 2677 | list_for_each_entry(tmp, &wq->flusher_overflow, list) |
| 2678 | tmp->flush_color = wq->work_color; |
| 2679 | |
| 2680 | wq->work_color = work_next_color(wq->work_color); |
| 2681 | |
| 2682 | list_splice_tail_init(&wq->flusher_overflow, |
| 2683 | &wq->flusher_queue); |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2684 | flush_workqueue_prep_pwqs(wq, -1, wq->work_color); |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2685 | } |
| 2686 | |
| 2687 | if (list_empty(&wq->flusher_queue)) { |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 2688 | WARN_ON_ONCE(wq->flush_color != wq->work_color); |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2689 | break; |
| 2690 | } |
| 2691 | |
| 2692 | /* |
| 2693 | * Need to flush more colors. Make the next flusher |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2694 | * the new first flusher and arm pwqs. |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2695 | */ |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 2696 | WARN_ON_ONCE(wq->flush_color == wq->work_color); |
| 2697 | WARN_ON_ONCE(wq->flush_color != next->flush_color); |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2698 | |
| 2699 | list_del_init(&next->list); |
| 2700 | wq->first_flusher = next; |
| 2701 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2702 | if (flush_workqueue_prep_pwqs(wq, wq->flush_color, -1)) |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 2703 | break; |
| 2704 | |
| 2705 | /* |
| 2706 | * Meh... this color is already done, clear first |
| 2707 | * flusher and repeat cascading. |
| 2708 | */ |
| 2709 | wq->first_flusher = NULL; |
| 2710 | } |
| 2711 | |
| 2712 | out_unlock: |
| 2713 | mutex_unlock(&wq->flush_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2714 | } |
Dave Jones | ae90dd5 | 2006-06-30 01:40:45 -0400 | [diff] [blame] | 2715 | EXPORT_SYMBOL_GPL(flush_workqueue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2716 | |
Tejun Heo | 9c5a2ba | 2011-04-05 18:01:44 +0200 | [diff] [blame] | 2717 | /** |
| 2718 | * drain_workqueue - drain a workqueue |
| 2719 | * @wq: workqueue to drain |
| 2720 | * |
| 2721 | * Wait until the workqueue becomes empty. While draining is in progress, |
| 2722 | * only chain queueing is allowed. IOW, only currently pending or running |
| 2723 | * work items on @wq can queue further work items on it. @wq is flushed |
| 2724 | * repeatedly until it becomes empty. The number of flushing is detemined |
| 2725 | * by the depth of chaining and should be relatively short. Whine if it |
| 2726 | * takes too long. |
| 2727 | */ |
| 2728 | void drain_workqueue(struct workqueue_struct *wq) |
| 2729 | { |
| 2730 | unsigned int flush_cnt = 0; |
Tejun Heo | 49e3cf4 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 2731 | struct pool_workqueue *pwq; |
Tejun Heo | 9c5a2ba | 2011-04-05 18:01:44 +0200 | [diff] [blame] | 2732 | |
| 2733 | /* |
| 2734 | * __queue_work() needs to test whether there are drainers, is much |
| 2735 | * hotter than drain_workqueue() and already looks at @wq->flags. |
| 2736 | * Use WQ_DRAINING so that queue doesn't have to check nr_drainers. |
| 2737 | */ |
Tejun Heo | e98d5b1 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 2738 | spin_lock_irq(&workqueue_lock); |
Tejun Heo | 9c5a2ba | 2011-04-05 18:01:44 +0200 | [diff] [blame] | 2739 | if (!wq->nr_drainers++) |
| 2740 | wq->flags |= WQ_DRAINING; |
Tejun Heo | e98d5b1 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 2741 | spin_unlock_irq(&workqueue_lock); |
Tejun Heo | 9c5a2ba | 2011-04-05 18:01:44 +0200 | [diff] [blame] | 2742 | reflush: |
| 2743 | flush_workqueue(wq); |
| 2744 | |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 2745 | local_irq_disable(); |
| 2746 | |
Tejun Heo | 49e3cf4 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 2747 | for_each_pwq(pwq, wq) { |
Thomas Tuttle | fa2563e | 2011-09-14 16:22:28 -0700 | [diff] [blame] | 2748 | bool drained; |
Tejun Heo | 9c5a2ba | 2011-04-05 18:01:44 +0200 | [diff] [blame] | 2749 | |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 2750 | spin_lock(&pwq->pool->lock); |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2751 | drained = !pwq->nr_active && list_empty(&pwq->delayed_works); |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 2752 | spin_unlock(&pwq->pool->lock); |
Thomas Tuttle | fa2563e | 2011-09-14 16:22:28 -0700 | [diff] [blame] | 2753 | |
| 2754 | if (drained) |
Tejun Heo | 9c5a2ba | 2011-04-05 18:01:44 +0200 | [diff] [blame] | 2755 | continue; |
| 2756 | |
| 2757 | if (++flush_cnt == 10 || |
| 2758 | (flush_cnt % 100 == 0 && flush_cnt <= 1000)) |
Valentin Ilie | 044c782 | 2012-08-19 00:52:42 +0300 | [diff] [blame] | 2759 | pr_warn("workqueue %s: flush on destruction isn't complete after %u tries\n", |
| 2760 | wq->name, flush_cnt); |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 2761 | |
| 2762 | local_irq_enable(); |
Tejun Heo | 9c5a2ba | 2011-04-05 18:01:44 +0200 | [diff] [blame] | 2763 | goto reflush; |
| 2764 | } |
| 2765 | |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 2766 | spin_lock(&workqueue_lock); |
Tejun Heo | 9c5a2ba | 2011-04-05 18:01:44 +0200 | [diff] [blame] | 2767 | if (!--wq->nr_drainers) |
| 2768 | wq->flags &= ~WQ_DRAINING; |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 2769 | spin_unlock(&workqueue_lock); |
| 2770 | |
| 2771 | local_irq_enable(); |
Tejun Heo | 9c5a2ba | 2011-04-05 18:01:44 +0200 | [diff] [blame] | 2772 | } |
| 2773 | EXPORT_SYMBOL_GPL(drain_workqueue); |
| 2774 | |
Tejun Heo | 606a502 | 2012-08-20 14:51:23 -0700 | [diff] [blame] | 2775 | static bool start_flush_work(struct work_struct *work, struct wq_barrier *barr) |
Tejun Heo | baf5902 | 2010-09-16 10:42:16 +0200 | [diff] [blame] | 2776 | { |
| 2777 | struct worker *worker = NULL; |
Tejun Heo | c9e7cf2 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2778 | struct worker_pool *pool; |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2779 | struct pool_workqueue *pwq; |
Tejun Heo | baf5902 | 2010-09-16 10:42:16 +0200 | [diff] [blame] | 2780 | |
| 2781 | might_sleep(); |
Tejun Heo | baf5902 | 2010-09-16 10:42:16 +0200 | [diff] [blame] | 2782 | |
Tejun Heo | fa1b54e | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 2783 | local_irq_disable(); |
| 2784 | pool = get_work_pool(work); |
| 2785 | if (!pool) { |
| 2786 | local_irq_enable(); |
| 2787 | return false; |
| 2788 | } |
| 2789 | |
| 2790 | spin_lock(&pool->lock); |
Lai Jiangshan | 0b3dae6 | 2013-02-06 18:04:53 -0800 | [diff] [blame] | 2791 | /* see the comment in try_to_grab_pending() with the same code */ |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2792 | pwq = get_work_pwq(work); |
| 2793 | if (pwq) { |
| 2794 | if (unlikely(pwq->pool != pool)) |
Tejun Heo | baf5902 | 2010-09-16 10:42:16 +0200 | [diff] [blame] | 2795 | goto already_gone; |
Tejun Heo | 606a502 | 2012-08-20 14:51:23 -0700 | [diff] [blame] | 2796 | } else { |
Tejun Heo | c9e7cf2 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2797 | worker = find_worker_executing_work(pool, work); |
Tejun Heo | baf5902 | 2010-09-16 10:42:16 +0200 | [diff] [blame] | 2798 | if (!worker) |
| 2799 | goto already_gone; |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2800 | pwq = worker->current_pwq; |
Tejun Heo | 606a502 | 2012-08-20 14:51:23 -0700 | [diff] [blame] | 2801 | } |
Tejun Heo | baf5902 | 2010-09-16 10:42:16 +0200 | [diff] [blame] | 2802 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2803 | insert_wq_barrier(pwq, barr, work, worker); |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2804 | spin_unlock_irq(&pool->lock); |
Tejun Heo | baf5902 | 2010-09-16 10:42:16 +0200 | [diff] [blame] | 2805 | |
Tejun Heo | e159489 | 2011-01-09 23:32:15 +0100 | [diff] [blame] | 2806 | /* |
| 2807 | * If @max_active is 1 or rescuer is in use, flushing another work |
| 2808 | * item on the same workqueue may lead to deadlock. Make sure the |
| 2809 | * flusher is not running on the same workqueue by verifying write |
| 2810 | * access. |
| 2811 | */ |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2812 | if (pwq->wq->saved_max_active == 1 || pwq->wq->flags & WQ_RESCUER) |
| 2813 | lock_map_acquire(&pwq->wq->lockdep_map); |
Tejun Heo | e159489 | 2011-01-09 23:32:15 +0100 | [diff] [blame] | 2814 | else |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 2815 | lock_map_acquire_read(&pwq->wq->lockdep_map); |
| 2816 | lock_map_release(&pwq->wq->lockdep_map); |
Tejun Heo | e159489 | 2011-01-09 23:32:15 +0100 | [diff] [blame] | 2817 | |
Tejun Heo | baf5902 | 2010-09-16 10:42:16 +0200 | [diff] [blame] | 2818 | return true; |
| 2819 | already_gone: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2820 | spin_unlock_irq(&pool->lock); |
Tejun Heo | baf5902 | 2010-09-16 10:42:16 +0200 | [diff] [blame] | 2821 | return false; |
| 2822 | } |
| 2823 | |
Oleg Nesterov | db70089 | 2008-07-25 01:47:49 -0700 | [diff] [blame] | 2824 | /** |
Tejun Heo | 401a8d0 | 2010-09-16 10:36:00 +0200 | [diff] [blame] | 2825 | * flush_work - wait for a work to finish executing the last queueing instance |
| 2826 | * @work: the work to flush |
Oleg Nesterov | db70089 | 2008-07-25 01:47:49 -0700 | [diff] [blame] | 2827 | * |
Tejun Heo | 606a502 | 2012-08-20 14:51:23 -0700 | [diff] [blame] | 2828 | * Wait until @work has finished execution. @work is guaranteed to be idle |
| 2829 | * on return if it hasn't been requeued since flush started. |
Tejun Heo | 401a8d0 | 2010-09-16 10:36:00 +0200 | [diff] [blame] | 2830 | * |
| 2831 | * RETURNS: |
| 2832 | * %true if flush_work() waited for the work to finish execution, |
| 2833 | * %false if it was already idle. |
Oleg Nesterov | db70089 | 2008-07-25 01:47:49 -0700 | [diff] [blame] | 2834 | */ |
Tejun Heo | 401a8d0 | 2010-09-16 10:36:00 +0200 | [diff] [blame] | 2835 | bool flush_work(struct work_struct *work) |
Oleg Nesterov | db70089 | 2008-07-25 01:47:49 -0700 | [diff] [blame] | 2836 | { |
Oleg Nesterov | db70089 | 2008-07-25 01:47:49 -0700 | [diff] [blame] | 2837 | struct wq_barrier barr; |
| 2838 | |
Stephen Boyd | 0976dfc | 2012-04-20 17:28:50 -0700 | [diff] [blame] | 2839 | lock_map_acquire(&work->lockdep_map); |
| 2840 | lock_map_release(&work->lockdep_map); |
| 2841 | |
Tejun Heo | 606a502 | 2012-08-20 14:51:23 -0700 | [diff] [blame] | 2842 | if (start_flush_work(work, &barr)) { |
Tejun Heo | baf5902 | 2010-09-16 10:42:16 +0200 | [diff] [blame] | 2843 | wait_for_completion(&barr.done); |
| 2844 | destroy_work_on_stack(&barr.work); |
| 2845 | return true; |
Tejun Heo | 606a502 | 2012-08-20 14:51:23 -0700 | [diff] [blame] | 2846 | } else { |
Tejun Heo | baf5902 | 2010-09-16 10:42:16 +0200 | [diff] [blame] | 2847 | return false; |
Tejun Heo | 606a502 | 2012-08-20 14:51:23 -0700 | [diff] [blame] | 2848 | } |
Oleg Nesterov | db70089 | 2008-07-25 01:47:49 -0700 | [diff] [blame] | 2849 | } |
| 2850 | EXPORT_SYMBOL_GPL(flush_work); |
| 2851 | |
Tejun Heo | 36e227d | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 2852 | static bool __cancel_work_timer(struct work_struct *work, bool is_dwork) |
Tejun Heo | 401a8d0 | 2010-09-16 10:36:00 +0200 | [diff] [blame] | 2853 | { |
Tejun Heo | bbb68df | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 2854 | unsigned long flags; |
Oleg Nesterov | 1f1f642 | 2007-07-15 23:41:44 -0700 | [diff] [blame] | 2855 | int ret; |
| 2856 | |
| 2857 | do { |
Tejun Heo | bbb68df | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 2858 | ret = try_to_grab_pending(work, is_dwork, &flags); |
| 2859 | /* |
| 2860 | * If someone else is canceling, wait for the same event it |
| 2861 | * would be waiting for before retrying. |
| 2862 | */ |
| 2863 | if (unlikely(ret == -ENOENT)) |
Tejun Heo | 606a502 | 2012-08-20 14:51:23 -0700 | [diff] [blame] | 2864 | flush_work(work); |
Oleg Nesterov | 1f1f642 | 2007-07-15 23:41:44 -0700 | [diff] [blame] | 2865 | } while (unlikely(ret < 0)); |
| 2866 | |
Tejun Heo | bbb68df | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 2867 | /* tell other tasks trying to grab @work to back off */ |
| 2868 | mark_work_canceling(work); |
| 2869 | local_irq_restore(flags); |
| 2870 | |
Tejun Heo | 606a502 | 2012-08-20 14:51:23 -0700 | [diff] [blame] | 2871 | flush_work(work); |
Tejun Heo | 7a22ad7 | 2010-06-29 10:07:13 +0200 | [diff] [blame] | 2872 | clear_work_data(work); |
Oleg Nesterov | 1f1f642 | 2007-07-15 23:41:44 -0700 | [diff] [blame] | 2873 | return ret; |
| 2874 | } |
| 2875 | |
Oleg Nesterov | 6e84d64 | 2007-05-09 02:34:46 -0700 | [diff] [blame] | 2876 | /** |
Tejun Heo | 401a8d0 | 2010-09-16 10:36:00 +0200 | [diff] [blame] | 2877 | * cancel_work_sync - cancel a work and wait for it to finish |
| 2878 | * @work: the work to cancel |
Oleg Nesterov | 6e84d64 | 2007-05-09 02:34:46 -0700 | [diff] [blame] | 2879 | * |
Tejun Heo | 401a8d0 | 2010-09-16 10:36:00 +0200 | [diff] [blame] | 2880 | * Cancel @work and wait for its execution to finish. This function |
| 2881 | * can be used even if the work re-queues itself or migrates to |
| 2882 | * another workqueue. On return from this function, @work is |
| 2883 | * guaranteed to be not pending or executing on any CPU. |
Oleg Nesterov | 1f1f642 | 2007-07-15 23:41:44 -0700 | [diff] [blame] | 2884 | * |
Tejun Heo | 401a8d0 | 2010-09-16 10:36:00 +0200 | [diff] [blame] | 2885 | * cancel_work_sync(&delayed_work->work) must not be used for |
| 2886 | * delayed_work's. Use cancel_delayed_work_sync() instead. |
Oleg Nesterov | 6e84d64 | 2007-05-09 02:34:46 -0700 | [diff] [blame] | 2887 | * |
Tejun Heo | 401a8d0 | 2010-09-16 10:36:00 +0200 | [diff] [blame] | 2888 | * The caller must ensure that the workqueue on which @work was last |
Oleg Nesterov | 6e84d64 | 2007-05-09 02:34:46 -0700 | [diff] [blame] | 2889 | * queued can't be destroyed before this function returns. |
Tejun Heo | 401a8d0 | 2010-09-16 10:36:00 +0200 | [diff] [blame] | 2890 | * |
| 2891 | * RETURNS: |
| 2892 | * %true if @work was pending, %false otherwise. |
Oleg Nesterov | 6e84d64 | 2007-05-09 02:34:46 -0700 | [diff] [blame] | 2893 | */ |
Tejun Heo | 401a8d0 | 2010-09-16 10:36:00 +0200 | [diff] [blame] | 2894 | bool cancel_work_sync(struct work_struct *work) |
Oleg Nesterov | 6e84d64 | 2007-05-09 02:34:46 -0700 | [diff] [blame] | 2895 | { |
Tejun Heo | 36e227d | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 2896 | return __cancel_work_timer(work, false); |
Oleg Nesterov | b89deed | 2007-05-09 02:33:52 -0700 | [diff] [blame] | 2897 | } |
Oleg Nesterov | 28e53bd | 2007-05-09 02:34:22 -0700 | [diff] [blame] | 2898 | EXPORT_SYMBOL_GPL(cancel_work_sync); |
Oleg Nesterov | b89deed | 2007-05-09 02:33:52 -0700 | [diff] [blame] | 2899 | |
Oleg Nesterov | 6e84d64 | 2007-05-09 02:34:46 -0700 | [diff] [blame] | 2900 | /** |
Tejun Heo | 401a8d0 | 2010-09-16 10:36:00 +0200 | [diff] [blame] | 2901 | * flush_delayed_work - wait for a dwork to finish executing the last queueing |
| 2902 | * @dwork: the delayed work to flush |
Oleg Nesterov | 6e84d64 | 2007-05-09 02:34:46 -0700 | [diff] [blame] | 2903 | * |
Tejun Heo | 401a8d0 | 2010-09-16 10:36:00 +0200 | [diff] [blame] | 2904 | * Delayed timer is cancelled and the pending work is queued for |
| 2905 | * immediate execution. Like flush_work(), this function only |
| 2906 | * considers the last queueing instance of @dwork. |
Oleg Nesterov | 1f1f642 | 2007-07-15 23:41:44 -0700 | [diff] [blame] | 2907 | * |
Tejun Heo | 401a8d0 | 2010-09-16 10:36:00 +0200 | [diff] [blame] | 2908 | * RETURNS: |
| 2909 | * %true if flush_work() waited for the work to finish execution, |
| 2910 | * %false if it was already idle. |
Oleg Nesterov | 6e84d64 | 2007-05-09 02:34:46 -0700 | [diff] [blame] | 2911 | */ |
Tejun Heo | 401a8d0 | 2010-09-16 10:36:00 +0200 | [diff] [blame] | 2912 | bool flush_delayed_work(struct delayed_work *dwork) |
| 2913 | { |
Tejun Heo | 8930cab | 2012-08-03 10:30:45 -0700 | [diff] [blame] | 2914 | local_irq_disable(); |
Tejun Heo | 401a8d0 | 2010-09-16 10:36:00 +0200 | [diff] [blame] | 2915 | if (del_timer_sync(&dwork->timer)) |
Lai Jiangshan | 60c057b | 2013-02-06 18:04:53 -0800 | [diff] [blame] | 2916 | __queue_work(dwork->cpu, dwork->wq, &dwork->work); |
Tejun Heo | 8930cab | 2012-08-03 10:30:45 -0700 | [diff] [blame] | 2917 | local_irq_enable(); |
Tejun Heo | 401a8d0 | 2010-09-16 10:36:00 +0200 | [diff] [blame] | 2918 | return flush_work(&dwork->work); |
| 2919 | } |
| 2920 | EXPORT_SYMBOL(flush_delayed_work); |
| 2921 | |
| 2922 | /** |
Tejun Heo | 57b30ae | 2012-08-21 13:18:24 -0700 | [diff] [blame] | 2923 | * cancel_delayed_work - cancel a delayed work |
| 2924 | * @dwork: delayed_work to cancel |
Tejun Heo | 0938349 | 2010-09-16 10:48:29 +0200 | [diff] [blame] | 2925 | * |
Tejun Heo | 57b30ae | 2012-08-21 13:18:24 -0700 | [diff] [blame] | 2926 | * Kill off a pending delayed_work. Returns %true if @dwork was pending |
| 2927 | * and canceled; %false if wasn't pending. Note that the work callback |
| 2928 | * function may still be running on return, unless it returns %true and the |
| 2929 | * work doesn't re-arm itself. Explicitly flush or use |
| 2930 | * cancel_delayed_work_sync() to wait on it. |
Tejun Heo | 0938349 | 2010-09-16 10:48:29 +0200 | [diff] [blame] | 2931 | * |
Tejun Heo | 57b30ae | 2012-08-21 13:18:24 -0700 | [diff] [blame] | 2932 | * This function is safe to call from any context including IRQ handler. |
Tejun Heo | 0938349 | 2010-09-16 10:48:29 +0200 | [diff] [blame] | 2933 | */ |
Tejun Heo | 57b30ae | 2012-08-21 13:18:24 -0700 | [diff] [blame] | 2934 | bool cancel_delayed_work(struct delayed_work *dwork) |
Tejun Heo | 0938349 | 2010-09-16 10:48:29 +0200 | [diff] [blame] | 2935 | { |
Tejun Heo | 57b30ae | 2012-08-21 13:18:24 -0700 | [diff] [blame] | 2936 | unsigned long flags; |
| 2937 | int ret; |
| 2938 | |
| 2939 | do { |
| 2940 | ret = try_to_grab_pending(&dwork->work, true, &flags); |
| 2941 | } while (unlikely(ret == -EAGAIN)); |
| 2942 | |
| 2943 | if (unlikely(ret < 0)) |
| 2944 | return false; |
| 2945 | |
Tejun Heo | 7c3eed5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 2946 | set_work_pool_and_clear_pending(&dwork->work, |
| 2947 | get_work_pool_id(&dwork->work)); |
Tejun Heo | 57b30ae | 2012-08-21 13:18:24 -0700 | [diff] [blame] | 2948 | local_irq_restore(flags); |
Dan Magenheimer | c0158ca | 2012-10-18 16:31:37 -0700 | [diff] [blame] | 2949 | return ret; |
Tejun Heo | 0938349 | 2010-09-16 10:48:29 +0200 | [diff] [blame] | 2950 | } |
Tejun Heo | 57b30ae | 2012-08-21 13:18:24 -0700 | [diff] [blame] | 2951 | EXPORT_SYMBOL(cancel_delayed_work); |
Tejun Heo | 0938349 | 2010-09-16 10:48:29 +0200 | [diff] [blame] | 2952 | |
| 2953 | /** |
Tejun Heo | 401a8d0 | 2010-09-16 10:36:00 +0200 | [diff] [blame] | 2954 | * cancel_delayed_work_sync - cancel a delayed work and wait for it to finish |
| 2955 | * @dwork: the delayed work cancel |
| 2956 | * |
| 2957 | * This is cancel_work_sync() for delayed works. |
| 2958 | * |
| 2959 | * RETURNS: |
| 2960 | * %true if @dwork was pending, %false otherwise. |
| 2961 | */ |
| 2962 | bool cancel_delayed_work_sync(struct delayed_work *dwork) |
Oleg Nesterov | 6e84d64 | 2007-05-09 02:34:46 -0700 | [diff] [blame] | 2963 | { |
Tejun Heo | 36e227d | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 2964 | return __cancel_work_timer(&dwork->work, true); |
Oleg Nesterov | 6e84d64 | 2007-05-09 02:34:46 -0700 | [diff] [blame] | 2965 | } |
Oleg Nesterov | f5a421a | 2007-07-15 23:41:44 -0700 | [diff] [blame] | 2966 | EXPORT_SYMBOL(cancel_delayed_work_sync); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2967 | |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 2968 | /** |
Zhang Rui | c1a220e | 2008-07-23 21:28:39 -0700 | [diff] [blame] | 2969 | * schedule_work_on - put work task on a specific cpu |
| 2970 | * @cpu: cpu to put the work task on |
| 2971 | * @work: job to be done |
| 2972 | * |
| 2973 | * This puts a job on a specific cpu |
| 2974 | */ |
Tejun Heo | d4283e9 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 2975 | bool schedule_work_on(int cpu, struct work_struct *work) |
Zhang Rui | c1a220e | 2008-07-23 21:28:39 -0700 | [diff] [blame] | 2976 | { |
Tejun Heo | d320c03 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 2977 | return queue_work_on(cpu, system_wq, work); |
Zhang Rui | c1a220e | 2008-07-23 21:28:39 -0700 | [diff] [blame] | 2978 | } |
| 2979 | EXPORT_SYMBOL(schedule_work_on); |
| 2980 | |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 2981 | /** |
Dave Jones | ae90dd5 | 2006-06-30 01:40:45 -0400 | [diff] [blame] | 2982 | * schedule_work - put work task in global workqueue |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2983 | * @work: job to be done |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2984 | * |
Tejun Heo | d4283e9 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 2985 | * Returns %false if @work was already on the kernel-global workqueue and |
| 2986 | * %true otherwise. |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 2987 | * |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 2988 | * This puts a job in the kernel-global workqueue if it was not already |
| 2989 | * queued and leaves it in the same position on the kernel-global |
| 2990 | * workqueue otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2991 | */ |
Tejun Heo | d4283e9 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 2992 | bool schedule_work(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2993 | { |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 2994 | return queue_work(system_wq, work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2995 | } |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 2996 | EXPORT_SYMBOL(schedule_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2997 | |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 2998 | /** |
| 2999 | * schedule_delayed_work_on - queue work in global workqueue on CPU after delay |
| 3000 | * @cpu: cpu to use |
| 3001 | * @dwork: job to be done |
| 3002 | * @delay: number of jiffies to wait |
| 3003 | * |
| 3004 | * After waiting for a given time this puts a job in the kernel-global |
| 3005 | * workqueue on the specified CPU. |
| 3006 | */ |
Tejun Heo | d4283e9 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 3007 | bool schedule_delayed_work_on(int cpu, struct delayed_work *dwork, |
| 3008 | unsigned long delay) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3009 | { |
Tejun Heo | d320c03 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3010 | return queue_delayed_work_on(cpu, system_wq, dwork, delay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3011 | } |
Dave Jones | ae90dd5 | 2006-06-30 01:40:45 -0400 | [diff] [blame] | 3012 | EXPORT_SYMBOL(schedule_delayed_work_on); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3013 | |
Andrew Morton | b613677 | 2006-06-25 05:47:49 -0700 | [diff] [blame] | 3014 | /** |
Tejun Heo | 0a13c00 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 3015 | * schedule_delayed_work - put work task in global workqueue after delay |
| 3016 | * @dwork: job to be done |
| 3017 | * @delay: number of jiffies to wait or 0 for immediate execution |
| 3018 | * |
| 3019 | * After waiting for a given time this puts a job in the kernel-global |
| 3020 | * workqueue. |
| 3021 | */ |
Tejun Heo | d4283e9 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 3022 | bool schedule_delayed_work(struct delayed_work *dwork, unsigned long delay) |
Tejun Heo | 0a13c00 | 2012-08-03 10:30:44 -0700 | [diff] [blame] | 3023 | { |
| 3024 | return queue_delayed_work(system_wq, dwork, delay); |
| 3025 | } |
| 3026 | EXPORT_SYMBOL(schedule_delayed_work); |
| 3027 | |
| 3028 | /** |
Tejun Heo | 31ddd87 | 2010-10-19 11:14:49 +0200 | [diff] [blame] | 3029 | * schedule_on_each_cpu - execute a function synchronously on each online CPU |
Andrew Morton | b613677 | 2006-06-25 05:47:49 -0700 | [diff] [blame] | 3030 | * @func: the function to call |
Andrew Morton | b613677 | 2006-06-25 05:47:49 -0700 | [diff] [blame] | 3031 | * |
Tejun Heo | 31ddd87 | 2010-10-19 11:14:49 +0200 | [diff] [blame] | 3032 | * schedule_on_each_cpu() executes @func on each online CPU using the |
| 3033 | * system workqueue and blocks until all CPUs have completed. |
Andrew Morton | b613677 | 2006-06-25 05:47:49 -0700 | [diff] [blame] | 3034 | * schedule_on_each_cpu() is very slow. |
Tejun Heo | 31ddd87 | 2010-10-19 11:14:49 +0200 | [diff] [blame] | 3035 | * |
| 3036 | * RETURNS: |
| 3037 | * 0 on success, -errno on failure. |
Andrew Morton | b613677 | 2006-06-25 05:47:49 -0700 | [diff] [blame] | 3038 | */ |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 3039 | int schedule_on_each_cpu(work_func_t func) |
Christoph Lameter | 15316ba | 2006-01-08 01:00:43 -0800 | [diff] [blame] | 3040 | { |
| 3041 | int cpu; |
Namhyung Kim | 38f5156 | 2010-08-08 14:24:09 +0200 | [diff] [blame] | 3042 | struct work_struct __percpu *works; |
Christoph Lameter | 15316ba | 2006-01-08 01:00:43 -0800 | [diff] [blame] | 3043 | |
Andrew Morton | b613677 | 2006-06-25 05:47:49 -0700 | [diff] [blame] | 3044 | works = alloc_percpu(struct work_struct); |
| 3045 | if (!works) |
Christoph Lameter | 15316ba | 2006-01-08 01:00:43 -0800 | [diff] [blame] | 3046 | return -ENOMEM; |
Andrew Morton | b613677 | 2006-06-25 05:47:49 -0700 | [diff] [blame] | 3047 | |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 3048 | get_online_cpus(); |
Tejun Heo | 9398180 | 2009-11-17 14:06:20 -0800 | [diff] [blame] | 3049 | |
Christoph Lameter | 15316ba | 2006-01-08 01:00:43 -0800 | [diff] [blame] | 3050 | for_each_online_cpu(cpu) { |
Ingo Molnar | 9bfb183 | 2006-12-18 20:05:09 +0100 | [diff] [blame] | 3051 | struct work_struct *work = per_cpu_ptr(works, cpu); |
| 3052 | |
| 3053 | INIT_WORK(work, func); |
Tejun Heo | b71ab8c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3054 | schedule_work_on(cpu, work); |
Andi Kleen | 65a6446 | 2009-10-14 06:22:47 +0200 | [diff] [blame] | 3055 | } |
Tejun Heo | 9398180 | 2009-11-17 14:06:20 -0800 | [diff] [blame] | 3056 | |
| 3057 | for_each_online_cpu(cpu) |
| 3058 | flush_work(per_cpu_ptr(works, cpu)); |
| 3059 | |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 3060 | put_online_cpus(); |
Andrew Morton | b613677 | 2006-06-25 05:47:49 -0700 | [diff] [blame] | 3061 | free_percpu(works); |
Christoph Lameter | 15316ba | 2006-01-08 01:00:43 -0800 | [diff] [blame] | 3062 | return 0; |
| 3063 | } |
| 3064 | |
Alan Stern | eef6a7d | 2010-02-12 17:39:21 +0900 | [diff] [blame] | 3065 | /** |
| 3066 | * flush_scheduled_work - ensure that any scheduled work has run to completion. |
| 3067 | * |
| 3068 | * Forces execution of the kernel-global workqueue and blocks until its |
| 3069 | * completion. |
| 3070 | * |
| 3071 | * Think twice before calling this function! It's very easy to get into |
| 3072 | * trouble if you don't take great care. Either of the following situations |
| 3073 | * will lead to deadlock: |
| 3074 | * |
| 3075 | * One of the work items currently on the workqueue needs to acquire |
| 3076 | * a lock held by your code or its caller. |
| 3077 | * |
| 3078 | * Your code is running in the context of a work routine. |
| 3079 | * |
| 3080 | * They will be detected by lockdep when they occur, but the first might not |
| 3081 | * occur very often. It depends on what work items are on the workqueue and |
| 3082 | * what locks they need, which you have no control over. |
| 3083 | * |
| 3084 | * In most situations flushing the entire workqueue is overkill; you merely |
| 3085 | * need to know that a particular work item isn't queued and isn't running. |
| 3086 | * In such cases you should use cancel_delayed_work_sync() or |
| 3087 | * cancel_work_sync() instead. |
| 3088 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3089 | void flush_scheduled_work(void) |
| 3090 | { |
Tejun Heo | d320c03 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3091 | flush_workqueue(system_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3092 | } |
Dave Jones | ae90dd5 | 2006-06-30 01:40:45 -0400 | [diff] [blame] | 3093 | EXPORT_SYMBOL(flush_scheduled_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3094 | |
| 3095 | /** |
James Bottomley | 1fa44ec | 2006-02-23 12:43:43 -0600 | [diff] [blame] | 3096 | * execute_in_process_context - reliably execute the routine with user context |
| 3097 | * @fn: the function to execute |
James Bottomley | 1fa44ec | 2006-02-23 12:43:43 -0600 | [diff] [blame] | 3098 | * @ew: guaranteed storage for the execute work structure (must |
| 3099 | * be available when the work executes) |
| 3100 | * |
| 3101 | * Executes the function immediately if process context is available, |
| 3102 | * otherwise schedules the function for delayed execution. |
| 3103 | * |
| 3104 | * Returns: 0 - function was executed |
| 3105 | * 1 - function was scheduled for execution |
| 3106 | */ |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 3107 | int execute_in_process_context(work_func_t fn, struct execute_work *ew) |
James Bottomley | 1fa44ec | 2006-02-23 12:43:43 -0600 | [diff] [blame] | 3108 | { |
| 3109 | if (!in_interrupt()) { |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 3110 | fn(&ew->work); |
James Bottomley | 1fa44ec | 2006-02-23 12:43:43 -0600 | [diff] [blame] | 3111 | return 0; |
| 3112 | } |
| 3113 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 3114 | INIT_WORK(&ew->work, fn); |
James Bottomley | 1fa44ec | 2006-02-23 12:43:43 -0600 | [diff] [blame] | 3115 | schedule_work(&ew->work); |
| 3116 | |
| 3117 | return 1; |
| 3118 | } |
| 3119 | EXPORT_SYMBOL_GPL(execute_in_process_context); |
| 3120 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3121 | int keventd_up(void) |
| 3122 | { |
Tejun Heo | d320c03 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3123 | return system_wq != NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3124 | } |
| 3125 | |
Tejun Heo | 7a4e344 | 2013-03-12 11:30:00 -0700 | [diff] [blame^] | 3126 | /** |
| 3127 | * free_workqueue_attrs - free a workqueue_attrs |
| 3128 | * @attrs: workqueue_attrs to free |
| 3129 | * |
| 3130 | * Undo alloc_workqueue_attrs(). |
| 3131 | */ |
| 3132 | void free_workqueue_attrs(struct workqueue_attrs *attrs) |
| 3133 | { |
| 3134 | if (attrs) { |
| 3135 | free_cpumask_var(attrs->cpumask); |
| 3136 | kfree(attrs); |
| 3137 | } |
| 3138 | } |
| 3139 | |
| 3140 | /** |
| 3141 | * alloc_workqueue_attrs - allocate a workqueue_attrs |
| 3142 | * @gfp_mask: allocation mask to use |
| 3143 | * |
| 3144 | * Allocate a new workqueue_attrs, initialize with default settings and |
| 3145 | * return it. Returns NULL on failure. |
| 3146 | */ |
| 3147 | struct workqueue_attrs *alloc_workqueue_attrs(gfp_t gfp_mask) |
| 3148 | { |
| 3149 | struct workqueue_attrs *attrs; |
| 3150 | |
| 3151 | attrs = kzalloc(sizeof(*attrs), gfp_mask); |
| 3152 | if (!attrs) |
| 3153 | goto fail; |
| 3154 | if (!alloc_cpumask_var(&attrs->cpumask, gfp_mask)) |
| 3155 | goto fail; |
| 3156 | |
| 3157 | cpumask_setall(attrs->cpumask); |
| 3158 | return attrs; |
| 3159 | fail: |
| 3160 | free_workqueue_attrs(attrs); |
| 3161 | return NULL; |
| 3162 | } |
| 3163 | |
| 3164 | /** |
| 3165 | * init_worker_pool - initialize a newly zalloc'd worker_pool |
| 3166 | * @pool: worker_pool to initialize |
| 3167 | * |
| 3168 | * Initiailize a newly zalloc'd @pool. It also allocates @pool->attrs. |
| 3169 | * Returns 0 on success, -errno on failure. |
| 3170 | */ |
| 3171 | static int init_worker_pool(struct worker_pool *pool) |
Tejun Heo | 4e1a1f9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3172 | { |
| 3173 | spin_lock_init(&pool->lock); |
| 3174 | pool->flags |= POOL_DISASSOCIATED; |
| 3175 | INIT_LIST_HEAD(&pool->worklist); |
| 3176 | INIT_LIST_HEAD(&pool->idle_list); |
| 3177 | hash_init(pool->busy_hash); |
| 3178 | |
| 3179 | init_timer_deferrable(&pool->idle_timer); |
| 3180 | pool->idle_timer.function = idle_worker_timeout; |
| 3181 | pool->idle_timer.data = (unsigned long)pool; |
| 3182 | |
| 3183 | setup_timer(&pool->mayday_timer, pool_mayday_timeout, |
| 3184 | (unsigned long)pool); |
| 3185 | |
| 3186 | mutex_init(&pool->manager_arb); |
| 3187 | mutex_init(&pool->assoc_mutex); |
| 3188 | ida_init(&pool->worker_ida); |
Tejun Heo | 7a4e344 | 2013-03-12 11:30:00 -0700 | [diff] [blame^] | 3189 | |
| 3190 | pool->attrs = alloc_workqueue_attrs(GFP_KERNEL); |
| 3191 | if (!pool->attrs) |
| 3192 | return -ENOMEM; |
| 3193 | return 0; |
Tejun Heo | 4e1a1f9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3194 | } |
| 3195 | |
Tejun Heo | 30cdf24 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3196 | static int alloc_and_link_pwqs(struct workqueue_struct *wq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3197 | { |
Tejun Heo | 49e3cf4 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3198 | bool highpri = wq->flags & WQ_HIGHPRI; |
Tejun Heo | 30cdf24 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3199 | int cpu; |
Frederic Weisbecker | e1d8aa9 | 2009-01-12 23:15:46 +0100 | [diff] [blame] | 3200 | |
Tejun Heo | 30cdf24 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3201 | if (!(wq->flags & WQ_UNBOUND)) { |
Tejun Heo | 420c0dd | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 3202 | wq->cpu_pwqs = alloc_percpu(struct pool_workqueue); |
| 3203 | if (!wq->cpu_pwqs) |
Tejun Heo | 30cdf24 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3204 | return -ENOMEM; |
| 3205 | |
| 3206 | for_each_possible_cpu(cpu) { |
Tejun Heo | 7fb98ea | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3207 | struct pool_workqueue *pwq = |
| 3208 | per_cpu_ptr(wq->cpu_pwqs, cpu); |
Tejun Heo | 30cdf24 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3209 | |
Tejun Heo | 49e3cf4 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3210 | pwq->pool = get_std_worker_pool(cpu, highpri); |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3211 | list_add_tail_rcu(&pwq->pwqs_node, &wq->pwqs); |
Tejun Heo | 30cdf24 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3212 | } |
| 3213 | } else { |
| 3214 | struct pool_workqueue *pwq; |
| 3215 | |
| 3216 | pwq = kmem_cache_zalloc(pwq_cache, GFP_KERNEL); |
| 3217 | if (!pwq) |
| 3218 | return -ENOMEM; |
| 3219 | |
Tejun Heo | 49e3cf4 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3220 | pwq->pool = get_std_worker_pool(WORK_CPU_UNBOUND, highpri); |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3221 | list_add_tail_rcu(&pwq->pwqs_node, &wq->pwqs); |
Tejun Heo | 30cdf24 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3222 | } |
| 3223 | |
| 3224 | return 0; |
Oleg Nesterov | 3af24433 | 2007-05-09 02:34:09 -0700 | [diff] [blame] | 3225 | } |
| 3226 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 3227 | static void free_pwqs(struct workqueue_struct *wq) |
Oleg Nesterov | 06ba38a | 2007-05-09 02:34:15 -0700 | [diff] [blame] | 3228 | { |
Lai Jiangshan | e06ffa1 | 2012-03-09 18:03:20 +0800 | [diff] [blame] | 3229 | if (!(wq->flags & WQ_UNBOUND)) |
Tejun Heo | 420c0dd | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 3230 | free_percpu(wq->cpu_pwqs); |
| 3231 | else if (!list_empty(&wq->pwqs)) |
| 3232 | kmem_cache_free(pwq_cache, list_first_entry(&wq->pwqs, |
| 3233 | struct pool_workqueue, pwqs_node)); |
Oleg Nesterov | 06ba38a | 2007-05-09 02:34:15 -0700 | [diff] [blame] | 3234 | } |
| 3235 | |
Tejun Heo | f342179 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 3236 | static int wq_clamp_max_active(int max_active, unsigned int flags, |
| 3237 | const char *name) |
Tejun Heo | b71ab8c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3238 | { |
Tejun Heo | f342179 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 3239 | int lim = flags & WQ_UNBOUND ? WQ_UNBOUND_MAX_ACTIVE : WQ_MAX_ACTIVE; |
| 3240 | |
| 3241 | if (max_active < 1 || max_active > lim) |
Valentin Ilie | 044c782 | 2012-08-19 00:52:42 +0300 | [diff] [blame] | 3242 | pr_warn("workqueue: max_active %d requested for %s is out of range, clamping between %d and %d\n", |
| 3243 | max_active, name, 1, lim); |
Tejun Heo | b71ab8c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3244 | |
Tejun Heo | f342179 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 3245 | return clamp_val(max_active, 1, lim); |
Tejun Heo | b71ab8c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3246 | } |
| 3247 | |
Tejun Heo | b196be8 | 2012-01-10 15:11:35 -0800 | [diff] [blame] | 3248 | struct workqueue_struct *__alloc_workqueue_key(const char *fmt, |
Tejun Heo | d320c03 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3249 | unsigned int flags, |
| 3250 | int max_active, |
| 3251 | struct lock_class_key *key, |
Tejun Heo | b196be8 | 2012-01-10 15:11:35 -0800 | [diff] [blame] | 3252 | const char *lock_name, ...) |
Oleg Nesterov | 3af24433 | 2007-05-09 02:34:09 -0700 | [diff] [blame] | 3253 | { |
Tejun Heo | b196be8 | 2012-01-10 15:11:35 -0800 | [diff] [blame] | 3254 | va_list args, args1; |
Oleg Nesterov | 3af24433 | 2007-05-09 02:34:09 -0700 | [diff] [blame] | 3255 | struct workqueue_struct *wq; |
Tejun Heo | 49e3cf4 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3256 | struct pool_workqueue *pwq; |
Tejun Heo | b196be8 | 2012-01-10 15:11:35 -0800 | [diff] [blame] | 3257 | size_t namelen; |
| 3258 | |
| 3259 | /* determine namelen, allocate wq and format name */ |
| 3260 | va_start(args, lock_name); |
| 3261 | va_copy(args1, args); |
| 3262 | namelen = vsnprintf(NULL, 0, fmt, args) + 1; |
| 3263 | |
| 3264 | wq = kzalloc(sizeof(*wq) + namelen, GFP_KERNEL); |
| 3265 | if (!wq) |
| 3266 | goto err; |
| 3267 | |
| 3268 | vsnprintf(wq->name, namelen, fmt, args1); |
| 3269 | va_end(args); |
| 3270 | va_end(args1); |
Oleg Nesterov | 3af24433 | 2007-05-09 02:34:09 -0700 | [diff] [blame] | 3271 | |
Tejun Heo | f342179 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 3272 | /* |
Tejun Heo | 6370a6a | 2010-10-11 15:12:27 +0200 | [diff] [blame] | 3273 | * Workqueues which may be used during memory reclaim should |
| 3274 | * have a rescuer to guarantee forward progress. |
| 3275 | */ |
| 3276 | if (flags & WQ_MEM_RECLAIM) |
| 3277 | flags |= WQ_RESCUER; |
| 3278 | |
Tejun Heo | d320c03 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3279 | max_active = max_active ?: WQ_DFL_ACTIVE; |
Tejun Heo | b196be8 | 2012-01-10 15:11:35 -0800 | [diff] [blame] | 3280 | max_active = wq_clamp_max_active(max_active, flags, wq->name); |
Oleg Nesterov | 3af24433 | 2007-05-09 02:34:09 -0700 | [diff] [blame] | 3281 | |
Tejun Heo | b196be8 | 2012-01-10 15:11:35 -0800 | [diff] [blame] | 3282 | /* init wq */ |
Tejun Heo | 97e37d7 | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 3283 | wq->flags = flags; |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3284 | wq->saved_max_active = max_active; |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 3285 | mutex_init(&wq->flush_mutex); |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 3286 | atomic_set(&wq->nr_pwqs_to_flush, 0); |
Tejun Heo | 30cdf24 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3287 | INIT_LIST_HEAD(&wq->pwqs); |
Tejun Heo | 73f53c4 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 3288 | INIT_LIST_HEAD(&wq->flusher_queue); |
| 3289 | INIT_LIST_HEAD(&wq->flusher_overflow); |
Tejun Heo | 493a172 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 3290 | INIT_LIST_HEAD(&wq->maydays); |
Oleg Nesterov | 3af24433 | 2007-05-09 02:34:09 -0700 | [diff] [blame] | 3291 | |
Johannes Berg | eb13ba8 | 2008-01-16 09:51:58 +0100 | [diff] [blame] | 3292 | lockdep_init_map(&wq->lockdep_map, lock_name, key, 0); |
Oleg Nesterov | cce1a16 | 2007-05-09 02:34:13 -0700 | [diff] [blame] | 3293 | INIT_LIST_HEAD(&wq->list); |
Oleg Nesterov | 3af24433 | 2007-05-09 02:34:09 -0700 | [diff] [blame] | 3294 | |
Tejun Heo | 30cdf24 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3295 | if (alloc_and_link_pwqs(wq) < 0) |
Tejun Heo | bdbc5dd | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 3296 | goto err; |
| 3297 | |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3298 | local_irq_disable(); |
Tejun Heo | 49e3cf4 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3299 | for_each_pwq(pwq, wq) { |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 3300 | BUG_ON((unsigned long)pwq & WORK_STRUCT_FLAG_MASK); |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 3301 | pwq->wq = wq; |
| 3302 | pwq->flush_color = -1; |
| 3303 | pwq->max_active = max_active; |
| 3304 | INIT_LIST_HEAD(&pwq->delayed_works); |
Tejun Heo | 493a172 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 3305 | INIT_LIST_HEAD(&pwq->mayday_node); |
Oleg Nesterov | 3af24433 | 2007-05-09 02:34:09 -0700 | [diff] [blame] | 3306 | } |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3307 | local_irq_enable(); |
Oleg Nesterov | 3af24433 | 2007-05-09 02:34:09 -0700 | [diff] [blame] | 3308 | |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3309 | if (flags & WQ_RESCUER) { |
| 3310 | struct worker *rescuer; |
| 3311 | |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3312 | wq->rescuer = rescuer = alloc_worker(); |
| 3313 | if (!rescuer) |
| 3314 | goto err; |
| 3315 | |
Tejun Heo | 111c225 | 2013-01-17 17:16:24 -0800 | [diff] [blame] | 3316 | rescuer->rescue_wq = wq; |
| 3317 | rescuer->task = kthread_create(rescuer_thread, rescuer, "%s", |
Tejun Heo | b196be8 | 2012-01-10 15:11:35 -0800 | [diff] [blame] | 3318 | wq->name); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3319 | if (IS_ERR(rescuer->task)) |
| 3320 | goto err; |
| 3321 | |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3322 | rescuer->task->flags |= PF_THREAD_BOUND; |
| 3323 | wake_up_process(rescuer->task); |
Oleg Nesterov | 3af24433 | 2007-05-09 02:34:09 -0700 | [diff] [blame] | 3324 | } |
Oleg Nesterov | 3af24433 | 2007-05-09 02:34:09 -0700 | [diff] [blame] | 3325 | |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3326 | /* |
| 3327 | * workqueue_lock protects global freeze state and workqueues |
| 3328 | * list. Grab it, set max_active accordingly and add the new |
| 3329 | * workqueue to workqueues list. |
| 3330 | */ |
Tejun Heo | e98d5b1 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3331 | spin_lock_irq(&workqueue_lock); |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3332 | |
Tejun Heo | 58a69cb | 2011-02-16 09:25:31 +0100 | [diff] [blame] | 3333 | if (workqueue_freezing && wq->flags & WQ_FREEZABLE) |
Tejun Heo | 49e3cf4 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3334 | for_each_pwq(pwq, wq) |
| 3335 | pwq->max_active = 0; |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3336 | |
Tejun Heo | 1537663 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 3337 | list_add(&wq->list, &workqueues); |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3338 | |
Tejun Heo | e98d5b1 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3339 | spin_unlock_irq(&workqueue_lock); |
Tejun Heo | 1537663 | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 3340 | |
Oleg Nesterov | 3af24433 | 2007-05-09 02:34:09 -0700 | [diff] [blame] | 3341 | return wq; |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 3342 | err: |
| 3343 | if (wq) { |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 3344 | free_pwqs(wq); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3345 | kfree(wq->rescuer); |
Tejun Heo | 4690c4a | 2010-06-29 10:07:10 +0200 | [diff] [blame] | 3346 | kfree(wq); |
| 3347 | } |
| 3348 | return NULL; |
Oleg Nesterov | 3af24433 | 2007-05-09 02:34:09 -0700 | [diff] [blame] | 3349 | } |
Tejun Heo | d320c03 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3350 | EXPORT_SYMBOL_GPL(__alloc_workqueue_key); |
Oleg Nesterov | 3af24433 | 2007-05-09 02:34:09 -0700 | [diff] [blame] | 3351 | |
| 3352 | /** |
| 3353 | * destroy_workqueue - safely terminate a workqueue |
| 3354 | * @wq: target workqueue |
| 3355 | * |
| 3356 | * Safely destroy a workqueue. All work currently pending will be done first. |
| 3357 | */ |
| 3358 | void destroy_workqueue(struct workqueue_struct *wq) |
| 3359 | { |
Tejun Heo | 49e3cf4 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3360 | struct pool_workqueue *pwq; |
Oleg Nesterov | 3af24433 | 2007-05-09 02:34:09 -0700 | [diff] [blame] | 3361 | |
Tejun Heo | 9c5a2ba | 2011-04-05 18:01:44 +0200 | [diff] [blame] | 3362 | /* drain it before proceeding with destruction */ |
| 3363 | drain_workqueue(wq); |
Tejun Heo | c8efcc2 | 2010-12-20 19:32:04 +0100 | [diff] [blame] | 3364 | |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3365 | spin_lock_irq(&workqueue_lock); |
| 3366 | |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3367 | /* sanity checks */ |
Tejun Heo | 49e3cf4 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3368 | for_each_pwq(pwq, wq) { |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3369 | int i; |
| 3370 | |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3371 | for (i = 0; i < WORK_NR_COLORS; i++) { |
| 3372 | if (WARN_ON(pwq->nr_in_flight[i])) { |
| 3373 | spin_unlock_irq(&workqueue_lock); |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3374 | return; |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3375 | } |
| 3376 | } |
| 3377 | |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3378 | if (WARN_ON(pwq->nr_active) || |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3379 | WARN_ON(!list_empty(&pwq->delayed_works))) { |
| 3380 | spin_unlock_irq(&workqueue_lock); |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3381 | return; |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3382 | } |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3383 | } |
| 3384 | |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3385 | /* |
| 3386 | * wq list is used to freeze wq, remove from list after |
| 3387 | * flushing is complete in case freeze races us. |
| 3388 | */ |
Oleg Nesterov | b1f4ec1 | 2007-05-09 02:34:12 -0700 | [diff] [blame] | 3389 | list_del(&wq->list); |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3390 | |
Tejun Heo | e98d5b1 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3391 | spin_unlock_irq(&workqueue_lock); |
Oleg Nesterov | 3af24433 | 2007-05-09 02:34:09 -0700 | [diff] [blame] | 3392 | |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3393 | if (wq->flags & WQ_RESCUER) { |
| 3394 | kthread_stop(wq->rescuer->task); |
Xiaotian Feng | 8d9df9f | 2010-08-16 09:54:28 +0200 | [diff] [blame] | 3395 | kfree(wq->rescuer); |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3396 | } |
| 3397 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 3398 | free_pwqs(wq); |
Oleg Nesterov | 3af24433 | 2007-05-09 02:34:09 -0700 | [diff] [blame] | 3399 | kfree(wq); |
| 3400 | } |
| 3401 | EXPORT_SYMBOL_GPL(destroy_workqueue); |
| 3402 | |
Tejun Heo | dcd989c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3403 | /** |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 3404 | * pwq_set_max_active - adjust max_active of a pwq |
| 3405 | * @pwq: target pool_workqueue |
Lai Jiangshan | 9f4bd4c | 2012-09-19 10:40:48 -0700 | [diff] [blame] | 3406 | * @max_active: new max_active value. |
| 3407 | * |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 3408 | * Set @pwq->max_active to @max_active and activate delayed works if |
Lai Jiangshan | 9f4bd4c | 2012-09-19 10:40:48 -0700 | [diff] [blame] | 3409 | * increased. |
| 3410 | * |
| 3411 | * CONTEXT: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3412 | * spin_lock_irq(pool->lock). |
Lai Jiangshan | 9f4bd4c | 2012-09-19 10:40:48 -0700 | [diff] [blame] | 3413 | */ |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 3414 | static void pwq_set_max_active(struct pool_workqueue *pwq, int max_active) |
Lai Jiangshan | 9f4bd4c | 2012-09-19 10:40:48 -0700 | [diff] [blame] | 3415 | { |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 3416 | pwq->max_active = max_active; |
Lai Jiangshan | 9f4bd4c | 2012-09-19 10:40:48 -0700 | [diff] [blame] | 3417 | |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 3418 | while (!list_empty(&pwq->delayed_works) && |
| 3419 | pwq->nr_active < pwq->max_active) |
| 3420 | pwq_activate_first_delayed(pwq); |
Lai Jiangshan | 9f4bd4c | 2012-09-19 10:40:48 -0700 | [diff] [blame] | 3421 | } |
| 3422 | |
| 3423 | /** |
Tejun Heo | dcd989c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3424 | * workqueue_set_max_active - adjust max_active of a workqueue |
| 3425 | * @wq: target workqueue |
| 3426 | * @max_active: new max_active value. |
| 3427 | * |
| 3428 | * Set max_active of @wq to @max_active. |
| 3429 | * |
| 3430 | * CONTEXT: |
| 3431 | * Don't call from IRQ context. |
| 3432 | */ |
| 3433 | void workqueue_set_max_active(struct workqueue_struct *wq, int max_active) |
| 3434 | { |
Tejun Heo | 49e3cf4 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3435 | struct pool_workqueue *pwq; |
Tejun Heo | dcd989c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3436 | |
Tejun Heo | f342179 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 3437 | max_active = wq_clamp_max_active(max_active, wq->flags, wq->name); |
Tejun Heo | dcd989c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3438 | |
Tejun Heo | e98d5b1 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3439 | spin_lock_irq(&workqueue_lock); |
Tejun Heo | dcd989c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3440 | |
| 3441 | wq->saved_max_active = max_active; |
| 3442 | |
Tejun Heo | 49e3cf4 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3443 | for_each_pwq(pwq, wq) { |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 3444 | struct worker_pool *pool = pwq->pool; |
Tejun Heo | dcd989c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3445 | |
Tejun Heo | e98d5b1 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3446 | spin_lock(&pool->lock); |
Tejun Heo | dcd989c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3447 | |
Tejun Heo | 58a69cb | 2011-02-16 09:25:31 +0100 | [diff] [blame] | 3448 | if (!(wq->flags & WQ_FREEZABLE) || |
Tejun Heo | 35b6bb6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3449 | !(pool->flags & POOL_FREEZING)) |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 3450 | pwq_set_max_active(pwq, max_active); |
Tejun Heo | dcd989c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3451 | |
Tejun Heo | e98d5b1 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3452 | spin_unlock(&pool->lock); |
Tejun Heo | dcd989c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3453 | } |
| 3454 | |
Tejun Heo | e98d5b1 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3455 | spin_unlock_irq(&workqueue_lock); |
Tejun Heo | dcd989c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3456 | } |
| 3457 | EXPORT_SYMBOL_GPL(workqueue_set_max_active); |
| 3458 | |
| 3459 | /** |
| 3460 | * workqueue_congested - test whether a workqueue is congested |
| 3461 | * @cpu: CPU in question |
| 3462 | * @wq: target workqueue |
| 3463 | * |
| 3464 | * Test whether @wq's cpu workqueue for @cpu is congested. There is |
| 3465 | * no synchronization around this function and the test result is |
| 3466 | * unreliable and only useful as advisory hints or for debugging. |
| 3467 | * |
| 3468 | * RETURNS: |
| 3469 | * %true if congested, %false otherwise. |
| 3470 | */ |
Tejun Heo | d84ff05 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 3471 | bool workqueue_congested(int cpu, struct workqueue_struct *wq) |
Tejun Heo | dcd989c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3472 | { |
Tejun Heo | 7fb98ea | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3473 | struct pool_workqueue *pwq; |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3474 | bool ret; |
| 3475 | |
| 3476 | preempt_disable(); |
Tejun Heo | 7fb98ea | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3477 | |
| 3478 | if (!(wq->flags & WQ_UNBOUND)) |
| 3479 | pwq = per_cpu_ptr(wq->cpu_pwqs, cpu); |
| 3480 | else |
| 3481 | pwq = first_pwq(wq); |
Tejun Heo | dcd989c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3482 | |
Tejun Heo | 76af4d9 | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3483 | ret = !list_empty(&pwq->delayed_works); |
| 3484 | preempt_enable(); |
| 3485 | |
| 3486 | return ret; |
Tejun Heo | dcd989c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3487 | } |
| 3488 | EXPORT_SYMBOL_GPL(workqueue_congested); |
| 3489 | |
| 3490 | /** |
Tejun Heo | dcd989c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3491 | * work_busy - test whether a work is currently pending or running |
| 3492 | * @work: the work to be tested |
| 3493 | * |
| 3494 | * Test whether @work is currently pending or running. There is no |
| 3495 | * synchronization around this function and the test result is |
| 3496 | * unreliable and only useful as advisory hints or for debugging. |
Tejun Heo | dcd989c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3497 | * |
| 3498 | * RETURNS: |
| 3499 | * OR'd bitmask of WORK_BUSY_* bits. |
| 3500 | */ |
| 3501 | unsigned int work_busy(struct work_struct *work) |
| 3502 | { |
Tejun Heo | fa1b54e | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3503 | struct worker_pool *pool; |
Tejun Heo | dcd989c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3504 | unsigned long flags; |
| 3505 | unsigned int ret = 0; |
| 3506 | |
Tejun Heo | dcd989c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3507 | if (work_pending(work)) |
| 3508 | ret |= WORK_BUSY_PENDING; |
Tejun Heo | dcd989c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3509 | |
Tejun Heo | fa1b54e | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3510 | local_irq_save(flags); |
| 3511 | pool = get_work_pool(work); |
Lai Jiangshan | 038366c | 2013-02-06 18:04:53 -0800 | [diff] [blame] | 3512 | if (pool) { |
Tejun Heo | fa1b54e | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3513 | spin_lock(&pool->lock); |
Lai Jiangshan | 038366c | 2013-02-06 18:04:53 -0800 | [diff] [blame] | 3514 | if (find_worker_executing_work(pool, work)) |
| 3515 | ret |= WORK_BUSY_RUNNING; |
Tejun Heo | fa1b54e | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3516 | spin_unlock(&pool->lock); |
Lai Jiangshan | 038366c | 2013-02-06 18:04:53 -0800 | [diff] [blame] | 3517 | } |
Tejun Heo | fa1b54e | 2013-03-12 11:30:00 -0700 | [diff] [blame] | 3518 | local_irq_restore(flags); |
Tejun Heo | dcd989c | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3519 | |
| 3520 | return ret; |
| 3521 | } |
| 3522 | EXPORT_SYMBOL_GPL(work_busy); |
| 3523 | |
Tejun Heo | db7bccf | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3524 | /* |
| 3525 | * CPU hotplug. |
| 3526 | * |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3527 | * There are two challenges in supporting CPU hotplug. Firstly, there |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 3528 | * are a lot of assumptions on strong associations among work, pwq and |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 3529 | * pool which make migrating pending and scheduled works very |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3530 | * difficult to implement without impacting hot paths. Secondly, |
Tejun Heo | 94cf58b | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3531 | * worker pools serve mix of short, long and very long running works making |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3532 | * blocked draining impractical. |
| 3533 | * |
Tejun Heo | 2464757 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3534 | * This is solved by allowing the pools to be disassociated from the CPU |
Tejun Heo | 628c78e | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 3535 | * running as an unbound one and allowing it to be reattached later if the |
| 3536 | * cpu comes back online. |
Tejun Heo | db7bccf | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3537 | */ |
| 3538 | |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 3539 | static void wq_unbind_fn(struct work_struct *work) |
Tejun Heo | db7bccf | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3540 | { |
Tejun Heo | 38db41d | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 3541 | int cpu = smp_processor_id(); |
Tejun Heo | 4ce62e9 | 2012-07-13 22:16:44 -0700 | [diff] [blame] | 3542 | struct worker_pool *pool; |
Tejun Heo | db7bccf | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3543 | struct worker *worker; |
Tejun Heo | db7bccf | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3544 | int i; |
| 3545 | |
Tejun Heo | 38db41d | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 3546 | for_each_std_worker_pool(pool, cpu) { |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3547 | WARN_ON_ONCE(cpu != smp_processor_id()); |
Tejun Heo | 94cf58b | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3548 | |
| 3549 | mutex_lock(&pool->assoc_mutex); |
| 3550 | spin_lock_irq(&pool->lock); |
| 3551 | |
| 3552 | /* |
| 3553 | * We've claimed all manager positions. Make all workers |
| 3554 | * unbound and set DISASSOCIATED. Before this, all workers |
| 3555 | * except for the ones which are still executing works from |
| 3556 | * before the last CPU down must be on the cpu. After |
| 3557 | * this, they may become diasporas. |
| 3558 | */ |
Tejun Heo | 4ce62e9 | 2012-07-13 22:16:44 -0700 | [diff] [blame] | 3559 | list_for_each_entry(worker, &pool->idle_list, entry) |
Tejun Heo | 403c821 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 3560 | worker->flags |= WORKER_UNBOUND; |
Tejun Heo | db7bccf | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3561 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 3562 | for_each_busy_worker(worker, i, pool) |
Tejun Heo | c9e7cf2 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3563 | worker->flags |= WORKER_UNBOUND; |
Tejun Heo | db7bccf | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3564 | |
Tejun Heo | 2464757 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3565 | pool->flags |= POOL_DISASSOCIATED; |
Tejun Heo | f2d5a0e | 2012-07-17 12:39:26 -0700 | [diff] [blame] | 3566 | |
Tejun Heo | 94cf58b | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3567 | spin_unlock_irq(&pool->lock); |
| 3568 | mutex_unlock(&pool->assoc_mutex); |
| 3569 | } |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3570 | |
| 3571 | /* |
Tejun Heo | 628c78e | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 3572 | * Call schedule() so that we cross rq->lock and thus can guarantee |
| 3573 | * sched callbacks see the %WORKER_UNBOUND flag. This is necessary |
| 3574 | * as scheduler callbacks may be invoked from other cpus. |
| 3575 | */ |
| 3576 | schedule(); |
| 3577 | |
| 3578 | /* |
| 3579 | * Sched callbacks are disabled now. Zap nr_running. After this, |
| 3580 | * nr_running stays zero and need_more_worker() and keep_working() |
Tejun Heo | 38db41d | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 3581 | * are always true as long as the worklist is not empty. Pools on |
| 3582 | * @cpu now behave as unbound (in terms of concurrency management) |
| 3583 | * pools which are served by workers tied to the CPU. |
Tejun Heo | 628c78e | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 3584 | * |
| 3585 | * On return from this function, the current worker would trigger |
| 3586 | * unbound chain execution of pending work items if other workers |
| 3587 | * didn't already. |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3588 | */ |
Tejun Heo | 38db41d | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 3589 | for_each_std_worker_pool(pool, cpu) |
Tejun Heo | e19e397 | 2013-01-24 11:39:44 -0800 | [diff] [blame] | 3590 | atomic_set(&pool->nr_running, 0); |
Tejun Heo | db7bccf | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3591 | } |
| 3592 | |
Tejun Heo | 8db25e7 | 2012-07-17 12:39:28 -0700 | [diff] [blame] | 3593 | /* |
| 3594 | * Workqueues should be brought up before normal priority CPU notifiers. |
| 3595 | * This will be registered high priority CPU notifier. |
| 3596 | */ |
Lai Jiangshan | 9fdf9b7 | 2012-09-18 09:59:23 -0700 | [diff] [blame] | 3597 | static int __cpuinit workqueue_cpu_up_callback(struct notifier_block *nfb, |
Tejun Heo | 8db25e7 | 2012-07-17 12:39:28 -0700 | [diff] [blame] | 3598 | unsigned long action, |
| 3599 | void *hcpu) |
Oleg Nesterov | 3af24433 | 2007-05-09 02:34:09 -0700 | [diff] [blame] | 3600 | { |
Tejun Heo | d84ff05 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 3601 | int cpu = (unsigned long)hcpu; |
Tejun Heo | 4ce62e9 | 2012-07-13 22:16:44 -0700 | [diff] [blame] | 3602 | struct worker_pool *pool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3603 | |
Tejun Heo | 8db25e7 | 2012-07-17 12:39:28 -0700 | [diff] [blame] | 3604 | switch (action & ~CPU_TASKS_FROZEN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3605 | case CPU_UP_PREPARE: |
Tejun Heo | 38db41d | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 3606 | for_each_std_worker_pool(pool, cpu) { |
Tejun Heo | 3ce6337 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 3607 | struct worker *worker; |
| 3608 | |
| 3609 | if (pool->nr_workers) |
| 3610 | continue; |
| 3611 | |
| 3612 | worker = create_worker(pool); |
| 3613 | if (!worker) |
| 3614 | return NOTIFY_BAD; |
| 3615 | |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3616 | spin_lock_irq(&pool->lock); |
Tejun Heo | 3ce6337 | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 3617 | start_worker(worker); |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3618 | spin_unlock_irq(&pool->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3619 | } |
Tejun Heo | db7bccf | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3620 | break; |
Oleg Nesterov | 00dfcaf | 2008-04-29 01:00:27 -0700 | [diff] [blame] | 3621 | |
Tejun Heo | 6575820 | 2012-07-17 12:39:26 -0700 | [diff] [blame] | 3622 | case CPU_DOWN_FAILED: |
| 3623 | case CPU_ONLINE: |
Tejun Heo | 38db41d | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 3624 | for_each_std_worker_pool(pool, cpu) { |
Tejun Heo | 94cf58b | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3625 | mutex_lock(&pool->assoc_mutex); |
| 3626 | spin_lock_irq(&pool->lock); |
| 3627 | |
Tejun Heo | 2464757 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3628 | pool->flags &= ~POOL_DISASSOCIATED; |
Tejun Heo | 94cf58b | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3629 | rebind_workers(pool); |
| 3630 | |
| 3631 | spin_unlock_irq(&pool->lock); |
| 3632 | mutex_unlock(&pool->assoc_mutex); |
| 3633 | } |
Tejun Heo | 8db25e7 | 2012-07-17 12:39:28 -0700 | [diff] [blame] | 3634 | break; |
Tejun Heo | 6575820 | 2012-07-17 12:39:26 -0700 | [diff] [blame] | 3635 | } |
| 3636 | return NOTIFY_OK; |
| 3637 | } |
| 3638 | |
| 3639 | /* |
| 3640 | * Workqueues should be brought down after normal priority CPU notifiers. |
| 3641 | * This will be registered as low priority CPU notifier. |
| 3642 | */ |
Lai Jiangshan | 9fdf9b7 | 2012-09-18 09:59:23 -0700 | [diff] [blame] | 3643 | static int __cpuinit workqueue_cpu_down_callback(struct notifier_block *nfb, |
Tejun Heo | 6575820 | 2012-07-17 12:39:26 -0700 | [diff] [blame] | 3644 | unsigned long action, |
| 3645 | void *hcpu) |
| 3646 | { |
Tejun Heo | d84ff05 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 3647 | int cpu = (unsigned long)hcpu; |
Tejun Heo | 8db25e7 | 2012-07-17 12:39:28 -0700 | [diff] [blame] | 3648 | struct work_struct unbind_work; |
| 3649 | |
Tejun Heo | 6575820 | 2012-07-17 12:39:26 -0700 | [diff] [blame] | 3650 | switch (action & ~CPU_TASKS_FROZEN) { |
| 3651 | case CPU_DOWN_PREPARE: |
Tejun Heo | 8db25e7 | 2012-07-17 12:39:28 -0700 | [diff] [blame] | 3652 | /* unbinding should happen on the local CPU */ |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 3653 | INIT_WORK_ONSTACK(&unbind_work, wq_unbind_fn); |
Joonsoo Kim | 7635d2f | 2012-08-15 23:25:41 +0900 | [diff] [blame] | 3654 | queue_work_on(cpu, system_highpri_wq, &unbind_work); |
Tejun Heo | 8db25e7 | 2012-07-17 12:39:28 -0700 | [diff] [blame] | 3655 | flush_work(&unbind_work); |
| 3656 | break; |
Tejun Heo | 6575820 | 2012-07-17 12:39:26 -0700 | [diff] [blame] | 3657 | } |
| 3658 | return NOTIFY_OK; |
| 3659 | } |
| 3660 | |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 3661 | #ifdef CONFIG_SMP |
Rusty Russell | 8ccad40 | 2009-01-16 15:31:15 -0800 | [diff] [blame] | 3662 | |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 3663 | struct work_for_cpu { |
Tejun Heo | ed48ece | 2012-09-18 12:48:43 -0700 | [diff] [blame] | 3664 | struct work_struct work; |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 3665 | long (*fn)(void *); |
| 3666 | void *arg; |
| 3667 | long ret; |
| 3668 | }; |
| 3669 | |
Tejun Heo | ed48ece | 2012-09-18 12:48:43 -0700 | [diff] [blame] | 3670 | static void work_for_cpu_fn(struct work_struct *work) |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 3671 | { |
Tejun Heo | ed48ece | 2012-09-18 12:48:43 -0700 | [diff] [blame] | 3672 | struct work_for_cpu *wfc = container_of(work, struct work_for_cpu, work); |
| 3673 | |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 3674 | wfc->ret = wfc->fn(wfc->arg); |
| 3675 | } |
| 3676 | |
| 3677 | /** |
| 3678 | * work_on_cpu - run a function in user context on a particular cpu |
| 3679 | * @cpu: the cpu to run on |
| 3680 | * @fn: the function to run |
| 3681 | * @arg: the function arg |
| 3682 | * |
Rusty Russell | 31ad908 | 2009-01-16 15:31:15 -0800 | [diff] [blame] | 3683 | * This will return the value @fn returns. |
| 3684 | * It is up to the caller to ensure that the cpu doesn't go offline. |
Andrew Morton | 6b44003 | 2009-04-09 09:50:37 -0600 | [diff] [blame] | 3685 | * The caller must not hold any locks which would prevent @fn from completing. |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 3686 | */ |
Tejun Heo | d84ff05 | 2013-03-12 11:29:59 -0700 | [diff] [blame] | 3687 | long work_on_cpu(int cpu, long (*fn)(void *), void *arg) |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 3688 | { |
Tejun Heo | ed48ece | 2012-09-18 12:48:43 -0700 | [diff] [blame] | 3689 | struct work_for_cpu wfc = { .fn = fn, .arg = arg }; |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 3690 | |
Tejun Heo | ed48ece | 2012-09-18 12:48:43 -0700 | [diff] [blame] | 3691 | INIT_WORK_ONSTACK(&wfc.work, work_for_cpu_fn); |
| 3692 | schedule_work_on(cpu, &wfc.work); |
| 3693 | flush_work(&wfc.work); |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 3694 | return wfc.ret; |
| 3695 | } |
| 3696 | EXPORT_SYMBOL_GPL(work_on_cpu); |
| 3697 | #endif /* CONFIG_SMP */ |
| 3698 | |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3699 | #ifdef CONFIG_FREEZER |
Rusty Russell | e7577c5 | 2009-01-01 10:12:25 +1030 | [diff] [blame] | 3700 | |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3701 | /** |
| 3702 | * freeze_workqueues_begin - begin freezing workqueues |
| 3703 | * |
Tejun Heo | 58a69cb | 2011-02-16 09:25:31 +0100 | [diff] [blame] | 3704 | * Start freezing workqueues. After this function returns, all freezable |
| 3705 | * workqueues will queue new works to their frozen_works list instead of |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 3706 | * pool->worklist. |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3707 | * |
| 3708 | * CONTEXT: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3709 | * Grabs and releases workqueue_lock and pool->lock's. |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3710 | */ |
| 3711 | void freeze_workqueues_begin(void) |
| 3712 | { |
Tejun Heo | 1711696 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3713 | struct worker_pool *pool; |
Tejun Heo | 24b8a84 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3714 | struct workqueue_struct *wq; |
| 3715 | struct pool_workqueue *pwq; |
Tejun Heo | 1711696 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3716 | int id; |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3717 | |
Tejun Heo | e98d5b1 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3718 | spin_lock_irq(&workqueue_lock); |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3719 | |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3720 | WARN_ON_ONCE(workqueue_freezing); |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3721 | workqueue_freezing = true; |
| 3722 | |
Tejun Heo | 24b8a84 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3723 | /* set FREEZING */ |
Tejun Heo | 1711696 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3724 | for_each_pool(pool, id) { |
Tejun Heo | 1711696 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3725 | spin_lock(&pool->lock); |
Tejun Heo | 1711696 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3726 | WARN_ON_ONCE(pool->flags & POOL_FREEZING); |
| 3727 | pool->flags |= POOL_FREEZING; |
Tejun Heo | 1711696 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3728 | spin_unlock(&pool->lock); |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3729 | } |
| 3730 | |
Tejun Heo | 24b8a84 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3731 | /* suppress further executions by setting max_active to zero */ |
| 3732 | list_for_each_entry(wq, &workqueues, list) { |
| 3733 | if (!(wq->flags & WQ_FREEZABLE)) |
| 3734 | continue; |
| 3735 | |
| 3736 | for_each_pwq(pwq, wq) { |
| 3737 | spin_lock(&pwq->pool->lock); |
| 3738 | pwq->max_active = 0; |
| 3739 | spin_unlock(&pwq->pool->lock); |
| 3740 | } |
| 3741 | } |
| 3742 | |
Tejun Heo | e98d5b1 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3743 | spin_unlock_irq(&workqueue_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3744 | } |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3745 | |
| 3746 | /** |
Tejun Heo | 58a69cb | 2011-02-16 09:25:31 +0100 | [diff] [blame] | 3747 | * freeze_workqueues_busy - are freezable workqueues still busy? |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3748 | * |
| 3749 | * Check whether freezing is complete. This function must be called |
| 3750 | * between freeze_workqueues_begin() and thaw_workqueues(). |
| 3751 | * |
| 3752 | * CONTEXT: |
| 3753 | * Grabs and releases workqueue_lock. |
| 3754 | * |
| 3755 | * RETURNS: |
Tejun Heo | 58a69cb | 2011-02-16 09:25:31 +0100 | [diff] [blame] | 3756 | * %true if some freezable workqueues are still busy. %false if freezing |
| 3757 | * is complete. |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3758 | */ |
| 3759 | bool freeze_workqueues_busy(void) |
| 3760 | { |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3761 | bool busy = false; |
Tejun Heo | 24b8a84 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3762 | struct workqueue_struct *wq; |
| 3763 | struct pool_workqueue *pwq; |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3764 | |
Tejun Heo | e98d5b1 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3765 | spin_lock_irq(&workqueue_lock); |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3766 | |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3767 | WARN_ON_ONCE(!workqueue_freezing); |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3768 | |
Tejun Heo | 24b8a84 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3769 | list_for_each_entry(wq, &workqueues, list) { |
| 3770 | if (!(wq->flags & WQ_FREEZABLE)) |
| 3771 | continue; |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3772 | /* |
| 3773 | * nr_active is monotonically decreasing. It's safe |
| 3774 | * to peek without lock. |
| 3775 | */ |
Tejun Heo | 24b8a84 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3776 | for_each_pwq(pwq, wq) { |
Tejun Heo | 6183c00 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3777 | WARN_ON_ONCE(pwq->nr_active < 0); |
Tejun Heo | 112202d | 2013-02-13 19:29:12 -0800 | [diff] [blame] | 3778 | if (pwq->nr_active) { |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3779 | busy = true; |
| 3780 | goto out_unlock; |
| 3781 | } |
| 3782 | } |
| 3783 | } |
| 3784 | out_unlock: |
Tejun Heo | e98d5b1 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3785 | spin_unlock_irq(&workqueue_lock); |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3786 | return busy; |
| 3787 | } |
| 3788 | |
| 3789 | /** |
| 3790 | * thaw_workqueues - thaw workqueues |
| 3791 | * |
| 3792 | * Thaw workqueues. Normal queueing is restored and all collected |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 3793 | * frozen works are transferred to their respective pool worklists. |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3794 | * |
| 3795 | * CONTEXT: |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3796 | * Grabs and releases workqueue_lock and pool->lock's. |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3797 | */ |
| 3798 | void thaw_workqueues(void) |
| 3799 | { |
Tejun Heo | 24b8a84 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3800 | struct workqueue_struct *wq; |
| 3801 | struct pool_workqueue *pwq; |
| 3802 | struct worker_pool *pool; |
| 3803 | int id; |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3804 | |
Tejun Heo | e98d5b1 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3805 | spin_lock_irq(&workqueue_lock); |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3806 | |
| 3807 | if (!workqueue_freezing) |
| 3808 | goto out_unlock; |
| 3809 | |
Tejun Heo | 24b8a84 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3810 | /* clear FREEZING */ |
| 3811 | for_each_pool(pool, id) { |
| 3812 | spin_lock(&pool->lock); |
| 3813 | WARN_ON_ONCE(!(pool->flags & POOL_FREEZING)); |
| 3814 | pool->flags &= ~POOL_FREEZING; |
| 3815 | spin_unlock(&pool->lock); |
| 3816 | } |
Tejun Heo | 8b03ae3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3817 | |
Tejun Heo | 24b8a84 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3818 | /* restore max_active and repopulate worklist */ |
| 3819 | list_for_each_entry(wq, &workqueues, list) { |
| 3820 | if (!(wq->flags & WQ_FREEZABLE)) |
| 3821 | continue; |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3822 | |
Tejun Heo | 24b8a84 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3823 | for_each_pwq(pwq, wq) { |
| 3824 | spin_lock(&pwq->pool->lock); |
| 3825 | pwq_set_max_active(pwq, wq->saved_max_active); |
| 3826 | spin_unlock(&pwq->pool->lock); |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3827 | } |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3828 | } |
| 3829 | |
Tejun Heo | 24b8a84 | 2013-03-12 11:29:58 -0700 | [diff] [blame] | 3830 | /* kick workers */ |
| 3831 | for_each_pool(pool, id) { |
| 3832 | spin_lock(&pool->lock); |
| 3833 | wake_up_worker(pool); |
| 3834 | spin_unlock(&pool->lock); |
| 3835 | } |
| 3836 | |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3837 | workqueue_freezing = false; |
| 3838 | out_unlock: |
Tejun Heo | e98d5b1 | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3839 | spin_unlock_irq(&workqueue_lock); |
Tejun Heo | a0a1a5f | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3840 | } |
| 3841 | #endif /* CONFIG_FREEZER */ |
| 3842 | |
Suresh Siddha | 6ee0578 | 2010-07-30 14:57:37 -0700 | [diff] [blame] | 3843 | static int __init init_workqueues(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3844 | { |
Tejun Heo | 7a4e344 | 2013-03-12 11:30:00 -0700 | [diff] [blame^] | 3845 | int std_nice[NR_STD_WORKER_POOLS] = { 0, HIGHPRI_NICE_LEVEL }; |
| 3846 | int i, cpu; |
Tejun Heo | c34056a | 2010-06-29 10:07:11 +0200 | [diff] [blame] | 3847 | |
Tejun Heo | 7c3eed5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3848 | /* make sure we have enough bits for OFFQ pool ID */ |
| 3849 | BUILD_BUG_ON((1LU << (BITS_PER_LONG - WORK_OFFQ_POOL_SHIFT)) < |
Lai Jiangshan | 6be1958 | 2013-02-06 18:04:53 -0800 | [diff] [blame] | 3850 | WORK_CPU_END * NR_STD_WORKER_POOLS); |
Tejun Heo | b549007 | 2012-08-03 10:30:46 -0700 | [diff] [blame] | 3851 | |
Tejun Heo | e904e6c | 2013-03-12 11:29:57 -0700 | [diff] [blame] | 3852 | WARN_ON(__alignof__(struct pool_workqueue) < __alignof__(long long)); |
| 3853 | |
| 3854 | pwq_cache = KMEM_CACHE(pool_workqueue, SLAB_PANIC); |
| 3855 | |
Tejun Heo | 6575820 | 2012-07-17 12:39:26 -0700 | [diff] [blame] | 3856 | cpu_notifier(workqueue_cpu_up_callback, CPU_PRI_WORKQUEUE_UP); |
Lai Jiangshan | a5b4e57 | 2012-09-18 09:59:23 -0700 | [diff] [blame] | 3857 | hotcpu_notifier(workqueue_cpu_down_callback, CPU_PRI_WORKQUEUE_DOWN); |
Tejun Heo | 8b03ae3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3858 | |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 3859 | /* initialize CPU pools */ |
| 3860 | for_each_wq_cpu(cpu) { |
Tejun Heo | 4ce62e9 | 2012-07-13 22:16:44 -0700 | [diff] [blame] | 3861 | struct worker_pool *pool; |
Tejun Heo | 8b03ae3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3862 | |
Tejun Heo | 7a4e344 | 2013-03-12 11:30:00 -0700 | [diff] [blame^] | 3863 | i = 0; |
Tejun Heo | 38db41d | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 3864 | for_each_std_worker_pool(pool, cpu) { |
Tejun Heo | 7a4e344 | 2013-03-12 11:30:00 -0700 | [diff] [blame^] | 3865 | BUG_ON(init_worker_pool(pool)); |
Tejun Heo | ec22ca5 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3866 | pool->cpu = cpu; |
Tejun Heo | 9daf9e6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3867 | |
Tejun Heo | 7a4e344 | 2013-03-12 11:30:00 -0700 | [diff] [blame^] | 3868 | if (cpu != WORK_CPU_UNBOUND) |
| 3869 | cpumask_copy(pool->attrs->cpumask, cpumask_of(cpu)); |
| 3870 | else |
| 3871 | cpumask_setall(pool->attrs->cpumask); |
| 3872 | |
| 3873 | pool->attrs->nice = std_nice[i++]; |
| 3874 | |
Tejun Heo | 9daf9e6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3875 | /* alloc pool ID */ |
| 3876 | BUG_ON(worker_pool_assign_id(pool)); |
Tejun Heo | 4ce62e9 | 2012-07-13 22:16:44 -0700 | [diff] [blame] | 3877 | } |
Tejun Heo | 8b03ae3 | 2010-06-29 10:07:12 +0200 | [diff] [blame] | 3878 | } |
| 3879 | |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3880 | /* create the initial worker */ |
Tejun Heo | 706026c | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 3881 | for_each_online_wq_cpu(cpu) { |
Tejun Heo | 4ce62e9 | 2012-07-13 22:16:44 -0700 | [diff] [blame] | 3882 | struct worker_pool *pool; |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3883 | |
Tejun Heo | 38db41d | 2013-01-24 11:01:34 -0800 | [diff] [blame] | 3884 | for_each_std_worker_pool(pool, cpu) { |
Tejun Heo | 4ce62e9 | 2012-07-13 22:16:44 -0700 | [diff] [blame] | 3885 | struct worker *worker; |
| 3886 | |
Tejun Heo | 2464757 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3887 | if (cpu != WORK_CPU_UNBOUND) |
| 3888 | pool->flags &= ~POOL_DISASSOCIATED; |
| 3889 | |
Tejun Heo | bc2ae0f | 2012-07-17 12:39:27 -0700 | [diff] [blame] | 3890 | worker = create_worker(pool); |
Tejun Heo | 4ce62e9 | 2012-07-13 22:16:44 -0700 | [diff] [blame] | 3891 | BUG_ON(!worker); |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3892 | spin_lock_irq(&pool->lock); |
Tejun Heo | 4ce62e9 | 2012-07-13 22:16:44 -0700 | [diff] [blame] | 3893 | start_worker(worker); |
Tejun Heo | d565ed6 | 2013-01-24 11:01:33 -0800 | [diff] [blame] | 3894 | spin_unlock_irq(&pool->lock); |
Tejun Heo | 4ce62e9 | 2012-07-13 22:16:44 -0700 | [diff] [blame] | 3895 | } |
Tejun Heo | e22bee7 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3896 | } |
| 3897 | |
Tejun Heo | d320c03 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3898 | system_wq = alloc_workqueue("events", 0, 0); |
Joonsoo Kim | 1aabe90 | 2012-08-15 23:25:39 +0900 | [diff] [blame] | 3899 | system_highpri_wq = alloc_workqueue("events_highpri", WQ_HIGHPRI, 0); |
Tejun Heo | d320c03 | 2010-06-29 10:07:14 +0200 | [diff] [blame] | 3900 | system_long_wq = alloc_workqueue("events_long", 0, 0); |
Tejun Heo | f342179 | 2010-07-02 10:03:51 +0200 | [diff] [blame] | 3901 | system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND, |
| 3902 | WQ_UNBOUND_MAX_ACTIVE); |
Tejun Heo | 24d51ad | 2011-02-21 09:52:50 +0100 | [diff] [blame] | 3903 | system_freezable_wq = alloc_workqueue("events_freezable", |
| 3904 | WQ_FREEZABLE, 0); |
Joonsoo Kim | 1aabe90 | 2012-08-15 23:25:39 +0900 | [diff] [blame] | 3905 | BUG_ON(!system_wq || !system_highpri_wq || !system_long_wq || |
Tejun Heo | ae930e0 | 2012-08-20 14:51:23 -0700 | [diff] [blame] | 3906 | !system_unbound_wq || !system_freezable_wq); |
Suresh Siddha | 6ee0578 | 2010-07-30 14:57:37 -0700 | [diff] [blame] | 3907 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3908 | } |
Suresh Siddha | 6ee0578 | 2010-07-30 14:57:37 -0700 | [diff] [blame] | 3909 | early_initcall(init_workqueues); |