Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/kernel/workqueue.c |
| 3 | * |
| 4 | * Generic mechanism for defining kernel helper threads for running |
| 5 | * arbitrary tasks in process context. |
| 6 | * |
| 7 | * Started by Ingo Molnar, Copyright (C) 2002 |
| 8 | * |
| 9 | * Derived from the taskqueue/keventd code by: |
| 10 | * |
| 11 | * David Woodhouse <dwmw2@infradead.org> |
| 12 | * Andrew Morton <andrewm@uow.edu.au> |
| 13 | * Kai Petzke <wpp@marie.physik.tu-berlin.de> |
| 14 | * Theodore Ts'o <tytso@mit.edu> |
Christoph Lameter | 89ada67 | 2005-10-30 15:01:59 -0800 | [diff] [blame] | 15 | * |
| 16 | * Made to use alloc_percpu by Christoph Lameter <clameter@sgi.com>. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
| 18 | |
| 19 | #include <linux/module.h> |
| 20 | #include <linux/kernel.h> |
| 21 | #include <linux/sched.h> |
| 22 | #include <linux/init.h> |
| 23 | #include <linux/signal.h> |
| 24 | #include <linux/completion.h> |
| 25 | #include <linux/workqueue.h> |
| 26 | #include <linux/slab.h> |
| 27 | #include <linux/cpu.h> |
| 28 | #include <linux/notifier.h> |
| 29 | #include <linux/kthread.h> |
James Bottomley | 1fa44ec | 2006-02-23 12:43:43 -0600 | [diff] [blame] | 30 | #include <linux/hardirq.h> |
Christoph Lameter | 4693402 | 2006-10-11 01:21:26 -0700 | [diff] [blame] | 31 | #include <linux/mempolicy.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
| 33 | /* |
Nathan Lynch | f756d5e | 2006-01-08 01:05:12 -0800 | [diff] [blame] | 34 | * The per-CPU workqueue (if single thread, we always use the first |
| 35 | * possible cpu). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | * |
| 37 | * The sequence counters are for flush_scheduled_work(). It wants to wait |
Rolf Eike Beer | 9f5d785 | 2006-10-03 23:07:31 +0200 | [diff] [blame] | 38 | * until all currently-scheduled works are completed, but it doesn't |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | * want to be livelocked by new, incoming ones. So it waits until |
| 40 | * remove_sequence is >= the insert_sequence which pertained when |
| 41 | * flush_scheduled_work() was called. |
| 42 | */ |
| 43 | struct cpu_workqueue_struct { |
| 44 | |
| 45 | spinlock_t lock; |
| 46 | |
| 47 | long remove_sequence; /* Least-recently added (next to run) */ |
| 48 | long insert_sequence; /* Next to add */ |
| 49 | |
| 50 | struct list_head worklist; |
| 51 | wait_queue_head_t more_work; |
| 52 | wait_queue_head_t work_done; |
| 53 | |
| 54 | struct workqueue_struct *wq; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 55 | struct task_struct *thread; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
| 57 | int run_depth; /* Detect run_workqueue() recursion depth */ |
| 58 | } ____cacheline_aligned; |
| 59 | |
| 60 | /* |
| 61 | * The externally visible workqueue abstraction is an array of |
| 62 | * per-CPU workqueues: |
| 63 | */ |
| 64 | struct workqueue_struct { |
Christoph Lameter | 89ada67 | 2005-10-30 15:01:59 -0800 | [diff] [blame] | 65 | struct cpu_workqueue_struct *cpu_wq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | const char *name; |
| 67 | struct list_head list; /* Empty if single thread */ |
| 68 | }; |
| 69 | |
| 70 | /* All the per-cpu workqueues on the system, for hotplug cpu to add/remove |
| 71 | threads to each one as cpus come/go. */ |
Andrew Morton | 9b41ea7 | 2006-08-13 23:24:26 -0700 | [diff] [blame] | 72 | static DEFINE_MUTEX(workqueue_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | static LIST_HEAD(workqueues); |
| 74 | |
Nathan Lynch | f756d5e | 2006-01-08 01:05:12 -0800 | [diff] [blame] | 75 | static int singlethread_cpu; |
| 76 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | /* If it's single threaded, it isn't in the list of workqueues. */ |
| 78 | static inline int is_single_threaded(struct workqueue_struct *wq) |
| 79 | { |
| 80 | return list_empty(&wq->list); |
| 81 | } |
| 82 | |
David Howells | 365970a | 2006-11-22 14:54:49 +0000 | [diff] [blame] | 83 | static inline void set_wq_data(struct work_struct *work, void *wq) |
| 84 | { |
| 85 | unsigned long new, old, res; |
| 86 | |
| 87 | /* assume the pending flag is already set and that the task has already |
| 88 | * been queued on this workqueue */ |
| 89 | new = (unsigned long) wq | (1UL << WORK_STRUCT_PENDING); |
| 90 | res = work->management; |
| 91 | if (res != new) { |
| 92 | do { |
| 93 | old = res; |
| 94 | new = (unsigned long) wq; |
| 95 | new |= (old & WORK_STRUCT_FLAG_MASK); |
| 96 | res = cmpxchg(&work->management, old, new); |
| 97 | } while (res != old); |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | static inline void *get_wq_data(struct work_struct *work) |
| 102 | { |
| 103 | return (void *) (work->management & WORK_STRUCT_WQ_DATA_MASK); |
| 104 | } |
| 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | /* Preempt must be disabled. */ |
| 107 | static void __queue_work(struct cpu_workqueue_struct *cwq, |
| 108 | struct work_struct *work) |
| 109 | { |
| 110 | unsigned long flags; |
| 111 | |
| 112 | spin_lock_irqsave(&cwq->lock, flags); |
David Howells | 365970a | 2006-11-22 14:54:49 +0000 | [diff] [blame] | 113 | set_wq_data(work, cwq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | list_add_tail(&work->entry, &cwq->worklist); |
| 115 | cwq->insert_sequence++; |
| 116 | wake_up(&cwq->more_work); |
| 117 | spin_unlock_irqrestore(&cwq->lock, flags); |
| 118 | } |
| 119 | |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 120 | /** |
| 121 | * queue_work - queue work on a workqueue |
| 122 | * @wq: workqueue to use |
| 123 | * @work: work to queue |
| 124 | * |
Alan Stern | 057647f | 2006-10-28 10:38:58 -0700 | [diff] [blame] | 125 | * Returns 0 if @work was already on a queue, non-zero otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | * |
| 127 | * We queue the work to the CPU it was submitted, but there is no |
| 128 | * guarantee that it will be processed by that CPU. |
| 129 | */ |
| 130 | int fastcall queue_work(struct workqueue_struct *wq, struct work_struct *work) |
| 131 | { |
| 132 | int ret = 0, cpu = get_cpu(); |
| 133 | |
David Howells | 365970a | 2006-11-22 14:54:49 +0000 | [diff] [blame] | 134 | if (!test_and_set_bit(WORK_STRUCT_PENDING, &work->management)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | if (unlikely(is_single_threaded(wq))) |
Nathan Lynch | f756d5e | 2006-01-08 01:05:12 -0800 | [diff] [blame] | 136 | cpu = singlethread_cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | BUG_ON(!list_empty(&work->entry)); |
Christoph Lameter | 89ada67 | 2005-10-30 15:01:59 -0800 | [diff] [blame] | 138 | __queue_work(per_cpu_ptr(wq->cpu_wq, cpu), work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | ret = 1; |
| 140 | } |
| 141 | put_cpu(); |
| 142 | return ret; |
| 143 | } |
Dave Jones | ae90dd5 | 2006-06-30 01:40:45 -0400 | [diff] [blame] | 144 | EXPORT_SYMBOL_GPL(queue_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | |
| 146 | static void delayed_work_timer_fn(unsigned long __data) |
| 147 | { |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 148 | struct delayed_work *dwork = (struct delayed_work *)__data; |
David Howells | 365970a | 2006-11-22 14:54:49 +0000 | [diff] [blame] | 149 | struct workqueue_struct *wq = get_wq_data(&dwork->work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | int cpu = smp_processor_id(); |
| 151 | |
| 152 | if (unlikely(is_single_threaded(wq))) |
Nathan Lynch | f756d5e | 2006-01-08 01:05:12 -0800 | [diff] [blame] | 153 | cpu = singlethread_cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 155 | __queue_work(per_cpu_ptr(wq->cpu_wq, cpu), &dwork->work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | } |
| 157 | |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 158 | /** |
| 159 | * queue_delayed_work - queue work on a workqueue after delay |
| 160 | * @wq: workqueue to use |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 161 | * @work: delayable work to queue |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 162 | * @delay: number of jiffies to wait before queueing |
| 163 | * |
Alan Stern | 057647f | 2006-10-28 10:38:58 -0700 | [diff] [blame] | 164 | * 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] | 165 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | int fastcall queue_delayed_work(struct workqueue_struct *wq, |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 167 | struct delayed_work *dwork, unsigned long delay) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | { |
| 169 | int ret = 0; |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 170 | struct timer_list *timer = &dwork->timer; |
| 171 | struct work_struct *work = &dwork->work; |
| 172 | |
| 173 | if (delay == 0) |
| 174 | return queue_work(wq, work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | |
David Howells | 365970a | 2006-11-22 14:54:49 +0000 | [diff] [blame] | 176 | if (!test_and_set_bit(WORK_STRUCT_PENDING, &work->management)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | BUG_ON(timer_pending(timer)); |
| 178 | BUG_ON(!list_empty(&work->entry)); |
| 179 | |
| 180 | /* This stores wq for the moment, for the timer_fn */ |
David Howells | 365970a | 2006-11-22 14:54:49 +0000 | [diff] [blame] | 181 | set_wq_data(work, wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | timer->expires = jiffies + delay; |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 183 | timer->data = (unsigned long)dwork; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | timer->function = delayed_work_timer_fn; |
| 185 | add_timer(timer); |
| 186 | ret = 1; |
| 187 | } |
| 188 | return ret; |
| 189 | } |
Dave Jones | ae90dd5 | 2006-06-30 01:40:45 -0400 | [diff] [blame] | 190 | EXPORT_SYMBOL_GPL(queue_delayed_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 192 | /** |
| 193 | * queue_delayed_work_on - queue work on specific CPU after delay |
| 194 | * @cpu: CPU number to execute work on |
| 195 | * @wq: workqueue to use |
| 196 | * @work: work to queue |
| 197 | * @delay: number of jiffies to wait before queueing |
| 198 | * |
Alan Stern | 057647f | 2006-10-28 10:38:58 -0700 | [diff] [blame] | 199 | * 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] | 200 | */ |
Venkatesh Pallipadi | 7a6bc1c | 2006-06-28 13:50:33 -0700 | [diff] [blame] | 201 | int queue_delayed_work_on(int cpu, struct workqueue_struct *wq, |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 202 | struct delayed_work *dwork, unsigned long delay) |
Venkatesh Pallipadi | 7a6bc1c | 2006-06-28 13:50:33 -0700 | [diff] [blame] | 203 | { |
| 204 | int ret = 0; |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 205 | struct timer_list *timer = &dwork->timer; |
| 206 | struct work_struct *work = &dwork->work; |
Venkatesh Pallipadi | 7a6bc1c | 2006-06-28 13:50:33 -0700 | [diff] [blame] | 207 | |
David Howells | 365970a | 2006-11-22 14:54:49 +0000 | [diff] [blame] | 208 | if (!test_and_set_bit(WORK_STRUCT_PENDING, &work->management)) { |
Venkatesh Pallipadi | 7a6bc1c | 2006-06-28 13:50:33 -0700 | [diff] [blame] | 209 | BUG_ON(timer_pending(timer)); |
| 210 | BUG_ON(!list_empty(&work->entry)); |
| 211 | |
| 212 | /* This stores wq for the moment, for the timer_fn */ |
David Howells | 365970a | 2006-11-22 14:54:49 +0000 | [diff] [blame] | 213 | set_wq_data(work, wq); |
Venkatesh Pallipadi | 7a6bc1c | 2006-06-28 13:50:33 -0700 | [diff] [blame] | 214 | timer->expires = jiffies + delay; |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 215 | timer->data = (unsigned long)dwork; |
Venkatesh Pallipadi | 7a6bc1c | 2006-06-28 13:50:33 -0700 | [diff] [blame] | 216 | timer->function = delayed_work_timer_fn; |
| 217 | add_timer_on(timer, cpu); |
| 218 | ret = 1; |
| 219 | } |
| 220 | return ret; |
| 221 | } |
Dave Jones | ae90dd5 | 2006-06-30 01:40:45 -0400 | [diff] [blame] | 222 | EXPORT_SYMBOL_GPL(queue_delayed_work_on); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 224 | static void run_workqueue(struct cpu_workqueue_struct *cwq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | { |
| 226 | unsigned long flags; |
| 227 | |
| 228 | /* |
| 229 | * Keep taking off work from the queue until |
| 230 | * done. |
| 231 | */ |
| 232 | spin_lock_irqsave(&cwq->lock, flags); |
| 233 | cwq->run_depth++; |
| 234 | if (cwq->run_depth > 3) { |
| 235 | /* morton gets to eat his hat */ |
| 236 | printk("%s: recursion depth exceeded: %d\n", |
| 237 | __FUNCTION__, cwq->run_depth); |
| 238 | dump_stack(); |
| 239 | } |
| 240 | while (!list_empty(&cwq->worklist)) { |
| 241 | struct work_struct *work = list_entry(cwq->worklist.next, |
| 242 | struct work_struct, entry); |
David Howells | 6bb49e5 | 2006-11-22 14:54:45 +0000 | [diff] [blame] | 243 | work_func_t f = work->func; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | |
| 245 | list_del_init(cwq->worklist.next); |
| 246 | spin_unlock_irqrestore(&cwq->lock, flags); |
| 247 | |
David Howells | 365970a | 2006-11-22 14:54:49 +0000 | [diff] [blame] | 248 | BUG_ON(get_wq_data(work) != cwq); |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame^] | 249 | if (!test_bit(WORK_STRUCT_NOAUTOREL, &work->management)) |
| 250 | work_release(work); |
| 251 | f(work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | |
| 253 | spin_lock_irqsave(&cwq->lock, flags); |
| 254 | cwq->remove_sequence++; |
| 255 | wake_up(&cwq->work_done); |
| 256 | } |
| 257 | cwq->run_depth--; |
| 258 | spin_unlock_irqrestore(&cwq->lock, flags); |
| 259 | } |
| 260 | |
| 261 | static int worker_thread(void *__cwq) |
| 262 | { |
| 263 | struct cpu_workqueue_struct *cwq = __cwq; |
| 264 | DECLARE_WAITQUEUE(wait, current); |
| 265 | struct k_sigaction sa; |
| 266 | sigset_t blocked; |
| 267 | |
| 268 | current->flags |= PF_NOFREEZE; |
| 269 | |
| 270 | set_user_nice(current, -5); |
| 271 | |
| 272 | /* Block and flush all signals */ |
| 273 | sigfillset(&blocked); |
| 274 | sigprocmask(SIG_BLOCK, &blocked, NULL); |
| 275 | flush_signals(current); |
| 276 | |
Christoph Lameter | 4693402 | 2006-10-11 01:21:26 -0700 | [diff] [blame] | 277 | /* |
| 278 | * We inherited MPOL_INTERLEAVE from the booting kernel. |
| 279 | * Set MPOL_DEFAULT to insure node local allocations. |
| 280 | */ |
| 281 | numa_default_policy(); |
| 282 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | /* SIG_IGN makes children autoreap: see do_notify_parent(). */ |
| 284 | sa.sa.sa_handler = SIG_IGN; |
| 285 | sa.sa.sa_flags = 0; |
| 286 | siginitset(&sa.sa.sa_mask, sigmask(SIGCHLD)); |
| 287 | do_sigaction(SIGCHLD, &sa, (struct k_sigaction *)0); |
| 288 | |
| 289 | set_current_state(TASK_INTERRUPTIBLE); |
| 290 | while (!kthread_should_stop()) { |
| 291 | add_wait_queue(&cwq->more_work, &wait); |
| 292 | if (list_empty(&cwq->worklist)) |
| 293 | schedule(); |
| 294 | else |
| 295 | __set_current_state(TASK_RUNNING); |
| 296 | remove_wait_queue(&cwq->more_work, &wait); |
| 297 | |
| 298 | if (!list_empty(&cwq->worklist)) |
| 299 | run_workqueue(cwq); |
| 300 | set_current_state(TASK_INTERRUPTIBLE); |
| 301 | } |
| 302 | __set_current_state(TASK_RUNNING); |
| 303 | return 0; |
| 304 | } |
| 305 | |
| 306 | static void flush_cpu_workqueue(struct cpu_workqueue_struct *cwq) |
| 307 | { |
| 308 | if (cwq->thread == current) { |
| 309 | /* |
| 310 | * Probably keventd trying to flush its own queue. So simply run |
| 311 | * it by hand rather than deadlocking. |
| 312 | */ |
| 313 | run_workqueue(cwq); |
| 314 | } else { |
| 315 | DEFINE_WAIT(wait); |
| 316 | long sequence_needed; |
| 317 | |
| 318 | spin_lock_irq(&cwq->lock); |
| 319 | sequence_needed = cwq->insert_sequence; |
| 320 | |
| 321 | while (sequence_needed - cwq->remove_sequence > 0) { |
| 322 | prepare_to_wait(&cwq->work_done, &wait, |
| 323 | TASK_UNINTERRUPTIBLE); |
| 324 | spin_unlock_irq(&cwq->lock); |
| 325 | schedule(); |
| 326 | spin_lock_irq(&cwq->lock); |
| 327 | } |
| 328 | finish_wait(&cwq->work_done, &wait); |
| 329 | spin_unlock_irq(&cwq->lock); |
| 330 | } |
| 331 | } |
| 332 | |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 333 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | * flush_workqueue - ensure that any scheduled work has run to completion. |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 335 | * @wq: workqueue to flush |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | * |
| 337 | * Forces execution of the workqueue and blocks until its completion. |
| 338 | * This is typically used in driver shutdown handlers. |
| 339 | * |
| 340 | * This function will sample each workqueue's current insert_sequence number and |
| 341 | * will sleep until the head sequence is greater than or equal to that. This |
| 342 | * means that we sleep until all works which were queued on entry have been |
| 343 | * handled, but we are not livelocked by new incoming ones. |
| 344 | * |
| 345 | * This function used to run the workqueues itself. Now we just wait for the |
| 346 | * helper threads to do it. |
| 347 | */ |
| 348 | void fastcall flush_workqueue(struct workqueue_struct *wq) |
| 349 | { |
| 350 | might_sleep(); |
| 351 | |
| 352 | if (is_single_threaded(wq)) { |
Ben Collins | bce61dd | 2005-11-28 13:43:56 -0800 | [diff] [blame] | 353 | /* Always use first cpu's area. */ |
Nathan Lynch | f756d5e | 2006-01-08 01:05:12 -0800 | [diff] [blame] | 354 | flush_cpu_workqueue(per_cpu_ptr(wq->cpu_wq, singlethread_cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | } else { |
| 356 | int cpu; |
| 357 | |
Andrew Morton | 9b41ea7 | 2006-08-13 23:24:26 -0700 | [diff] [blame] | 358 | mutex_lock(&workqueue_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | for_each_online_cpu(cpu) |
Christoph Lameter | 89ada67 | 2005-10-30 15:01:59 -0800 | [diff] [blame] | 360 | flush_cpu_workqueue(per_cpu_ptr(wq->cpu_wq, cpu)); |
Andrew Morton | 9b41ea7 | 2006-08-13 23:24:26 -0700 | [diff] [blame] | 361 | mutex_unlock(&workqueue_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | } |
| 363 | } |
Dave Jones | ae90dd5 | 2006-06-30 01:40:45 -0400 | [diff] [blame] | 364 | EXPORT_SYMBOL_GPL(flush_workqueue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | |
| 366 | static struct task_struct *create_workqueue_thread(struct workqueue_struct *wq, |
| 367 | int cpu) |
| 368 | { |
Christoph Lameter | 89ada67 | 2005-10-30 15:01:59 -0800 | [diff] [blame] | 369 | struct cpu_workqueue_struct *cwq = per_cpu_ptr(wq->cpu_wq, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | struct task_struct *p; |
| 371 | |
| 372 | spin_lock_init(&cwq->lock); |
| 373 | cwq->wq = wq; |
| 374 | cwq->thread = NULL; |
| 375 | cwq->insert_sequence = 0; |
| 376 | cwq->remove_sequence = 0; |
| 377 | INIT_LIST_HEAD(&cwq->worklist); |
| 378 | init_waitqueue_head(&cwq->more_work); |
| 379 | init_waitqueue_head(&cwq->work_done); |
| 380 | |
| 381 | if (is_single_threaded(wq)) |
| 382 | p = kthread_create(worker_thread, cwq, "%s", wq->name); |
| 383 | else |
| 384 | p = kthread_create(worker_thread, cwq, "%s/%d", wq->name, cpu); |
| 385 | if (IS_ERR(p)) |
| 386 | return NULL; |
| 387 | cwq->thread = p; |
| 388 | return p; |
| 389 | } |
| 390 | |
| 391 | struct workqueue_struct *__create_workqueue(const char *name, |
| 392 | int singlethread) |
| 393 | { |
| 394 | int cpu, destroy = 0; |
| 395 | struct workqueue_struct *wq; |
| 396 | struct task_struct *p; |
| 397 | |
Pekka J Enberg | dd39271 | 2005-09-06 15:18:31 -0700 | [diff] [blame] | 398 | wq = kzalloc(sizeof(*wq), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | if (!wq) |
| 400 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | |
Christoph Lameter | 89ada67 | 2005-10-30 15:01:59 -0800 | [diff] [blame] | 402 | wq->cpu_wq = alloc_percpu(struct cpu_workqueue_struct); |
Ben Collins | 676121f | 2006-01-08 01:03:04 -0800 | [diff] [blame] | 403 | if (!wq->cpu_wq) { |
| 404 | kfree(wq); |
| 405 | return NULL; |
| 406 | } |
| 407 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | wq->name = name; |
Andrew Morton | 9b41ea7 | 2006-08-13 23:24:26 -0700 | [diff] [blame] | 409 | mutex_lock(&workqueue_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | if (singlethread) { |
| 411 | INIT_LIST_HEAD(&wq->list); |
Nathan Lynch | f756d5e | 2006-01-08 01:05:12 -0800 | [diff] [blame] | 412 | p = create_workqueue_thread(wq, singlethread_cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | if (!p) |
| 414 | destroy = 1; |
| 415 | else |
| 416 | wake_up_process(p); |
| 417 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | list_add(&wq->list, &workqueues); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | for_each_online_cpu(cpu) { |
| 420 | p = create_workqueue_thread(wq, cpu); |
| 421 | if (p) { |
| 422 | kthread_bind(p, cpu); |
| 423 | wake_up_process(p); |
| 424 | } else |
| 425 | destroy = 1; |
| 426 | } |
| 427 | } |
Andrew Morton | 9b41ea7 | 2006-08-13 23:24:26 -0700 | [diff] [blame] | 428 | mutex_unlock(&workqueue_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | |
| 430 | /* |
| 431 | * Was there any error during startup? If yes then clean up: |
| 432 | */ |
| 433 | if (destroy) { |
| 434 | destroy_workqueue(wq); |
| 435 | wq = NULL; |
| 436 | } |
| 437 | return wq; |
| 438 | } |
Dave Jones | ae90dd5 | 2006-06-30 01:40:45 -0400 | [diff] [blame] | 439 | EXPORT_SYMBOL_GPL(__create_workqueue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | |
| 441 | static void cleanup_workqueue_thread(struct workqueue_struct *wq, int cpu) |
| 442 | { |
| 443 | struct cpu_workqueue_struct *cwq; |
| 444 | unsigned long flags; |
| 445 | struct task_struct *p; |
| 446 | |
Christoph Lameter | 89ada67 | 2005-10-30 15:01:59 -0800 | [diff] [blame] | 447 | cwq = per_cpu_ptr(wq->cpu_wq, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | spin_lock_irqsave(&cwq->lock, flags); |
| 449 | p = cwq->thread; |
| 450 | cwq->thread = NULL; |
| 451 | spin_unlock_irqrestore(&cwq->lock, flags); |
| 452 | if (p) |
| 453 | kthread_stop(p); |
| 454 | } |
| 455 | |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 456 | /** |
| 457 | * destroy_workqueue - safely terminate a workqueue |
| 458 | * @wq: target workqueue |
| 459 | * |
| 460 | * Safely destroy a workqueue. All work currently pending will be done first. |
| 461 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | void destroy_workqueue(struct workqueue_struct *wq) |
| 463 | { |
| 464 | int cpu; |
| 465 | |
| 466 | flush_workqueue(wq); |
| 467 | |
| 468 | /* We don't need the distraction of CPUs appearing and vanishing. */ |
Andrew Morton | 9b41ea7 | 2006-08-13 23:24:26 -0700 | [diff] [blame] | 469 | mutex_lock(&workqueue_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | if (is_single_threaded(wq)) |
Nathan Lynch | f756d5e | 2006-01-08 01:05:12 -0800 | [diff] [blame] | 471 | cleanup_workqueue_thread(wq, singlethread_cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | else { |
| 473 | for_each_online_cpu(cpu) |
| 474 | cleanup_workqueue_thread(wq, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | list_del(&wq->list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | } |
Andrew Morton | 9b41ea7 | 2006-08-13 23:24:26 -0700 | [diff] [blame] | 477 | mutex_unlock(&workqueue_mutex); |
Christoph Lameter | 89ada67 | 2005-10-30 15:01:59 -0800 | [diff] [blame] | 478 | free_percpu(wq->cpu_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | kfree(wq); |
| 480 | } |
Dave Jones | ae90dd5 | 2006-06-30 01:40:45 -0400 | [diff] [blame] | 481 | EXPORT_SYMBOL_GPL(destroy_workqueue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | |
| 483 | static struct workqueue_struct *keventd_wq; |
| 484 | |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 485 | /** |
| 486 | * schedule_work - put work task in global workqueue |
| 487 | * @work: job to be done |
| 488 | * |
| 489 | * This puts a job in the kernel-global workqueue. |
| 490 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | int fastcall schedule_work(struct work_struct *work) |
| 492 | { |
| 493 | return queue_work(keventd_wq, work); |
| 494 | } |
Dave Jones | ae90dd5 | 2006-06-30 01:40:45 -0400 | [diff] [blame] | 495 | EXPORT_SYMBOL(schedule_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 497 | /** |
| 498 | * schedule_delayed_work - put work task in global workqueue after delay |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 499 | * @dwork: job to be done |
| 500 | * @delay: number of jiffies to wait or 0 for immediate execution |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 501 | * |
| 502 | * After waiting for a given time this puts a job in the kernel-global |
| 503 | * workqueue. |
| 504 | */ |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 505 | int fastcall schedule_delayed_work(struct delayed_work *dwork, unsigned long delay) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | { |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 507 | return queue_delayed_work(keventd_wq, dwork, delay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | } |
Dave Jones | ae90dd5 | 2006-06-30 01:40:45 -0400 | [diff] [blame] | 509 | EXPORT_SYMBOL(schedule_delayed_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 511 | /** |
| 512 | * schedule_delayed_work_on - queue work in global workqueue on CPU after delay |
| 513 | * @cpu: cpu to use |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 514 | * @dwork: job to be done |
Rolf Eike Beer | 0fcb78c | 2006-07-30 03:03:42 -0700 | [diff] [blame] | 515 | * @delay: number of jiffies to wait |
| 516 | * |
| 517 | * After waiting for a given time this puts a job in the kernel-global |
| 518 | * workqueue on the specified CPU. |
| 519 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | int schedule_delayed_work_on(int cpu, |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 521 | struct delayed_work *dwork, unsigned long delay) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | { |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 523 | return queue_delayed_work_on(cpu, keventd_wq, dwork, delay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | } |
Dave Jones | ae90dd5 | 2006-06-30 01:40:45 -0400 | [diff] [blame] | 525 | EXPORT_SYMBOL(schedule_delayed_work_on); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | |
Andrew Morton | b613677 | 2006-06-25 05:47:49 -0700 | [diff] [blame] | 527 | /** |
| 528 | * schedule_on_each_cpu - call a function on each online CPU from keventd |
| 529 | * @func: the function to call |
Andrew Morton | b613677 | 2006-06-25 05:47:49 -0700 | [diff] [blame] | 530 | * |
| 531 | * Returns zero on success. |
| 532 | * Returns -ve errno on failure. |
| 533 | * |
| 534 | * Appears to be racy against CPU hotplug. |
| 535 | * |
| 536 | * schedule_on_each_cpu() is very slow. |
| 537 | */ |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame^] | 538 | int schedule_on_each_cpu(work_func_t func) |
Christoph Lameter | 15316ba | 2006-01-08 01:00:43 -0800 | [diff] [blame] | 539 | { |
| 540 | int cpu; |
Andrew Morton | b613677 | 2006-06-25 05:47:49 -0700 | [diff] [blame] | 541 | struct work_struct *works; |
Christoph Lameter | 15316ba | 2006-01-08 01:00:43 -0800 | [diff] [blame] | 542 | |
Andrew Morton | b613677 | 2006-06-25 05:47:49 -0700 | [diff] [blame] | 543 | works = alloc_percpu(struct work_struct); |
| 544 | if (!works) |
Christoph Lameter | 15316ba | 2006-01-08 01:00:43 -0800 | [diff] [blame] | 545 | return -ENOMEM; |
Andrew Morton | b613677 | 2006-06-25 05:47:49 -0700 | [diff] [blame] | 546 | |
Andrew Morton | 9b41ea7 | 2006-08-13 23:24:26 -0700 | [diff] [blame] | 547 | mutex_lock(&workqueue_mutex); |
Christoph Lameter | 15316ba | 2006-01-08 01:00:43 -0800 | [diff] [blame] | 548 | for_each_online_cpu(cpu) { |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame^] | 549 | INIT_WORK(per_cpu_ptr(works, cpu), func); |
Christoph Lameter | 15316ba | 2006-01-08 01:00:43 -0800 | [diff] [blame] | 550 | __queue_work(per_cpu_ptr(keventd_wq->cpu_wq, cpu), |
Andrew Morton | b613677 | 2006-06-25 05:47:49 -0700 | [diff] [blame] | 551 | per_cpu_ptr(works, cpu)); |
Christoph Lameter | 15316ba | 2006-01-08 01:00:43 -0800 | [diff] [blame] | 552 | } |
Andrew Morton | 9b41ea7 | 2006-08-13 23:24:26 -0700 | [diff] [blame] | 553 | mutex_unlock(&workqueue_mutex); |
Christoph Lameter | 15316ba | 2006-01-08 01:00:43 -0800 | [diff] [blame] | 554 | flush_workqueue(keventd_wq); |
Andrew Morton | b613677 | 2006-06-25 05:47:49 -0700 | [diff] [blame] | 555 | free_percpu(works); |
Christoph Lameter | 15316ba | 2006-01-08 01:00:43 -0800 | [diff] [blame] | 556 | return 0; |
| 557 | } |
| 558 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | void flush_scheduled_work(void) |
| 560 | { |
| 561 | flush_workqueue(keventd_wq); |
| 562 | } |
Dave Jones | ae90dd5 | 2006-06-30 01:40:45 -0400 | [diff] [blame] | 563 | EXPORT_SYMBOL(flush_scheduled_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | |
| 565 | /** |
| 566 | * cancel_rearming_delayed_workqueue - reliably kill off a delayed |
| 567 | * work whose handler rearms the delayed work. |
| 568 | * @wq: the controlling workqueue structure |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 569 | * @dwork: the delayed work struct |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | */ |
James Bottomley | 81ddef7 | 2005-04-16 15:23:59 -0700 | [diff] [blame] | 571 | void cancel_rearming_delayed_workqueue(struct workqueue_struct *wq, |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 572 | struct delayed_work *dwork) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | { |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 574 | while (!cancel_delayed_work(dwork)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | flush_workqueue(wq); |
| 576 | } |
James Bottomley | 81ddef7 | 2005-04-16 15:23:59 -0700 | [diff] [blame] | 577 | EXPORT_SYMBOL(cancel_rearming_delayed_workqueue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | |
| 579 | /** |
| 580 | * cancel_rearming_delayed_work - reliably kill off a delayed keventd |
| 581 | * work whose handler rearms the delayed work. |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 582 | * @dwork: the delayed work struct |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | */ |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 584 | void cancel_rearming_delayed_work(struct delayed_work *dwork) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | { |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 586 | cancel_rearming_delayed_workqueue(keventd_wq, dwork); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | } |
| 588 | EXPORT_SYMBOL(cancel_rearming_delayed_work); |
| 589 | |
James Bottomley | 1fa44ec | 2006-02-23 12:43:43 -0600 | [diff] [blame] | 590 | /** |
| 591 | * execute_in_process_context - reliably execute the routine with user context |
| 592 | * @fn: the function to execute |
James Bottomley | 1fa44ec | 2006-02-23 12:43:43 -0600 | [diff] [blame] | 593 | * @ew: guaranteed storage for the execute work structure (must |
| 594 | * be available when the work executes) |
| 595 | * |
| 596 | * Executes the function immediately if process context is available, |
| 597 | * otherwise schedules the function for delayed execution. |
| 598 | * |
| 599 | * Returns: 0 - function was executed |
| 600 | * 1 - function was scheduled for execution |
| 601 | */ |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame^] | 602 | 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] | 603 | { |
| 604 | if (!in_interrupt()) { |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame^] | 605 | fn(&ew->work); |
James Bottomley | 1fa44ec | 2006-02-23 12:43:43 -0600 | [diff] [blame] | 606 | return 0; |
| 607 | } |
| 608 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame^] | 609 | INIT_WORK(&ew->work, fn); |
James Bottomley | 1fa44ec | 2006-02-23 12:43:43 -0600 | [diff] [blame] | 610 | schedule_work(&ew->work); |
| 611 | |
| 612 | return 1; |
| 613 | } |
| 614 | EXPORT_SYMBOL_GPL(execute_in_process_context); |
| 615 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | int keventd_up(void) |
| 617 | { |
| 618 | return keventd_wq != NULL; |
| 619 | } |
| 620 | |
| 621 | int current_is_keventd(void) |
| 622 | { |
| 623 | struct cpu_workqueue_struct *cwq; |
| 624 | int cpu = smp_processor_id(); /* preempt-safe: keventd is per-cpu */ |
| 625 | int ret = 0; |
| 626 | |
| 627 | BUG_ON(!keventd_wq); |
| 628 | |
Christoph Lameter | 89ada67 | 2005-10-30 15:01:59 -0800 | [diff] [blame] | 629 | cwq = per_cpu_ptr(keventd_wq->cpu_wq, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | if (current == cwq->thread) |
| 631 | ret = 1; |
| 632 | |
| 633 | return ret; |
| 634 | |
| 635 | } |
| 636 | |
| 637 | #ifdef CONFIG_HOTPLUG_CPU |
| 638 | /* Take the work from this (downed) CPU. */ |
| 639 | static void take_over_work(struct workqueue_struct *wq, unsigned int cpu) |
| 640 | { |
Christoph Lameter | 89ada67 | 2005-10-30 15:01:59 -0800 | [diff] [blame] | 641 | struct cpu_workqueue_struct *cwq = per_cpu_ptr(wq->cpu_wq, cpu); |
Oleg Nesterov | 626ab0e | 2006-06-23 02:05:55 -0700 | [diff] [blame] | 642 | struct list_head list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | struct work_struct *work; |
| 644 | |
| 645 | spin_lock_irq(&cwq->lock); |
Oleg Nesterov | 626ab0e | 2006-06-23 02:05:55 -0700 | [diff] [blame] | 646 | list_replace_init(&cwq->worklist, &list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | |
| 648 | while (!list_empty(&list)) { |
| 649 | printk("Taking work for %s\n", wq->name); |
| 650 | work = list_entry(list.next,struct work_struct,entry); |
| 651 | list_del(&work->entry); |
Christoph Lameter | 89ada67 | 2005-10-30 15:01:59 -0800 | [diff] [blame] | 652 | __queue_work(per_cpu_ptr(wq->cpu_wq, smp_processor_id()), work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | } |
| 654 | spin_unlock_irq(&cwq->lock); |
| 655 | } |
| 656 | |
| 657 | /* We're holding the cpucontrol mutex here */ |
Chandra Seetharaman | 9c7b216 | 2006-06-27 02:54:07 -0700 | [diff] [blame] | 658 | static int __devinit workqueue_cpu_callback(struct notifier_block *nfb, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | unsigned long action, |
| 660 | void *hcpu) |
| 661 | { |
| 662 | unsigned int hotcpu = (unsigned long)hcpu; |
| 663 | struct workqueue_struct *wq; |
| 664 | |
| 665 | switch (action) { |
| 666 | case CPU_UP_PREPARE: |
Andrew Morton | 9b41ea7 | 2006-08-13 23:24:26 -0700 | [diff] [blame] | 667 | mutex_lock(&workqueue_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | /* Create a new workqueue thread for it. */ |
| 669 | list_for_each_entry(wq, &workqueues, list) { |
Mika Kukkonen | 230649d | 2005-09-06 15:17:17 -0700 | [diff] [blame] | 670 | if (!create_workqueue_thread(wq, hotcpu)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | printk("workqueue for %i failed\n", hotcpu); |
| 672 | return NOTIFY_BAD; |
| 673 | } |
| 674 | } |
| 675 | break; |
| 676 | |
| 677 | case CPU_ONLINE: |
| 678 | /* Kick off worker threads. */ |
| 679 | list_for_each_entry(wq, &workqueues, list) { |
Christoph Lameter | 89ada67 | 2005-10-30 15:01:59 -0800 | [diff] [blame] | 680 | struct cpu_workqueue_struct *cwq; |
| 681 | |
| 682 | cwq = per_cpu_ptr(wq->cpu_wq, hotcpu); |
| 683 | kthread_bind(cwq->thread, hotcpu); |
| 684 | wake_up_process(cwq->thread); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | } |
Andrew Morton | 9b41ea7 | 2006-08-13 23:24:26 -0700 | [diff] [blame] | 686 | mutex_unlock(&workqueue_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | break; |
| 688 | |
| 689 | case CPU_UP_CANCELED: |
| 690 | list_for_each_entry(wq, &workqueues, list) { |
Heiko Carstens | fc75cdf | 2006-06-25 05:49:10 -0700 | [diff] [blame] | 691 | if (!per_cpu_ptr(wq->cpu_wq, hotcpu)->thread) |
| 692 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | /* Unbind so it can run. */ |
Christoph Lameter | 89ada67 | 2005-10-30 15:01:59 -0800 | [diff] [blame] | 694 | kthread_bind(per_cpu_ptr(wq->cpu_wq, hotcpu)->thread, |
Heiko Carstens | a4c4af7 | 2005-11-07 00:58:38 -0800 | [diff] [blame] | 695 | any_online_cpu(cpu_online_map)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | cleanup_workqueue_thread(wq, hotcpu); |
| 697 | } |
Andrew Morton | 9b41ea7 | 2006-08-13 23:24:26 -0700 | [diff] [blame] | 698 | mutex_unlock(&workqueue_mutex); |
| 699 | break; |
| 700 | |
| 701 | case CPU_DOWN_PREPARE: |
| 702 | mutex_lock(&workqueue_mutex); |
| 703 | break; |
| 704 | |
| 705 | case CPU_DOWN_FAILED: |
| 706 | mutex_unlock(&workqueue_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | break; |
| 708 | |
| 709 | case CPU_DEAD: |
| 710 | list_for_each_entry(wq, &workqueues, list) |
| 711 | cleanup_workqueue_thread(wq, hotcpu); |
| 712 | list_for_each_entry(wq, &workqueues, list) |
| 713 | take_over_work(wq, hotcpu); |
Andrew Morton | 9b41ea7 | 2006-08-13 23:24:26 -0700 | [diff] [blame] | 714 | mutex_unlock(&workqueue_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | break; |
| 716 | } |
| 717 | |
| 718 | return NOTIFY_OK; |
| 719 | } |
| 720 | #endif |
| 721 | |
| 722 | void init_workqueues(void) |
| 723 | { |
Nathan Lynch | f756d5e | 2006-01-08 01:05:12 -0800 | [diff] [blame] | 724 | singlethread_cpu = first_cpu(cpu_possible_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | hotcpu_notifier(workqueue_cpu_callback, 0); |
| 726 | keventd_wq = create_workqueue("events"); |
| 727 | BUG_ON(!keventd_wq); |
| 728 | } |
| 729 | |