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