]> git.proxmox.com Git - mirror_spl.git/blame - module/spl/spl-taskq.c
Allow kicking a taskq to spawn more threads
[mirror_spl.git] / module / spl / spl-taskq.c
CommitLineData
2c4332cf 1/*
716154c5
BB
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>.
715f6251 6 * UCRL-CODE-235197
7 *
716154c5 8 * This file is part of the SPL, Solaris Porting Layer.
3d6af2dd 9 * For details, see <http://zfsonlinux.org/>.
715f6251 10 *
716154c5
BB
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
715f6251 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
716154c5 22 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
2c4332cf 23 *
716154c5 24 * Solaris Porting Layer (SPL) Task Queue Implementation.
2c4332cf 25 */
715f6251 26
f4b37741 27#include <sys/taskq.h>
3d061e9d 28#include <sys/kmem.h>
16522ac2 29#include <sys/tsd.h>
937879f1 30
703371d8
AV
31int spl_taskq_thread_bind = 0;
32module_param(spl_taskq_thread_bind, int, 0644);
33MODULE_PARM_DESC(spl_taskq_thread_bind, "Bind taskq thread to CPU by default");
34
f7a973d9
BB
35
36int spl_taskq_thread_dynamic = 1;
37module_param(spl_taskq_thread_dynamic, int, 0644);
38MODULE_PARM_DESC(spl_taskq_thread_dynamic, "Allow dynamic taskq threads");
39
62aa81a5
BB
40int spl_taskq_thread_priority = 1;
41module_param(spl_taskq_thread_priority, int, 0644);
42MODULE_PARM_DESC(spl_taskq_thread_priority,
2c4332cf 43 "Allow non-default priority for taskq threads");
62aa81a5 44
f7a973d9
BB
45int spl_taskq_thread_sequential = 4;
46module_param(spl_taskq_thread_sequential, int, 0644);
47MODULE_PARM_DESC(spl_taskq_thread_sequential,
2c4332cf 48 "Create new taskq threads after N sequential tasks");
f7a973d9 49
e9cb2b4f
BB
50/* Global system-wide dynamic task queue available for all consumers */
51taskq_t *system_taskq;
52EXPORT_SYMBOL(system_taskq);
53
f7a973d9
BB
54/* Private dedicated taskq for creating new taskq threads on demand. */
55static taskq_t *dynamic_taskq;
56static taskq_thread_t *taskq_thread_create(taskq_t *);
57
200366f2
TC
58/* List of all taskqs */
59LIST_HEAD(tq_list);
60DECLARE_RWSEM(tq_list_sem);
16522ac2 61static uint_t taskq_tsd;
200366f2 62
9b51f218
BB
63static int
64task_km_flags(uint_t flags)
65{
66 if (flags & TQ_NOSLEEP)
2c4332cf 67 return (KM_NOSLEEP);
9b51f218
BB
68
69 if (flags & TQ_PUSHPAGE)
2c4332cf 70 return (KM_PUSHPAGE);
9b51f218 71
2c4332cf 72 return (KM_SLEEP);
9b51f218
BB
73}
74
200366f2
TC
75/*
76 * taskq_find_by_name - Find the largest instance number of a named taskq.
77 */
78static int
79taskq_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
82387586
BB
92/*
93 * NOTE: Must be called with tq->tq_lock held, returns a list_t which
bcd68186 94 * is not attached to the free, work, or pending taskq lists.
f1ca4da6 95 */
046a70c9 96static taskq_ent_t *
066b89e6 97task_alloc(taskq_t *tq, uint_t flags, unsigned long *irqflags)
bcd68186 98{
472a34ca
BB
99 taskq_ent_t *t;
100 int count = 0;
bcd68186 101
472a34ca
BB
102 ASSERT(tq);
103 ASSERT(spin_is_locked(&tq->tq_lock));
bcd68186 104retry:
472a34ca
BB
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));
d9acd930
BB
110 ASSERT(!(t->tqent_flags & TQENT_FLAG_CANCEL));
111 ASSERT(!timer_pending(&t->tqent_timer));
472a34ca
BB
112
113 list_del_init(&t->tqent_list);
8d9a23e8 114 return (t);
472a34ca
BB
115 }
116
117 /* Free list is empty and memory allocations are prohibited */
118 if (flags & TQ_NOALLOC)
8d9a23e8 119 return (NULL);
472a34ca
BB
120
121 /* Hit maximum taskq_ent_t pool size */
122 if (tq->tq_nalloc >= tq->tq_maxalloc) {
123 if (flags & TQ_NOSLEEP)
8d9a23e8 124 return (NULL);
472a34ca
BB
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 */
066b89e6 137 spin_unlock_irqrestore(&tq->tq_lock, *irqflags);
472a34ca 138 schedule_timeout(HZ / 100);
066b89e6 139 spin_lock_irqsave_nested(&tq->tq_lock, *irqflags,
326172d8 140 tq->tq_lock_class);
8d9a23e8
BB
141 if (count < 100) {
142 count++;
143 goto retry;
144 }
472a34ca
BB
145 }
146
066b89e6 147 spin_unlock_irqrestore(&tq->tq_lock, *irqflags);
2c4332cf 148 t = kmem_alloc(sizeof (taskq_ent_t), task_km_flags(flags));
066b89e6 149 spin_lock_irqsave_nested(&tq->tq_lock, *irqflags, tq->tq_lock_class);
472a34ca
BB
150
151 if (t) {
152 taskq_init_ent(t);
153 tq->tq_nalloc++;
154 }
155
8d9a23e8 156 return (t);
bcd68186 157}
158
82387586 159/*
046a70c9 160 * NOTE: Must be called with tq->tq_lock held, expects the taskq_ent_t
bcd68186 161 * to already be removed from the free, work, or pending taskq lists.
162 */
163static void
046a70c9 164task_free(taskq_t *tq, taskq_ent_t *t)
bcd68186 165{
472a34ca
BB
166 ASSERT(tq);
167 ASSERT(t);
bcd68186 168 ASSERT(spin_is_locked(&tq->tq_lock));
046a70c9 169 ASSERT(list_empty(&t->tqent_list));
d9acd930 170 ASSERT(!timer_pending(&t->tqent_timer));
bcd68186 171
2c4332cf 172 kmem_free(t, sizeof (taskq_ent_t));
472a34ca 173 tq->tq_nalloc--;
bcd68186 174}
175
82387586
BB
176/*
177 * NOTE: Must be called with tq->tq_lock held, either destroys the
046a70c9 178 * taskq_ent_t if too many exist or moves it to the free list for later use.
bcd68186 179 */
f1ca4da6 180static void
046a70c9 181task_done(taskq_t *tq, taskq_ent_t *t)
f1ca4da6 182{
bcd68186 183 ASSERT(tq);
184 ASSERT(t);
185 ASSERT(spin_is_locked(&tq->tq_lock));
186
d9acd930
BB
187 /* Wake tasks blocked in taskq_wait_id() */
188 wake_up_all(&t->tqent_waitq);
189
046a70c9 190 list_del_init(&t->tqent_list);
f1ca4da6 191
472a34ca 192 if (tq->tq_nalloc <= tq->tq_minalloc) {
046a70c9
PS
193 t->tqent_id = 0;
194 t->tqent_func = NULL;
195 t->tqent_arg = NULL;
44217f7a 196 t->tqent_flags = 0;
8f2503e0 197
472a34ca 198 list_add_tail(&t->tqent_list, &tq->tq_free_list);
bcd68186 199 } else {
200 task_free(tq, t);
201 }
f1ca4da6 202}
203
82387586 204/*
d9acd930
BB
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.
bcd68186 207 */
d9acd930
BB
208static void
209task_expire(unsigned long data)
bcd68186 210{
d9acd930
BB
211 taskq_ent_t *w, *t = (taskq_ent_t *)data;
212 taskq_t *tq = t->tqent_taskq;
213 struct list_head *l;
066b89e6 214 unsigned long flags;
7257ec41 215
066b89e6 216 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
d9acd930
BB
217
218 if (t->tqent_flags & TQENT_FLAG_CANCEL) {
219 ASSERT(list_empty(&t->tqent_list));
066b89e6 220 spin_unlock_irqrestore(&tq->tq_lock, flags);
d9acd930
BB
221 return;
222 }
223
8f3b403a 224 t->tqent_birth = jiffies;
d9acd930
BB
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
066b89e6 240 spin_unlock_irqrestore(&tq->tq_lock, flags);
7257ec41 241
d9acd930
BB
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 */
251static taskqid_t
252taskq_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;
d9acd930
BB
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
8d9a23e8 283 return (lowest_id);
d9acd930
BB
284}
285
286/*
287 * Insert a task into a list keeping the list sorted by increasing taskqid.
288 */
289static void
290taskq_insert_in_order(taskq_t *tq, taskq_thread_t *tqt)
291{
292 taskq_thread_t *w;
293 struct list_head *l;
294
d9acd930
BB
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);
d9acd930
BB
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 */
314static taskq_ent_t *
315taskq_find_list(taskq_t *tq, struct list_head *lh, taskqid_t id)
316{
317 struct list_head *l;
318 taskq_ent_t *t;
d9acd930
BB
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)
8d9a23e8 326 return (t);
d9acd930
BB
327
328 if (t->tqent_id > id)
329 break;
330 }
331
8d9a23e8 332 return (NULL);
bcd68186 333}
334
d9acd930
BB
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 */
341static taskq_ent_t *
342taskq_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;
d9acd930
BB
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)
8d9a23e8 353 return (t);
d9acd930
BB
354
355 t = taskq_find_list(tq, &tq->tq_prio_list, id);
356 if (t)
8d9a23e8 357 return (t);
d9acd930
BB
358
359 t = taskq_find_list(tq, &tq->tq_pend_list, id);
360 if (t)
8d9a23e8 361 return (t);
d9acd930
BB
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;
8d9a23e8 368 return (t);
d9acd930
BB
369 }
370 }
371
8d9a23e8 372 return (NULL);
d9acd930
BB
373}
374
a876b030
CD
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 */
99c452bb
BB
402static int
403taskq_wait_id_check(taskq_t *tq, taskqid_t id)
f1ca4da6 404{
d9acd930 405 int active = 0;
99c452bb 406 int rc;
066b89e6 407 unsigned long flags;
bcd68186 408
066b89e6 409 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
99c452bb 410 rc = (taskq_find(tq, id, &active) == NULL);
066b89e6 411 spin_unlock_irqrestore(&tq->tq_lock, flags);
d9acd930 412
99c452bb
BB
413 return (rc);
414}
bcd68186 415
99c452bb
BB
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 */
420void
421taskq_wait_id(taskq_t *tq, taskqid_t id)
422{
423 wait_event(tq->tq_wait_waitq, taskq_wait_id_check(tq, id));
bcd68186 424}
aed8671c 425EXPORT_SYMBOL(taskq_wait_id);
bcd68186 426
d9acd930 427static int
a876b030 428taskq_wait_outstanding_check(taskq_t *tq, taskqid_t id)
d9acd930
BB
429{
430 int rc;
066b89e6 431 unsigned long flags;
d9acd930 432
066b89e6 433 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
d9acd930 434 rc = (id < tq->tq_lowest_id);
066b89e6 435 spin_unlock_irqrestore(&tq->tq_lock, flags);
d9acd930 436
8d9a23e8 437 return (rc);
d9acd930
BB
438}
439
a876b030
CD
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 */
d9acd930 447void
a876b030 448taskq_wait_outstanding(taskq_t *tq, taskqid_t id)
d9acd930 449{
a876b030
CD
450 wait_event(tq->tq_wait_waitq,
451 taskq_wait_outstanding_check(tq, id ? id : tq->tq_next_id - 1));
d9acd930 452}
a876b030 453EXPORT_SYMBOL(taskq_wait_outstanding);
d9acd930 454
a876b030
CD
455static int
456taskq_wait_check(taskq_t *tq)
bcd68186 457{
a876b030 458 int rc;
066b89e6 459 unsigned long flags;
bcd68186 460
066b89e6 461 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
a876b030 462 rc = (tq->tq_lowest_id == tq->tq_next_id);
066b89e6 463 spin_unlock_irqrestore(&tq->tq_lock, flags);
bcd68186 464
a876b030
CD
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 */
473void
474taskq_wait(taskq_t *tq)
475{
476 wait_event(tq->tq_wait_waitq, taskq_wait_check(tq));
bcd68186 477}
aed8671c 478EXPORT_SYMBOL(taskq_wait);
bcd68186 479
c5a8b1e1 480int
16522ac2 481taskq_member(taskq_t *tq, kthread_t *t)
c5a8b1e1 482{
16522ac2 483 return (tq == (taskq_t *)tsd_get_by_thread(taskq_tsd, t));
c5a8b1e1
BB
484}
485EXPORT_SYMBOL(taskq_member);
486
d9acd930
BB
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 */
493int
494taskq_cancel_id(taskq_t *tq, taskqid_t id)
495{
496 taskq_ent_t *t;
497 int active = 0;
498 int rc = ENOENT;
066b89e6 499 unsigned long flags;
d9acd930
BB
500
501 ASSERT(tq);
502
066b89e6 503 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
d9acd930
BB
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)) {
066b89e6 523 spin_unlock_irqrestore(&tq->tq_lock, flags);
d9acd930 524 del_timer_sync(&t->tqent_timer);
066b89e6
CC
525 spin_lock_irqsave_nested(&tq->tq_lock, flags,
526 tq->tq_lock_class);
d9acd930
BB
527 }
528
529 if (!(t->tqent_flags & TQENT_FLAG_PREALLOC))
530 task_done(tq, t);
531
532 rc = 0;
533 }
066b89e6 534 spin_unlock_irqrestore(&tq->tq_lock, flags);
d9acd930
BB
535
536 if (active) {
537 taskq_wait_id(tq, id);
538 rc = EBUSY;
539 }
540
8d9a23e8 541 return (rc);
d9acd930
BB
542}
543EXPORT_SYMBOL(taskq_cancel_id);
544
f5f2b87d 545static int taskq_thread_spawn(taskq_t *tq);
a64e5575 546
bcd68186 547taskqid_t
aed8671c 548taskq_dispatch(taskq_t *tq, task_func_t func, void *arg, uint_t flags)
bcd68186 549{
472a34ca 550 taskq_ent_t *t;
bcd68186 551 taskqid_t rc = 0;
066b89e6 552 unsigned long irqflags;
f1ca4da6 553
472a34ca
BB
554 ASSERT(tq);
555 ASSERT(func);
d05ec4b4 556
066b89e6 557 spin_lock_irqsave_nested(&tq->tq_lock, irqflags, tq->tq_lock_class);
f1ca4da6 558
bcd68186 559 /* Taskq being destroyed and all tasks drained */
f7a973d9 560 if (!(tq->tq_flags & TASKQ_ACTIVE))
8d9a23e8 561 goto out;
f1ca4da6 562
bcd68186 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))
8d9a23e8 566 goto out;
bcd68186 567
066b89e6 568 if ((t = task_alloc(tq, flags, &irqflags)) == NULL)
8d9a23e8 569 goto out;
f1ca4da6 570
046a70c9 571 spin_lock(&t->tqent_lock);
f0d8bb26
NB
572
573 /* Queue to the priority list instead of the pending list */
574 if (flags & TQ_FRONT)
046a70c9 575 list_add_tail(&t->tqent_list, &tq->tq_prio_list);
f0d8bb26 576 else
046a70c9 577 list_add_tail(&t->tqent_list, &tq->tq_pend_list);
f0d8bb26 578
046a70c9 579 t->tqent_id = rc = tq->tq_next_id;
bcd68186 580 tq->tq_next_id++;
472a34ca
BB
581 t->tqent_func = func;
582 t->tqent_arg = arg;
d9acd930
BB
583 t->tqent_taskq = tq;
584 t->tqent_timer.data = 0;
585 t->tqent_timer.function = NULL;
586 t->tqent_timer.expires = 0;
8f3b403a 587 t->tqent_birth = jiffies;
44217f7a
PS
588
589 ASSERT(!(t->tqent_flags & TQENT_FLAG_PREALLOC));
590
046a70c9 591 spin_unlock(&t->tqent_lock);
0bb43ca2
NB
592
593 wake_up(&tq->tq_work_waitq);
bcd68186 594out:
a64e5575 595 /* Spawn additional taskq threads if required. */
f5f2b87d 596 if (tq->tq_nactive == tq->tq_nthreads)
597 (void) taskq_thread_spawn(tq);
a64e5575 598
066b89e6 599 spin_unlock_irqrestore(&tq->tq_lock, irqflags);
8d9a23e8 600 return (rc);
f1ca4da6 601}
aed8671c 602EXPORT_SYMBOL(taskq_dispatch);
44217f7a 603
d9acd930
BB
604taskqid_t
605taskq_dispatch_delay(taskq_t *tq, task_func_t func, void *arg,
606 uint_t flags, clock_t expire_time)
607{
d9acd930 608 taskqid_t rc = 0;
8d9a23e8 609 taskq_ent_t *t;
066b89e6 610 unsigned long irqflags;
d9acd930
BB
611
612 ASSERT(tq);
613 ASSERT(func);
614
066b89e6 615 spin_lock_irqsave_nested(&tq->tq_lock, irqflags, tq->tq_lock_class);
d9acd930
BB
616
617 /* Taskq being destroyed and all tasks drained */
f7a973d9 618 if (!(tq->tq_flags & TASKQ_ACTIVE))
8d9a23e8 619 goto out;
d9acd930 620
066b89e6 621 if ((t = task_alloc(tq, flags, &irqflags)) == NULL)
8d9a23e8 622 goto out;
d9acd930
BB
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);
642out:
a64e5575 643 /* Spawn additional taskq threads if required. */
f5f2b87d 644 if (tq->tq_nactive == tq->tq_nthreads)
645 (void) taskq_thread_spawn(tq);
066b89e6 646 spin_unlock_irqrestore(&tq->tq_lock, irqflags);
8d9a23e8 647 return (rc);
d9acd930
BB
648}
649EXPORT_SYMBOL(taskq_dispatch_delay);
650
44217f7a 651void
aed8671c 652taskq_dispatch_ent(taskq_t *tq, task_func_t func, void *arg, uint_t flags,
2c4332cf 653 taskq_ent_t *t)
44217f7a 654{
066b89e6 655 unsigned long irqflags;
44217f7a
PS
656 ASSERT(tq);
657 ASSERT(func);
44217f7a 658
066b89e6 659 spin_lock_irqsave_nested(&tq->tq_lock, irqflags,
326172d8 660 tq->tq_lock_class);
44217f7a
PS
661
662 /* Taskq being destroyed and all tasks drained */
f7a973d9 663 if (!(tq->tq_flags & TASKQ_ACTIVE)) {
44217f7a
PS
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;
d9acd930 686 t->tqent_taskq = tq;
8f3b403a 687 t->tqent_birth = jiffies;
44217f7a
PS
688
689 spin_unlock(&t->tqent_lock);
690
691 wake_up(&tq->tq_work_waitq);
692out:
a64e5575 693 /* Spawn additional taskq threads if required. */
f5f2b87d 694 if (tq->tq_nactive == tq->tq_nthreads)
695 (void) taskq_thread_spawn(tq);
066b89e6 696 spin_unlock_irqrestore(&tq->tq_lock, irqflags);
44217f7a 697}
aed8671c 698EXPORT_SYMBOL(taskq_dispatch_ent);
44217f7a
PS
699
700int
aed8671c 701taskq_empty_ent(taskq_ent_t *t)
44217f7a 702{
2c4332cf 703 return (list_empty(&t->tqent_list));
44217f7a 704}
aed8671c 705EXPORT_SYMBOL(taskq_empty_ent);
44217f7a
PS
706
707void
aed8671c 708taskq_init_ent(taskq_ent_t *t)
44217f7a
PS
709{
710 spin_lock_init(&t->tqent_lock);
d9acd930
BB
711 init_waitqueue_head(&t->tqent_waitq);
712 init_timer(&t->tqent_timer);
44217f7a
PS
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;
d9acd930 718 t->tqent_taskq = NULL;
44217f7a 719}
aed8671c 720EXPORT_SYMBOL(taskq_init_ent);
44217f7a 721
f7a973d9
BB
722/*
723 * Return the next pending task, preference is given to tasks on the
724 * priority list which were dispatched with TQ_FRONT.
725 */
726static taskq_ent_t *
727taskq_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 */
746static void
747taskq_thread_spawn_task(void *arg)
748{
749 taskq_t *tq = (taskq_t *)arg;
066b89e6 750 unsigned long flags;
f7a973d9
BB
751
752 (void) taskq_thread_create(tq);
753
066b89e6 754 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
f7a973d9 755 tq->tq_nspawn--;
066b89e6 756 spin_unlock_irqrestore(&tq->tq_lock, flags);
f7a973d9
BB
757}
758
759/*
326172d8 760 * Spawn addition threads for dynamic taskqs (TASKQ_DYNAMIC) the current
f7a973d9
BB
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 */
766static int
f5f2b87d 767taskq_thread_spawn(taskq_t *tq)
f7a973d9
BB
768{
769 int spawning = 0;
770
771 if (!(tq->tq_flags & TASKQ_DYNAMIC))
772 return (0);
773
f5f2b87d 774 if ((tq->tq_nthreads + tq->tq_nspawn < tq->tq_maxthreads) &&
f7a973d9
BB
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 */
793static int
794taskq_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 */
2c4332cf 810 (spl_taskq_thread_dynamic)); /* Dynamic taskqs are allowed */
f7a973d9
BB
811}
812
bcd68186 813static int
814taskq_thread(void *args)
815{
472a34ca
BB
816 DECLARE_WAITQUEUE(wait, current);
817 sigset_t blocked;
2c02b71b 818 taskq_thread_t *tqt = args;
472a34ca
BB
819 taskq_t *tq;
820 taskq_ent_t *t;
f7a973d9 821 int seq_tasks = 0;
066b89e6 822 unsigned long flags;
bcd68186 823
472a34ca 824 ASSERT(tqt);
326172d8 825 ASSERT(tqt->tqt_tq);
2c02b71b 826 tq = tqt->tqt_tq;
472a34ca 827 current->flags |= PF_NOFREEZE;
bcd68186 828
b4ad50ac 829 (void) spl_fstrans_mark();
d4bf6d84 830
472a34ca
BB
831 sigfillset(&blocked);
832 sigprocmask(SIG_BLOCK, &blocked, NULL);
833 flush_signals(current);
bcd68186 834
16522ac2 835 tsd_set(taskq_tsd, tq);
066b89e6 836 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
f7a973d9
BB
837
838 /* Immediately exit if more threads than allowed were created. */
839 if (tq->tq_nthreads >= tq->tq_maxthreads)
840 goto error;
841
472a34ca 842 tq->tq_nthreads++;
f7a973d9 843 list_add_tail(&tqt->tqt_thread_list, &tq->tq_thread_list);
472a34ca
BB
844 wake_up(&tq->tq_wait_waitq);
845 set_current_state(TASK_INTERRUPTIBLE);
bcd68186 846
472a34ca 847 while (!kthread_should_stop()) {
bcd68186 848
f0d8bb26
NB
849 if (list_empty(&tq->tq_pend_list) &&
850 list_empty(&tq->tq_prio_list)) {
f7a973d9
BB
851
852 if (taskq_thread_should_stop(tq, tqt)) {
853 wake_up_all(&tq->tq_wait_waitq);
854 break;
855 }
856
3c6ed541 857 add_wait_queue_exclusive(&tq->tq_work_waitq, &wait);
066b89e6 858 spin_unlock_irqrestore(&tq->tq_lock, flags);
f7a973d9 859
bcd68186 860 schedule();
f7a973d9
BB
861 seq_tasks = 0;
862
066b89e6
CC
863 spin_lock_irqsave_nested(&tq->tq_lock, flags,
864 tq->tq_lock_class);
3c6ed541 865 remove_wait_queue(&tq->tq_work_waitq, &wait);
bcd68186 866 } else {
867 __set_current_state(TASK_RUNNING);
868 }
869
f7a973d9 870 if ((t = taskq_next_ent(tq)) != NULL) {
472a34ca 871 list_del_init(&t->tqent_list);
8f2503e0 872
2c4332cf
BB
873 /*
874 * In order to support recursively dispatching a
44217f7a 875 * preallocated taskq_ent_t, tqent_id must be
2c4332cf
BB
876 * stored prior to executing tqent_func.
877 */
e7e5f78e 878 tqt->tqt_id = t->tqent_id;
d9acd930 879 tqt->tqt_task = t;
8f2503e0 880
2c4332cf
BB
881 /*
882 * We must store a copy of the flags prior to
8f2503e0
PS
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,
2c4332cf
BB
886 * tqent_flags _may_ change within the call.
887 */
8f2503e0
PS
888 tqt->tqt_flags = t->tqent_flags;
889
2c02b71b 890 taskq_insert_in_order(tq, tqt);
472a34ca 891 tq->tq_nactive++;
066b89e6 892 spin_unlock_irqrestore(&tq->tq_lock, flags);
bcd68186 893
894 /* Perform the requested task */
472a34ca 895 t->tqent_func(t->tqent_arg);
bcd68186 896
066b89e6
CC
897 spin_lock_irqsave_nested(&tq->tq_lock, flags,
898 tq->tq_lock_class);
472a34ca 899 tq->tq_nactive--;
2c02b71b 900 list_del_init(&tqt->tqt_active_list);
d9acd930 901 tqt->tqt_task = NULL;
8f2503e0
PS
902
903 /* For prealloc'd tasks, we don't free anything. */
f7a973d9 904 if (!(tqt->tqt_flags & TQENT_FLAG_PREALLOC))
8f2503e0 905 task_done(tq, t);
bcd68186 906
2c4332cf
BB
907 /*
908 * When the current lowest outstanding taskqid is
909 * done calculate the new lowest outstanding id
910 */
e7e5f78e 911 if (tq->tq_lowest_id == tqt->tqt_id) {
bcd68186 912 tq->tq_lowest_id = taskq_lowest_id(tq);
e7e5f78e 913 ASSERT3S(tq->tq_lowest_id, >, tqt->tqt_id);
bcd68186 914 }
915
f7a973d9 916 /* Spawn additional taskq threads if required. */
f5f2b87d 917 if ((++seq_tasks) > spl_taskq_thread_sequential &&
918 taskq_thread_spawn(tq))
f7a973d9
BB
919 seq_tasks = 0;
920
e7e5f78e 921 tqt->tqt_id = 0;
8f2503e0 922 tqt->tqt_flags = 0;
472a34ca 923 wake_up_all(&tq->tq_wait_waitq);
f7a973d9
BB
924 } else {
925 if (taskq_thread_should_stop(tq, tqt))
926 break;
bcd68186 927 }
928
929 set_current_state(TASK_INTERRUPTIBLE);
930
472a34ca 931 }
bcd68186 932
933 __set_current_state(TASK_RUNNING);
472a34ca 934 tq->tq_nthreads--;
2c02b71b 935 list_del_init(&tqt->tqt_thread_list);
f7a973d9
BB
936error:
937 kmem_free(tqt, sizeof (taskq_thread_t));
066b89e6 938 spin_unlock_irqrestore(&tq->tq_lock, flags);
bcd68186 939
16522ac2
CC
940 tsd_set(taskq_tsd, NULL);
941
8d9a23e8 942 return (0);
bcd68186 943}
944
f7a973d9
BB
945static taskq_thread_t *
946taskq_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
62aa81a5
BB
969 if (spl_taskq_thread_priority)
970 set_user_nice(tqt->tqt_thread, PRIO_TO_NICE(tq->tq_pri));
971
f7a973d9
BB
972 wake_up_process(tqt->tqt_thread);
973
974 return (tqt);
975}
976
f1ca4da6 977taskq_t *
aed8671c 978taskq_create(const char *name, int nthreads, pri_t pri,
472a34ca 979 int minalloc, int maxalloc, uint_t flags)
f1ca4da6 980{
472a34ca 981 taskq_t *tq;
2c02b71b 982 taskq_thread_t *tqt;
f7a973d9 983 int count = 0, rc = 0, i;
066b89e6 984 unsigned long irqflags;
bcd68186 985
472a34ca 986 ASSERT(name != NULL);
472a34ca
BB
987 ASSERT(minalloc >= 0);
988 ASSERT(maxalloc <= INT_MAX);
f7a973d9 989 ASSERT(!(flags & (TASKQ_CPR_SAFE))); /* Unsupported */
bcd68186 990
915404bd
BB
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
f7a973d9 1000 tq = kmem_alloc(sizeof (*tq), KM_PUSHPAGE);
472a34ca 1001 if (tq == NULL)
8d9a23e8 1002 return (NULL);
bcd68186 1003
472a34ca 1004 spin_lock_init(&tq->tq_lock);
472a34ca
BB
1005 INIT_LIST_HEAD(&tq->tq_thread_list);
1006 INIT_LIST_HEAD(&tq->tq_active_list);
2c4332cf
BB
1007 tq->tq_name = strdup(name);
1008 tq->tq_nactive = 0;
1009 tq->tq_nthreads = 0;
1010 tq->tq_nspawn = 0;
f7a973d9 1011 tq->tq_maxthreads = nthreads;
2c4332cf
BB
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;
472a34ca
BB
1019 INIT_LIST_HEAD(&tq->tq_free_list);
1020 INIT_LIST_HEAD(&tq->tq_pend_list);
1021 INIT_LIST_HEAD(&tq->tq_prio_list);
d9acd930 1022 INIT_LIST_HEAD(&tq->tq_delay_list);
472a34ca
BB
1023 init_waitqueue_head(&tq->tq_work_waitq);
1024 init_waitqueue_head(&tq->tq_wait_waitq);
326172d8 1025 tq->tq_lock_class = TQ_LOCK_GENERAL;
200366f2 1026 INIT_LIST_HEAD(&tq->tq_taskqs);
bcd68186 1027
f7a973d9 1028 if (flags & TASKQ_PREPOPULATE) {
066b89e6 1029 spin_lock_irqsave_nested(&tq->tq_lock, irqflags,
326172d8 1030 tq->tq_lock_class);
f7a973d9 1031
472a34ca 1032 for (i = 0; i < minalloc; i++)
066b89e6
CC
1033 task_done(tq, task_alloc(tq, TQ_PUSHPAGE | TQ_NEW,
1034 &irqflags));
6e605b6e 1035
066b89e6 1036 spin_unlock_irqrestore(&tq->tq_lock, irqflags);
f7a973d9
BB
1037 }
1038
1039 if ((flags & TASKQ_DYNAMIC) && spl_taskq_thread_dynamic)
1040 nthreads = 1;
6e605b6e 1041
2c02b71b 1042 for (i = 0; i < nthreads; i++) {
f7a973d9
BB
1043 tqt = taskq_thread_create(tq);
1044 if (tqt == NULL)
2c02b71b 1045 rc = 1;
f7a973d9
BB
1046 else
1047 count++;
2c02b71b 1048 }
bcd68186 1049
472a34ca 1050 /* Wait for all threads to be started before potential destroy */
f7a973d9 1051 wait_event(tq->tq_wait_waitq, tq->tq_nthreads == count);
bcd68186 1052
472a34ca 1053 if (rc) {
aed8671c 1054 taskq_destroy(tq);
472a34ca 1055 tq = NULL;
200366f2
TC
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);
472a34ca 1061 }
bcd68186 1062
8d9a23e8 1063 return (tq);
f1ca4da6 1064}
aed8671c 1065EXPORT_SYMBOL(taskq_create);
b123971f 1066
1067void
aed8671c 1068taskq_destroy(taskq_t *tq)
b123971f 1069{
2c02b71b
PS
1070 struct task_struct *thread;
1071 taskq_thread_t *tqt;
046a70c9 1072 taskq_ent_t *t;
066b89e6 1073 unsigned long flags;
b123971f 1074
bcd68186 1075 ASSERT(tq);
066b89e6 1076 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
f7a973d9 1077 tq->tq_flags &= ~TASKQ_ACTIVE;
066b89e6 1078 spin_unlock_irqrestore(&tq->tq_lock, flags);
bcd68186 1079
f7a973d9
BB
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
aed8671c 1087 taskq_wait(tq);
bcd68186 1088
200366f2
TC
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
066b89e6 1094 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
bcd68186 1095
2c02b71b
PS
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,
f7a973d9 1104 taskq_thread_t, tqt_thread_list);
2c02b71b 1105 thread = tqt->tqt_thread;
066b89e6 1106 spin_unlock_irqrestore(&tq->tq_lock, flags);
2c02b71b
PS
1107
1108 kthread_stop(thread);
1109
066b89e6 1110 spin_lock_irqsave_nested(&tq->tq_lock, flags,
326172d8 1111 tq->tq_lock_class);
2c02b71b
PS
1112 }
1113
472a34ca 1114 while (!list_empty(&tq->tq_free_list)) {
046a70c9 1115 t = list_entry(tq->tq_free_list.next, taskq_ent_t, tqent_list);
44217f7a
PS
1116
1117 ASSERT(!(t->tqent_flags & TQENT_FLAG_PREALLOC));
1118
472a34ca
BB
1119 list_del_init(&t->tqent_list);
1120 task_free(tq, t);
1121 }
bcd68186 1122
f7a973d9
BB
1123 ASSERT0(tq->tq_nthreads);
1124 ASSERT0(tq->tq_nalloc);
1125 ASSERT0(tq->tq_nspawn);
472a34ca
BB
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));
d9acd930 1131 ASSERT(list_empty(&tq->tq_delay_list));
bcd68186 1132
066b89e6 1133 spin_unlock_irqrestore(&tq->tq_lock, flags);
2c02b71b 1134
f7a973d9
BB
1135 strfree(tq->tq_name);
1136 kmem_free(tq, sizeof (taskq_t));
b123971f 1137}
aed8671c 1138EXPORT_SYMBOL(taskq_destroy);
e9cb2b4f 1139
8f3b403a
CC
1140
1141static 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 */
1149static int
1150#ifdef module_param_cb
1151param_set_taskq_kick(const char *val, const struct kernel_param *kp)
1152#else
1153param_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
1185static const struct kernel_param_ops param_ops_taskq_kick = {
1186 .set = param_set_taskq_kick,
1187 .get = param_get_uint,
1188};
1189module_param_cb(spl_taskq_kick, &param_ops_taskq_kick, &spl_taskq_kick, 0644);
1190#else
1191module_param_call(spl_taskq_kick, param_set_taskq_kick, param_get_uint,
1192 &spl_taskq_kick, 0644);
1193#endif
1194MODULE_PARM_DESC(spl_taskq_kick,
1195 "Write nonzero to kick stuck taskqs to spawn more threads");
1196
e9cb2b4f
BB
1197int
1198spl_taskq_init(void)
1199{
16522ac2
CC
1200 tsd_create(&taskq_tsd, NULL);
1201
3c82160f 1202 system_taskq = taskq_create("spl_system_taskq", MAX(boot_ncpus, 64),
9dc5ffbe 1203 maxclsyspri, boot_ncpus, INT_MAX, TASKQ_PREPOPULATE|TASKQ_DYNAMIC);
e9cb2b4f 1204 if (system_taskq == NULL)
8d9a23e8 1205 return (1);
e9cb2b4f 1206
f7a973d9 1207 dynamic_taskq = taskq_create("spl_dynamic_taskq", 1,
9dc5ffbe 1208 maxclsyspri, boot_ncpus, INT_MAX, TASKQ_PREPOPULATE);
f7a973d9
BB
1209 if (dynamic_taskq == NULL) {
1210 taskq_destroy(system_taskq);
1211 return (1);
1212 }
1213
2c4332cf
BB
1214 /*
1215 * This is used to annotate tq_lock, so
1216 * taskq_dispatch -> taskq_thread_spawn -> taskq_dispatch
326172d8
OF
1217 * does not trigger a lockdep warning re: possible recursive locking
1218 */
1219 dynamic_taskq->tq_lock_class = TQ_LOCK_DYNAMIC;
1220
8d9a23e8 1221 return (0);
e9cb2b4f
BB
1222}
1223
1224void
1225spl_taskq_fini(void)
1226{
f7a973d9
BB
1227 taskq_destroy(dynamic_taskq);
1228 dynamic_taskq = NULL;
1229
e9cb2b4f 1230 taskq_destroy(system_taskq);
f7a973d9 1231 system_taskq = NULL;
16522ac2
CC
1232
1233 tsd_destroy(&taskq_tsd);
e9cb2b4f 1234}