]> git.proxmox.com Git - mirror_spl.git/blob - module/spl/spl-taskq.c
Allow kicking a taskq to spawn more threads
[mirror_spl.git] / module / spl / spl-taskq.c
1 /*
2 * Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
3 * Copyright (C) 2007 The Regents of the University of California.
4 * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
5 * Written by Brian Behlendorf <behlendorf1@llnl.gov>.
6 * UCRL-CODE-235197
7 *
8 * This file is part of the SPL, Solaris Porting Layer.
9 * For details, see <http://zfsonlinux.org/>.
10 *
11 * The SPL is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
15 *
16 * The SPL is distributed in the hope that it will be useful, but WITHOUT
17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
23 *
24 * Solaris Porting Layer (SPL) Task Queue Implementation.
25 */
26
27 #include <sys/taskq.h>
28 #include <sys/kmem.h>
29 #include <sys/tsd.h>
30
31 int spl_taskq_thread_bind = 0;
32 module_param(spl_taskq_thread_bind, int, 0644);
33 MODULE_PARM_DESC(spl_taskq_thread_bind, "Bind taskq thread to CPU by default");
34
35
36 int spl_taskq_thread_dynamic = 1;
37 module_param(spl_taskq_thread_dynamic, int, 0644);
38 MODULE_PARM_DESC(spl_taskq_thread_dynamic, "Allow dynamic taskq threads");
39
40 int spl_taskq_thread_priority = 1;
41 module_param(spl_taskq_thread_priority, int, 0644);
42 MODULE_PARM_DESC(spl_taskq_thread_priority,
43 "Allow non-default priority for taskq threads");
44
45 int spl_taskq_thread_sequential = 4;
46 module_param(spl_taskq_thread_sequential, int, 0644);
47 MODULE_PARM_DESC(spl_taskq_thread_sequential,
48 "Create new taskq threads after N sequential tasks");
49
50 /* Global system-wide dynamic task queue available for all consumers */
51 taskq_t *system_taskq;
52 EXPORT_SYMBOL(system_taskq);
53
54 /* Private dedicated taskq for creating new taskq threads on demand. */
55 static taskq_t *dynamic_taskq;
56 static taskq_thread_t *taskq_thread_create(taskq_t *);
57
58 /* List of all taskqs */
59 LIST_HEAD(tq_list);
60 DECLARE_RWSEM(tq_list_sem);
61 static uint_t taskq_tsd;
62
63 static int
64 task_km_flags(uint_t flags)
65 {
66 if (flags & TQ_NOSLEEP)
67 return (KM_NOSLEEP);
68
69 if (flags & TQ_PUSHPAGE)
70 return (KM_PUSHPAGE);
71
72 return (KM_SLEEP);
73 }
74
75 /*
76 * taskq_find_by_name - Find the largest instance number of a named taskq.
77 */
78 static int
79 taskq_find_by_name(const char *name)
80 {
81 struct list_head *tql;
82 taskq_t *tq;
83
84 list_for_each_prev(tql, &tq_list) {
85 tq = list_entry(tql, taskq_t, tq_taskqs);
86 if (strcmp(name, tq->tq_name) == 0)
87 return tq->tq_instance;
88 }
89 return (-1);
90 }
91
92 /*
93 * NOTE: Must be called with tq->tq_lock held, returns a list_t which
94 * is not attached to the free, work, or pending taskq lists.
95 */
96 static taskq_ent_t *
97 task_alloc(taskq_t *tq, uint_t flags, unsigned long *irqflags)
98 {
99 taskq_ent_t *t;
100 int count = 0;
101
102 ASSERT(tq);
103 ASSERT(spin_is_locked(&tq->tq_lock));
104 retry:
105 /* Acquire taskq_ent_t's from free list if available */
106 if (!list_empty(&tq->tq_free_list) && !(flags & TQ_NEW)) {
107 t = list_entry(tq->tq_free_list.next, taskq_ent_t, tqent_list);
108
109 ASSERT(!(t->tqent_flags & TQENT_FLAG_PREALLOC));
110 ASSERT(!(t->tqent_flags & TQENT_FLAG_CANCEL));
111 ASSERT(!timer_pending(&t->tqent_timer));
112
113 list_del_init(&t->tqent_list);
114 return (t);
115 }
116
117 /* Free list is empty and memory allocations are prohibited */
118 if (flags & TQ_NOALLOC)
119 return (NULL);
120
121 /* Hit maximum taskq_ent_t pool size */
122 if (tq->tq_nalloc >= tq->tq_maxalloc) {
123 if (flags & TQ_NOSLEEP)
124 return (NULL);
125
126 /*
127 * Sleep periodically polling the free list for an available
128 * taskq_ent_t. Dispatching with TQ_SLEEP should always succeed
129 * but we cannot block forever waiting for an taskq_ent_t to
130 * show up in the free list, otherwise a deadlock can happen.
131 *
132 * Therefore, we need to allocate a new task even if the number
133 * of allocated tasks is above tq->tq_maxalloc, but we still
134 * end up delaying the task allocation by one second, thereby
135 * throttling the task dispatch rate.
136 */
137 spin_unlock_irqrestore(&tq->tq_lock, *irqflags);
138 schedule_timeout(HZ / 100);
139 spin_lock_irqsave_nested(&tq->tq_lock, *irqflags,
140 tq->tq_lock_class);
141 if (count < 100) {
142 count++;
143 goto retry;
144 }
145 }
146
147 spin_unlock_irqrestore(&tq->tq_lock, *irqflags);
148 t = kmem_alloc(sizeof (taskq_ent_t), task_km_flags(flags));
149 spin_lock_irqsave_nested(&tq->tq_lock, *irqflags, tq->tq_lock_class);
150
151 if (t) {
152 taskq_init_ent(t);
153 tq->tq_nalloc++;
154 }
155
156 return (t);
157 }
158
159 /*
160 * NOTE: Must be called with tq->tq_lock held, expects the taskq_ent_t
161 * to already be removed from the free, work, or pending taskq lists.
162 */
163 static void
164 task_free(taskq_t *tq, taskq_ent_t *t)
165 {
166 ASSERT(tq);
167 ASSERT(t);
168 ASSERT(spin_is_locked(&tq->tq_lock));
169 ASSERT(list_empty(&t->tqent_list));
170 ASSERT(!timer_pending(&t->tqent_timer));
171
172 kmem_free(t, sizeof (taskq_ent_t));
173 tq->tq_nalloc--;
174 }
175
176 /*
177 * NOTE: Must be called with tq->tq_lock held, either destroys the
178 * taskq_ent_t if too many exist or moves it to the free list for later use.
179 */
180 static void
181 task_done(taskq_t *tq, taskq_ent_t *t)
182 {
183 ASSERT(tq);
184 ASSERT(t);
185 ASSERT(spin_is_locked(&tq->tq_lock));
186
187 /* Wake tasks blocked in taskq_wait_id() */
188 wake_up_all(&t->tqent_waitq);
189
190 list_del_init(&t->tqent_list);
191
192 if (tq->tq_nalloc <= tq->tq_minalloc) {
193 t->tqent_id = 0;
194 t->tqent_func = NULL;
195 t->tqent_arg = NULL;
196 t->tqent_flags = 0;
197
198 list_add_tail(&t->tqent_list, &tq->tq_free_list);
199 } else {
200 task_free(tq, t);
201 }
202 }
203
204 /*
205 * When a delayed task timer expires remove it from the delay list and
206 * add it to the priority list in order for immediate processing.
207 */
208 static void
209 task_expire(unsigned long data)
210 {
211 taskq_ent_t *w, *t = (taskq_ent_t *)data;
212 taskq_t *tq = t->tqent_taskq;
213 struct list_head *l;
214 unsigned long flags;
215
216 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
217
218 if (t->tqent_flags & TQENT_FLAG_CANCEL) {
219 ASSERT(list_empty(&t->tqent_list));
220 spin_unlock_irqrestore(&tq->tq_lock, flags);
221 return;
222 }
223
224 t->tqent_birth = jiffies;
225 /*
226 * The priority list must be maintained in strict task id order
227 * from lowest to highest for lowest_id to be easily calculable.
228 */
229 list_del(&t->tqent_list);
230 list_for_each_prev(l, &tq->tq_prio_list) {
231 w = list_entry(l, taskq_ent_t, tqent_list);
232 if (w->tqent_id < t->tqent_id) {
233 list_add(&t->tqent_list, l);
234 break;
235 }
236 }
237 if (l == &tq->tq_prio_list)
238 list_add(&t->tqent_list, &tq->tq_prio_list);
239
240 spin_unlock_irqrestore(&tq->tq_lock, flags);
241
242 wake_up(&tq->tq_work_waitq);
243 }
244
245 /*
246 * Returns the lowest incomplete taskqid_t. The taskqid_t may
247 * be queued on the pending list, on the priority list, on the
248 * delay list, or on the work list currently being handled, but
249 * it is not 100% complete yet.
250 */
251 static taskqid_t
252 taskq_lowest_id(taskq_t *tq)
253 {
254 taskqid_t lowest_id = tq->tq_next_id;
255 taskq_ent_t *t;
256 taskq_thread_t *tqt;
257
258 ASSERT(tq);
259 ASSERT(spin_is_locked(&tq->tq_lock));
260
261 if (!list_empty(&tq->tq_pend_list)) {
262 t = list_entry(tq->tq_pend_list.next, taskq_ent_t, tqent_list);
263 lowest_id = MIN(lowest_id, t->tqent_id);
264 }
265
266 if (!list_empty(&tq->tq_prio_list)) {
267 t = list_entry(tq->tq_prio_list.next, taskq_ent_t, tqent_list);
268 lowest_id = MIN(lowest_id, t->tqent_id);
269 }
270
271 if (!list_empty(&tq->tq_delay_list)) {
272 t = list_entry(tq->tq_delay_list.next, taskq_ent_t, tqent_list);
273 lowest_id = MIN(lowest_id, t->tqent_id);
274 }
275
276 if (!list_empty(&tq->tq_active_list)) {
277 tqt = list_entry(tq->tq_active_list.next, taskq_thread_t,
278 tqt_active_list);
279 ASSERT(tqt->tqt_id != 0);
280 lowest_id = MIN(lowest_id, tqt->tqt_id);
281 }
282
283 return (lowest_id);
284 }
285
286 /*
287 * Insert a task into a list keeping the list sorted by increasing taskqid.
288 */
289 static void
290 taskq_insert_in_order(taskq_t *tq, taskq_thread_t *tqt)
291 {
292 taskq_thread_t *w;
293 struct list_head *l;
294
295 ASSERT(tq);
296 ASSERT(tqt);
297 ASSERT(spin_is_locked(&tq->tq_lock));
298
299 list_for_each_prev(l, &tq->tq_active_list) {
300 w = list_entry(l, taskq_thread_t, tqt_active_list);
301 if (w->tqt_id < tqt->tqt_id) {
302 list_add(&tqt->tqt_active_list, l);
303 break;
304 }
305 }
306 if (l == &tq->tq_active_list)
307 list_add(&tqt->tqt_active_list, &tq->tq_active_list);
308 }
309
310 /*
311 * Find and return a task from the given list if it exists. The list
312 * must be in lowest to highest task id order.
313 */
314 static taskq_ent_t *
315 taskq_find_list(taskq_t *tq, struct list_head *lh, taskqid_t id)
316 {
317 struct list_head *l;
318 taskq_ent_t *t;
319
320 ASSERT(spin_is_locked(&tq->tq_lock));
321
322 list_for_each(l, lh) {
323 t = list_entry(l, taskq_ent_t, tqent_list);
324
325 if (t->tqent_id == id)
326 return (t);
327
328 if (t->tqent_id > id)
329 break;
330 }
331
332 return (NULL);
333 }
334
335 /*
336 * Find an already dispatched task given the task id regardless of what
337 * state it is in. If a task is still pending or executing it will be
338 * returned and 'active' set appropriately. If the task has already
339 * been run then NULL is returned.
340 */
341 static taskq_ent_t *
342 taskq_find(taskq_t *tq, taskqid_t id, int *active)
343 {
344 taskq_thread_t *tqt;
345 struct list_head *l;
346 taskq_ent_t *t;
347
348 ASSERT(spin_is_locked(&tq->tq_lock));
349 *active = 0;
350
351 t = taskq_find_list(tq, &tq->tq_delay_list, id);
352 if (t)
353 return (t);
354
355 t = taskq_find_list(tq, &tq->tq_prio_list, id);
356 if (t)
357 return (t);
358
359 t = taskq_find_list(tq, &tq->tq_pend_list, id);
360 if (t)
361 return (t);
362
363 list_for_each(l, &tq->tq_active_list) {
364 tqt = list_entry(l, taskq_thread_t, tqt_active_list);
365 if (tqt->tqt_id == id) {
366 t = tqt->tqt_task;
367 *active = 1;
368 return (t);
369 }
370 }
371
372 return (NULL);
373 }
374
375 /*
376 * Theory for the taskq_wait_id(), taskq_wait_outstanding(), and
377 * taskq_wait() functions below.
378 *
379 * Taskq waiting is accomplished by tracking the lowest outstanding task
380 * id and the next available task id. As tasks are dispatched they are
381 * added to the tail of the pending, priority, or delay lists. As worker
382 * threads become available the tasks are removed from the heads of these
383 * lists and linked to the worker threads. This ensures the lists are
384 * kept sorted by lowest to highest task id.
385 *
386 * Therefore the lowest outstanding task id can be quickly determined by
387 * checking the head item from all of these lists. This value is stored
388 * with the taskq as the lowest id. It only needs to be recalculated when
389 * either the task with the current lowest id completes or is canceled.
390 *
391 * By blocking until the lowest task id exceeds the passed task id the
392 * taskq_wait_outstanding() function can be easily implemented. Similarly,
393 * by blocking until the lowest task id matches the next task id taskq_wait()
394 * can be implemented.
395 *
396 * Callers should be aware that when there are multiple worked threads it
397 * is possible for larger task ids to complete before smaller ones. Also
398 * when the taskq contains delay tasks with small task ids callers may
399 * block for a considerable length of time waiting for them to expire and
400 * execute.
401 */
402 static int
403 taskq_wait_id_check(taskq_t *tq, taskqid_t id)
404 {
405 int active = 0;
406 int rc;
407 unsigned long flags;
408
409 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
410 rc = (taskq_find(tq, id, &active) == NULL);
411 spin_unlock_irqrestore(&tq->tq_lock, flags);
412
413 return (rc);
414 }
415
416 /*
417 * The taskq_wait_id() function blocks until the passed task id completes.
418 * This does not guarantee that all lower task ids have completed.
419 */
420 void
421 taskq_wait_id(taskq_t *tq, taskqid_t id)
422 {
423 wait_event(tq->tq_wait_waitq, taskq_wait_id_check(tq, id));
424 }
425 EXPORT_SYMBOL(taskq_wait_id);
426
427 static int
428 taskq_wait_outstanding_check(taskq_t *tq, taskqid_t id)
429 {
430 int rc;
431 unsigned long flags;
432
433 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
434 rc = (id < tq->tq_lowest_id);
435 spin_unlock_irqrestore(&tq->tq_lock, flags);
436
437 return (rc);
438 }
439
440 /*
441 * The taskq_wait_outstanding() function will block until all tasks with a
442 * lower taskqid than the passed 'id' have been completed. Note that all
443 * task id's are assigned monotonically at dispatch time. Zero may be
444 * passed for the id to indicate all tasks dispatch up to this point,
445 * but not after, should be waited for.
446 */
447 void
448 taskq_wait_outstanding(taskq_t *tq, taskqid_t id)
449 {
450 wait_event(tq->tq_wait_waitq,
451 taskq_wait_outstanding_check(tq, id ? id : tq->tq_next_id - 1));
452 }
453 EXPORT_SYMBOL(taskq_wait_outstanding);
454
455 static int
456 taskq_wait_check(taskq_t *tq)
457 {
458 int rc;
459 unsigned long flags;
460
461 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
462 rc = (tq->tq_lowest_id == tq->tq_next_id);
463 spin_unlock_irqrestore(&tq->tq_lock, flags);
464
465 return (rc);
466 }
467
468 /*
469 * The taskq_wait() function will block until the taskq is empty.
470 * This means that if a taskq re-dispatches work to itself taskq_wait()
471 * callers will block indefinitely.
472 */
473 void
474 taskq_wait(taskq_t *tq)
475 {
476 wait_event(tq->tq_wait_waitq, taskq_wait_check(tq));
477 }
478 EXPORT_SYMBOL(taskq_wait);
479
480 int
481 taskq_member(taskq_t *tq, kthread_t *t)
482 {
483 return (tq == (taskq_t *)tsd_get_by_thread(taskq_tsd, t));
484 }
485 EXPORT_SYMBOL(taskq_member);
486
487 /*
488 * Cancel an already dispatched task given the task id. Still pending tasks
489 * will be immediately canceled, and if the task is active the function will
490 * block until it completes. Preallocated tasks which are canceled must be
491 * freed by the caller.
492 */
493 int
494 taskq_cancel_id(taskq_t *tq, taskqid_t id)
495 {
496 taskq_ent_t *t;
497 int active = 0;
498 int rc = ENOENT;
499 unsigned long flags;
500
501 ASSERT(tq);
502
503 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
504 t = taskq_find(tq, id, &active);
505 if (t && !active) {
506 list_del_init(&t->tqent_list);
507 t->tqent_flags |= TQENT_FLAG_CANCEL;
508
509 /*
510 * When canceling the lowest outstanding task id we
511 * must recalculate the new lowest outstanding id.
512 */
513 if (tq->tq_lowest_id == t->tqent_id) {
514 tq->tq_lowest_id = taskq_lowest_id(tq);
515 ASSERT3S(tq->tq_lowest_id, >, t->tqent_id);
516 }
517
518 /*
519 * The task_expire() function takes the tq->tq_lock so drop
520 * drop the lock before synchronously cancelling the timer.
521 */
522 if (timer_pending(&t->tqent_timer)) {
523 spin_unlock_irqrestore(&tq->tq_lock, flags);
524 del_timer_sync(&t->tqent_timer);
525 spin_lock_irqsave_nested(&tq->tq_lock, flags,
526 tq->tq_lock_class);
527 }
528
529 if (!(t->tqent_flags & TQENT_FLAG_PREALLOC))
530 task_done(tq, t);
531
532 rc = 0;
533 }
534 spin_unlock_irqrestore(&tq->tq_lock, flags);
535
536 if (active) {
537 taskq_wait_id(tq, id);
538 rc = EBUSY;
539 }
540
541 return (rc);
542 }
543 EXPORT_SYMBOL(taskq_cancel_id);
544
545 static int taskq_thread_spawn(taskq_t *tq);
546
547 taskqid_t
548 taskq_dispatch(taskq_t *tq, task_func_t func, void *arg, uint_t flags)
549 {
550 taskq_ent_t *t;
551 taskqid_t rc = 0;
552 unsigned long irqflags;
553
554 ASSERT(tq);
555 ASSERT(func);
556
557 spin_lock_irqsave_nested(&tq->tq_lock, irqflags, tq->tq_lock_class);
558
559 /* Taskq being destroyed and all tasks drained */
560 if (!(tq->tq_flags & TASKQ_ACTIVE))
561 goto out;
562
563 /* Do not queue the task unless there is idle thread for it */
564 ASSERT(tq->tq_nactive <= tq->tq_nthreads);
565 if ((flags & TQ_NOQUEUE) && (tq->tq_nactive == tq->tq_nthreads))
566 goto out;
567
568 if ((t = task_alloc(tq, flags, &irqflags)) == NULL)
569 goto out;
570
571 spin_lock(&t->tqent_lock);
572
573 /* Queue to the priority list instead of the pending list */
574 if (flags & TQ_FRONT)
575 list_add_tail(&t->tqent_list, &tq->tq_prio_list);
576 else
577 list_add_tail(&t->tqent_list, &tq->tq_pend_list);
578
579 t->tqent_id = rc = tq->tq_next_id;
580 tq->tq_next_id++;
581 t->tqent_func = func;
582 t->tqent_arg = arg;
583 t->tqent_taskq = tq;
584 t->tqent_timer.data = 0;
585 t->tqent_timer.function = NULL;
586 t->tqent_timer.expires = 0;
587 t->tqent_birth = jiffies;
588
589 ASSERT(!(t->tqent_flags & TQENT_FLAG_PREALLOC));
590
591 spin_unlock(&t->tqent_lock);
592
593 wake_up(&tq->tq_work_waitq);
594 out:
595 /* Spawn additional taskq threads if required. */
596 if (tq->tq_nactive == tq->tq_nthreads)
597 (void) taskq_thread_spawn(tq);
598
599 spin_unlock_irqrestore(&tq->tq_lock, irqflags);
600 return (rc);
601 }
602 EXPORT_SYMBOL(taskq_dispatch);
603
604 taskqid_t
605 taskq_dispatch_delay(taskq_t *tq, task_func_t func, void *arg,
606 uint_t flags, clock_t expire_time)
607 {
608 taskqid_t rc = 0;
609 taskq_ent_t *t;
610 unsigned long irqflags;
611
612 ASSERT(tq);
613 ASSERT(func);
614
615 spin_lock_irqsave_nested(&tq->tq_lock, irqflags, tq->tq_lock_class);
616
617 /* Taskq being destroyed and all tasks drained */
618 if (!(tq->tq_flags & TASKQ_ACTIVE))
619 goto out;
620
621 if ((t = task_alloc(tq, flags, &irqflags)) == NULL)
622 goto out;
623
624 spin_lock(&t->tqent_lock);
625
626 /* Queue to the delay list for subsequent execution */
627 list_add_tail(&t->tqent_list, &tq->tq_delay_list);
628
629 t->tqent_id = rc = tq->tq_next_id;
630 tq->tq_next_id++;
631 t->tqent_func = func;
632 t->tqent_arg = arg;
633 t->tqent_taskq = tq;
634 t->tqent_timer.data = (unsigned long)t;
635 t->tqent_timer.function = task_expire;
636 t->tqent_timer.expires = (unsigned long)expire_time;
637 add_timer(&t->tqent_timer);
638
639 ASSERT(!(t->tqent_flags & TQENT_FLAG_PREALLOC));
640
641 spin_unlock(&t->tqent_lock);
642 out:
643 /* Spawn additional taskq threads if required. */
644 if (tq->tq_nactive == tq->tq_nthreads)
645 (void) taskq_thread_spawn(tq);
646 spin_unlock_irqrestore(&tq->tq_lock, irqflags);
647 return (rc);
648 }
649 EXPORT_SYMBOL(taskq_dispatch_delay);
650
651 void
652 taskq_dispatch_ent(taskq_t *tq, task_func_t func, void *arg, uint_t flags,
653 taskq_ent_t *t)
654 {
655 unsigned long irqflags;
656 ASSERT(tq);
657 ASSERT(func);
658
659 spin_lock_irqsave_nested(&tq->tq_lock, irqflags,
660 tq->tq_lock_class);
661
662 /* Taskq being destroyed and all tasks drained */
663 if (!(tq->tq_flags & TASKQ_ACTIVE)) {
664 t->tqent_id = 0;
665 goto out;
666 }
667
668 spin_lock(&t->tqent_lock);
669
670 /*
671 * Mark it as a prealloc'd task. This is important
672 * to ensure that we don't free it later.
673 */
674 t->tqent_flags |= TQENT_FLAG_PREALLOC;
675
676 /* Queue to the priority list instead of the pending list */
677 if (flags & TQ_FRONT)
678 list_add_tail(&t->tqent_list, &tq->tq_prio_list);
679 else
680 list_add_tail(&t->tqent_list, &tq->tq_pend_list);
681
682 t->tqent_id = tq->tq_next_id;
683 tq->tq_next_id++;
684 t->tqent_func = func;
685 t->tqent_arg = arg;
686 t->tqent_taskq = tq;
687 t->tqent_birth = jiffies;
688
689 spin_unlock(&t->tqent_lock);
690
691 wake_up(&tq->tq_work_waitq);
692 out:
693 /* Spawn additional taskq threads if required. */
694 if (tq->tq_nactive == tq->tq_nthreads)
695 (void) taskq_thread_spawn(tq);
696 spin_unlock_irqrestore(&tq->tq_lock, irqflags);
697 }
698 EXPORT_SYMBOL(taskq_dispatch_ent);
699
700 int
701 taskq_empty_ent(taskq_ent_t *t)
702 {
703 return (list_empty(&t->tqent_list));
704 }
705 EXPORT_SYMBOL(taskq_empty_ent);
706
707 void
708 taskq_init_ent(taskq_ent_t *t)
709 {
710 spin_lock_init(&t->tqent_lock);
711 init_waitqueue_head(&t->tqent_waitq);
712 init_timer(&t->tqent_timer);
713 INIT_LIST_HEAD(&t->tqent_list);
714 t->tqent_id = 0;
715 t->tqent_func = NULL;
716 t->tqent_arg = NULL;
717 t->tqent_flags = 0;
718 t->tqent_taskq = NULL;
719 }
720 EXPORT_SYMBOL(taskq_init_ent);
721
722 /*
723 * Return the next pending task, preference is given to tasks on the
724 * priority list which were dispatched with TQ_FRONT.
725 */
726 static taskq_ent_t *
727 taskq_next_ent(taskq_t *tq)
728 {
729 struct list_head *list;
730
731 ASSERT(spin_is_locked(&tq->tq_lock));
732
733 if (!list_empty(&tq->tq_prio_list))
734 list = &tq->tq_prio_list;
735 else if (!list_empty(&tq->tq_pend_list))
736 list = &tq->tq_pend_list;
737 else
738 return (NULL);
739
740 return (list_entry(list->next, taskq_ent_t, tqent_list));
741 }
742
743 /*
744 * Spawns a new thread for the specified taskq.
745 */
746 static void
747 taskq_thread_spawn_task(void *arg)
748 {
749 taskq_t *tq = (taskq_t *)arg;
750 unsigned long flags;
751
752 (void) taskq_thread_create(tq);
753
754 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
755 tq->tq_nspawn--;
756 spin_unlock_irqrestore(&tq->tq_lock, flags);
757 }
758
759 /*
760 * Spawn addition threads for dynamic taskqs (TASKQ_DYNAMIC) the current
761 * number of threads is insufficient to handle the pending tasks. These
762 * new threads must be created by the dedicated dynamic_taskq to avoid
763 * deadlocks between thread creation and memory reclaim. The system_taskq
764 * which is also a dynamic taskq cannot be safely used for this.
765 */
766 static int
767 taskq_thread_spawn(taskq_t *tq)
768 {
769 int spawning = 0;
770
771 if (!(tq->tq_flags & TASKQ_DYNAMIC))
772 return (0);
773
774 if ((tq->tq_nthreads + tq->tq_nspawn < tq->tq_maxthreads) &&
775 (tq->tq_flags & TASKQ_ACTIVE)) {
776 spawning = (++tq->tq_nspawn);
777 taskq_dispatch(dynamic_taskq, taskq_thread_spawn_task,
778 tq, TQ_NOSLEEP);
779 }
780
781 return (spawning);
782 }
783
784 /*
785 * Threads in a dynamic taskq should only exit once it has been completely
786 * drained and no other threads are actively servicing tasks. This prevents
787 * threads from being created and destroyed more than is required.
788 *
789 * The first thread is the thread list is treated as the primary thread.
790 * There is nothing special about the primary thread but in order to avoid
791 * all the taskq pids from changing we opt to make it long running.
792 */
793 static int
794 taskq_thread_should_stop(taskq_t *tq, taskq_thread_t *tqt)
795 {
796 ASSERT(spin_is_locked(&tq->tq_lock));
797
798 if (!(tq->tq_flags & TASKQ_DYNAMIC))
799 return (0);
800
801 if (list_first_entry(&(tq->tq_thread_list), taskq_thread_t,
802 tqt_thread_list) == tqt)
803 return (0);
804
805 return
806 ((tq->tq_nspawn == 0) && /* No threads are being spawned */
807 (tq->tq_nactive == 0) && /* No threads are handling tasks */
808 (tq->tq_nthreads > 1) && /* More than 1 thread is running */
809 (!taskq_next_ent(tq)) && /* There are no pending tasks */
810 (spl_taskq_thread_dynamic)); /* Dynamic taskqs are allowed */
811 }
812
813 static int
814 taskq_thread(void *args)
815 {
816 DECLARE_WAITQUEUE(wait, current);
817 sigset_t blocked;
818 taskq_thread_t *tqt = args;
819 taskq_t *tq;
820 taskq_ent_t *t;
821 int seq_tasks = 0;
822 unsigned long flags;
823
824 ASSERT(tqt);
825 ASSERT(tqt->tqt_tq);
826 tq = tqt->tqt_tq;
827 current->flags |= PF_NOFREEZE;
828
829 (void) spl_fstrans_mark();
830
831 sigfillset(&blocked);
832 sigprocmask(SIG_BLOCK, &blocked, NULL);
833 flush_signals(current);
834
835 tsd_set(taskq_tsd, tq);
836 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
837
838 /* Immediately exit if more threads than allowed were created. */
839 if (tq->tq_nthreads >= tq->tq_maxthreads)
840 goto error;
841
842 tq->tq_nthreads++;
843 list_add_tail(&tqt->tqt_thread_list, &tq->tq_thread_list);
844 wake_up(&tq->tq_wait_waitq);
845 set_current_state(TASK_INTERRUPTIBLE);
846
847 while (!kthread_should_stop()) {
848
849 if (list_empty(&tq->tq_pend_list) &&
850 list_empty(&tq->tq_prio_list)) {
851
852 if (taskq_thread_should_stop(tq, tqt)) {
853 wake_up_all(&tq->tq_wait_waitq);
854 break;
855 }
856
857 add_wait_queue_exclusive(&tq->tq_work_waitq, &wait);
858 spin_unlock_irqrestore(&tq->tq_lock, flags);
859
860 schedule();
861 seq_tasks = 0;
862
863 spin_lock_irqsave_nested(&tq->tq_lock, flags,
864 tq->tq_lock_class);
865 remove_wait_queue(&tq->tq_work_waitq, &wait);
866 } else {
867 __set_current_state(TASK_RUNNING);
868 }
869
870 if ((t = taskq_next_ent(tq)) != NULL) {
871 list_del_init(&t->tqent_list);
872
873 /*
874 * In order to support recursively dispatching a
875 * preallocated taskq_ent_t, tqent_id must be
876 * stored prior to executing tqent_func.
877 */
878 tqt->tqt_id = t->tqent_id;
879 tqt->tqt_task = t;
880
881 /*
882 * We must store a copy of the flags prior to
883 * servicing the task (servicing a prealloc'd task
884 * returns the ownership of the tqent back to
885 * the caller of taskq_dispatch). Thus,
886 * tqent_flags _may_ change within the call.
887 */
888 tqt->tqt_flags = t->tqent_flags;
889
890 taskq_insert_in_order(tq, tqt);
891 tq->tq_nactive++;
892 spin_unlock_irqrestore(&tq->tq_lock, flags);
893
894 /* Perform the requested task */
895 t->tqent_func(t->tqent_arg);
896
897 spin_lock_irqsave_nested(&tq->tq_lock, flags,
898 tq->tq_lock_class);
899 tq->tq_nactive--;
900 list_del_init(&tqt->tqt_active_list);
901 tqt->tqt_task = NULL;
902
903 /* For prealloc'd tasks, we don't free anything. */
904 if (!(tqt->tqt_flags & TQENT_FLAG_PREALLOC))
905 task_done(tq, t);
906
907 /*
908 * When the current lowest outstanding taskqid is
909 * done calculate the new lowest outstanding id
910 */
911 if (tq->tq_lowest_id == tqt->tqt_id) {
912 tq->tq_lowest_id = taskq_lowest_id(tq);
913 ASSERT3S(tq->tq_lowest_id, >, tqt->tqt_id);
914 }
915
916 /* Spawn additional taskq threads if required. */
917 if ((++seq_tasks) > spl_taskq_thread_sequential &&
918 taskq_thread_spawn(tq))
919 seq_tasks = 0;
920
921 tqt->tqt_id = 0;
922 tqt->tqt_flags = 0;
923 wake_up_all(&tq->tq_wait_waitq);
924 } else {
925 if (taskq_thread_should_stop(tq, tqt))
926 break;
927 }
928
929 set_current_state(TASK_INTERRUPTIBLE);
930
931 }
932
933 __set_current_state(TASK_RUNNING);
934 tq->tq_nthreads--;
935 list_del_init(&tqt->tqt_thread_list);
936 error:
937 kmem_free(tqt, sizeof (taskq_thread_t));
938 spin_unlock_irqrestore(&tq->tq_lock, flags);
939
940 tsd_set(taskq_tsd, NULL);
941
942 return (0);
943 }
944
945 static taskq_thread_t *
946 taskq_thread_create(taskq_t *tq)
947 {
948 static int last_used_cpu = 0;
949 taskq_thread_t *tqt;
950
951 tqt = kmem_alloc(sizeof (*tqt), KM_PUSHPAGE);
952 INIT_LIST_HEAD(&tqt->tqt_thread_list);
953 INIT_LIST_HEAD(&tqt->tqt_active_list);
954 tqt->tqt_tq = tq;
955 tqt->tqt_id = 0;
956
957 tqt->tqt_thread = spl_kthread_create(taskq_thread, tqt,
958 "%s", tq->tq_name);
959 if (tqt->tqt_thread == NULL) {
960 kmem_free(tqt, sizeof (taskq_thread_t));
961 return (NULL);
962 }
963
964 if (spl_taskq_thread_bind) {
965 last_used_cpu = (last_used_cpu + 1) % num_online_cpus();
966 kthread_bind(tqt->tqt_thread, last_used_cpu);
967 }
968
969 if (spl_taskq_thread_priority)
970 set_user_nice(tqt->tqt_thread, PRIO_TO_NICE(tq->tq_pri));
971
972 wake_up_process(tqt->tqt_thread);
973
974 return (tqt);
975 }
976
977 taskq_t *
978 taskq_create(const char *name, int nthreads, pri_t pri,
979 int minalloc, int maxalloc, uint_t flags)
980 {
981 taskq_t *tq;
982 taskq_thread_t *tqt;
983 int count = 0, rc = 0, i;
984 unsigned long irqflags;
985
986 ASSERT(name != NULL);
987 ASSERT(minalloc >= 0);
988 ASSERT(maxalloc <= INT_MAX);
989 ASSERT(!(flags & (TASKQ_CPR_SAFE))); /* Unsupported */
990
991 /* Scale the number of threads using nthreads as a percentage */
992 if (flags & TASKQ_THREADS_CPU_PCT) {
993 ASSERT(nthreads <= 100);
994 ASSERT(nthreads >= 0);
995 nthreads = MIN(nthreads, 100);
996 nthreads = MAX(nthreads, 0);
997 nthreads = MAX((num_online_cpus() * nthreads) / 100, 1);
998 }
999
1000 tq = kmem_alloc(sizeof (*tq), KM_PUSHPAGE);
1001 if (tq == NULL)
1002 return (NULL);
1003
1004 spin_lock_init(&tq->tq_lock);
1005 INIT_LIST_HEAD(&tq->tq_thread_list);
1006 INIT_LIST_HEAD(&tq->tq_active_list);
1007 tq->tq_name = strdup(name);
1008 tq->tq_nactive = 0;
1009 tq->tq_nthreads = 0;
1010 tq->tq_nspawn = 0;
1011 tq->tq_maxthreads = nthreads;
1012 tq->tq_pri = pri;
1013 tq->tq_minalloc = minalloc;
1014 tq->tq_maxalloc = maxalloc;
1015 tq->tq_nalloc = 0;
1016 tq->tq_flags = (flags | TASKQ_ACTIVE);
1017 tq->tq_next_id = 1;
1018 tq->tq_lowest_id = 1;
1019 INIT_LIST_HEAD(&tq->tq_free_list);
1020 INIT_LIST_HEAD(&tq->tq_pend_list);
1021 INIT_LIST_HEAD(&tq->tq_prio_list);
1022 INIT_LIST_HEAD(&tq->tq_delay_list);
1023 init_waitqueue_head(&tq->tq_work_waitq);
1024 init_waitqueue_head(&tq->tq_wait_waitq);
1025 tq->tq_lock_class = TQ_LOCK_GENERAL;
1026 INIT_LIST_HEAD(&tq->tq_taskqs);
1027
1028 if (flags & TASKQ_PREPOPULATE) {
1029 spin_lock_irqsave_nested(&tq->tq_lock, irqflags,
1030 tq->tq_lock_class);
1031
1032 for (i = 0; i < minalloc; i++)
1033 task_done(tq, task_alloc(tq, TQ_PUSHPAGE | TQ_NEW,
1034 &irqflags));
1035
1036 spin_unlock_irqrestore(&tq->tq_lock, irqflags);
1037 }
1038
1039 if ((flags & TASKQ_DYNAMIC) && spl_taskq_thread_dynamic)
1040 nthreads = 1;
1041
1042 for (i = 0; i < nthreads; i++) {
1043 tqt = taskq_thread_create(tq);
1044 if (tqt == NULL)
1045 rc = 1;
1046 else
1047 count++;
1048 }
1049
1050 /* Wait for all threads to be started before potential destroy */
1051 wait_event(tq->tq_wait_waitq, tq->tq_nthreads == count);
1052
1053 if (rc) {
1054 taskq_destroy(tq);
1055 tq = NULL;
1056 } else {
1057 down_write(&tq_list_sem);
1058 tq->tq_instance = taskq_find_by_name(name) + 1;
1059 list_add_tail(&tq->tq_taskqs, &tq_list);
1060 up_write(&tq_list_sem);
1061 }
1062
1063 return (tq);
1064 }
1065 EXPORT_SYMBOL(taskq_create);
1066
1067 void
1068 taskq_destroy(taskq_t *tq)
1069 {
1070 struct task_struct *thread;
1071 taskq_thread_t *tqt;
1072 taskq_ent_t *t;
1073 unsigned long flags;
1074
1075 ASSERT(tq);
1076 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
1077 tq->tq_flags &= ~TASKQ_ACTIVE;
1078 spin_unlock_irqrestore(&tq->tq_lock, flags);
1079
1080 /*
1081 * When TASKQ_ACTIVE is clear new tasks may not be added nor may
1082 * new worker threads be spawned for dynamic taskq.
1083 */
1084 if (dynamic_taskq != NULL)
1085 taskq_wait_outstanding(dynamic_taskq, 0);
1086
1087 taskq_wait(tq);
1088
1089 /* remove taskq from global list used by the kstats */
1090 down_write(&tq_list_sem);
1091 list_del(&tq->tq_taskqs);
1092 up_write(&tq_list_sem);
1093
1094 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
1095
1096 /*
1097 * Signal each thread to exit and block until it does. Each thread
1098 * is responsible for removing itself from the list and freeing its
1099 * taskq_thread_t. This allows for idle threads to opt to remove
1100 * themselves from the taskq. They can be recreated as needed.
1101 */
1102 while (!list_empty(&tq->tq_thread_list)) {
1103 tqt = list_entry(tq->tq_thread_list.next,
1104 taskq_thread_t, tqt_thread_list);
1105 thread = tqt->tqt_thread;
1106 spin_unlock_irqrestore(&tq->tq_lock, flags);
1107
1108 kthread_stop(thread);
1109
1110 spin_lock_irqsave_nested(&tq->tq_lock, flags,
1111 tq->tq_lock_class);
1112 }
1113
1114 while (!list_empty(&tq->tq_free_list)) {
1115 t = list_entry(tq->tq_free_list.next, taskq_ent_t, tqent_list);
1116
1117 ASSERT(!(t->tqent_flags & TQENT_FLAG_PREALLOC));
1118
1119 list_del_init(&t->tqent_list);
1120 task_free(tq, t);
1121 }
1122
1123 ASSERT0(tq->tq_nthreads);
1124 ASSERT0(tq->tq_nalloc);
1125 ASSERT0(tq->tq_nspawn);
1126 ASSERT(list_empty(&tq->tq_thread_list));
1127 ASSERT(list_empty(&tq->tq_active_list));
1128 ASSERT(list_empty(&tq->tq_free_list));
1129 ASSERT(list_empty(&tq->tq_pend_list));
1130 ASSERT(list_empty(&tq->tq_prio_list));
1131 ASSERT(list_empty(&tq->tq_delay_list));
1132
1133 spin_unlock_irqrestore(&tq->tq_lock, flags);
1134
1135 strfree(tq->tq_name);
1136 kmem_free(tq, sizeof (taskq_t));
1137 }
1138 EXPORT_SYMBOL(taskq_destroy);
1139
1140
1141 static unsigned int spl_taskq_kick = 0;
1142
1143 /*
1144 * 2.6.36 API Change
1145 * module_param_cb is introduced to take kernel_param_ops and
1146 * module_param_call is marked as obsolete. Also set and get operations
1147 * were changed to take a 'const struct kernel_param *'.
1148 */
1149 static int
1150 #ifdef module_param_cb
1151 param_set_taskq_kick(const char *val, const struct kernel_param *kp)
1152 #else
1153 param_set_taskq_kick(const char *val, struct kernel_param *kp)
1154 #endif
1155 {
1156 int ret;
1157 taskq_t *tq;
1158 taskq_ent_t *t;
1159 unsigned long flags;
1160
1161 ret = param_set_uint(val, kp);
1162 if (ret < 0 || !spl_taskq_kick)
1163 return (ret);
1164 /* reset value */
1165 spl_taskq_kick = 0;
1166
1167 down_read(&tq_list_sem);
1168 list_for_each_entry(tq, &tq_list, tq_taskqs) {
1169 spin_lock_irqsave_nested(&tq->tq_lock, flags,
1170 tq->tq_lock_class);
1171 /* Check if the first pending is older than 5 seconds */
1172 t = taskq_next_ent(tq);
1173 if (t && time_after(jiffies, t->tqent_birth + 5*HZ)) {
1174 (void) taskq_thread_spawn(tq);
1175 printk(KERN_INFO "spl: Kicked taskq %s/%d\n",
1176 tq->tq_name, tq->tq_instance);
1177 }
1178 spin_unlock_irqrestore(&tq->tq_lock, flags);
1179 }
1180 up_read(&tq_list_sem);
1181 return (ret);
1182 }
1183
1184 #ifdef module_param_cb
1185 static const struct kernel_param_ops param_ops_taskq_kick = {
1186 .set = param_set_taskq_kick,
1187 .get = param_get_uint,
1188 };
1189 module_param_cb(spl_taskq_kick, &param_ops_taskq_kick, &spl_taskq_kick, 0644);
1190 #else
1191 module_param_call(spl_taskq_kick, param_set_taskq_kick, param_get_uint,
1192 &spl_taskq_kick, 0644);
1193 #endif
1194 MODULE_PARM_DESC(spl_taskq_kick,
1195 "Write nonzero to kick stuck taskqs to spawn more threads");
1196
1197 int
1198 spl_taskq_init(void)
1199 {
1200 tsd_create(&taskq_tsd, NULL);
1201
1202 system_taskq = taskq_create("spl_system_taskq", MAX(boot_ncpus, 64),
1203 maxclsyspri, boot_ncpus, INT_MAX, TASKQ_PREPOPULATE|TASKQ_DYNAMIC);
1204 if (system_taskq == NULL)
1205 return (1);
1206
1207 dynamic_taskq = taskq_create("spl_dynamic_taskq", 1,
1208 maxclsyspri, boot_ncpus, INT_MAX, TASKQ_PREPOPULATE);
1209 if (dynamic_taskq == NULL) {
1210 taskq_destroy(system_taskq);
1211 return (1);
1212 }
1213
1214 /*
1215 * This is used to annotate tq_lock, so
1216 * taskq_dispatch -> taskq_thread_spawn -> taskq_dispatch
1217 * does not trigger a lockdep warning re: possible recursive locking
1218 */
1219 dynamic_taskq->tq_lock_class = TQ_LOCK_DYNAMIC;
1220
1221 return (0);
1222 }
1223
1224 void
1225 spl_taskq_fini(void)
1226 {
1227 taskq_destroy(dynamic_taskq);
1228 dynamic_taskq = NULL;
1229
1230 taskq_destroy(system_taskq);
1231 system_taskq = NULL;
1232
1233 tsd_destroy(&taskq_tsd);
1234 }