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