]> git.proxmox.com Git - mirror_spl.git/blame - module/spl/spl-taskq.c
Fix taskq_wait_outstanding re-evaluate tq_next_id
[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{
b3a22a0a
CC
450 id = id ? id : tq->tq_next_id - 1;
451 wait_event(tq->tq_wait_waitq, taskq_wait_outstanding_check(tq, id));
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);
7bb5d92d
TC
565 if ((flags & TQ_NOQUEUE) && (tq->tq_nactive == tq->tq_nthreads)) {
566 /* Dynamic taskq may be able to spawn another thread */
567 if (!(tq->tq_flags & TASKQ_DYNAMIC) || taskq_thread_spawn(tq) == 0)
568 goto out;
569 }
bcd68186 570
066b89e6 571 if ((t = task_alloc(tq, flags, &irqflags)) == NULL)
8d9a23e8 572 goto out;
f1ca4da6 573
046a70c9 574 spin_lock(&t->tqent_lock);
f0d8bb26 575
7bb5d92d
TC
576 /* Queue to the front of the list to enforce TQ_NOQUEUE semantics */
577 if (flags & TQ_NOQUEUE)
578 list_add(&t->tqent_list, &tq->tq_prio_list);
f0d8bb26 579 /* Queue to the priority list instead of the pending list */
7bb5d92d 580 else if (flags & TQ_FRONT)
046a70c9 581 list_add_tail(&t->tqent_list, &tq->tq_prio_list);
f0d8bb26 582 else
046a70c9 583 list_add_tail(&t->tqent_list, &tq->tq_pend_list);
f0d8bb26 584
046a70c9 585 t->tqent_id = rc = tq->tq_next_id;
bcd68186 586 tq->tq_next_id++;
472a34ca
BB
587 t->tqent_func = func;
588 t->tqent_arg = arg;
d9acd930
BB
589 t->tqent_taskq = tq;
590 t->tqent_timer.data = 0;
591 t->tqent_timer.function = NULL;
592 t->tqent_timer.expires = 0;
8f3b403a 593 t->tqent_birth = jiffies;
44217f7a
PS
594
595 ASSERT(!(t->tqent_flags & TQENT_FLAG_PREALLOC));
596
046a70c9 597 spin_unlock(&t->tqent_lock);
0bb43ca2
NB
598
599 wake_up(&tq->tq_work_waitq);
bcd68186 600out:
a64e5575 601 /* Spawn additional taskq threads if required. */
7bb5d92d 602 if (!(flags & TQ_NOQUEUE) && tq->tq_nactive == tq->tq_nthreads)
f5f2b87d 603 (void) taskq_thread_spawn(tq);
a64e5575 604
066b89e6 605 spin_unlock_irqrestore(&tq->tq_lock, irqflags);
8d9a23e8 606 return (rc);
f1ca4da6 607}
aed8671c 608EXPORT_SYMBOL(taskq_dispatch);
44217f7a 609
d9acd930
BB
610taskqid_t
611taskq_dispatch_delay(taskq_t *tq, task_func_t func, void *arg,
612 uint_t flags, clock_t expire_time)
613{
d9acd930 614 taskqid_t rc = 0;
8d9a23e8 615 taskq_ent_t *t;
066b89e6 616 unsigned long irqflags;
d9acd930
BB
617
618 ASSERT(tq);
619 ASSERT(func);
620
066b89e6 621 spin_lock_irqsave_nested(&tq->tq_lock, irqflags, tq->tq_lock_class);
d9acd930
BB
622
623 /* Taskq being destroyed and all tasks drained */
f7a973d9 624 if (!(tq->tq_flags & TASKQ_ACTIVE))
8d9a23e8 625 goto out;
d9acd930 626
066b89e6 627 if ((t = task_alloc(tq, flags, &irqflags)) == NULL)
8d9a23e8 628 goto out;
d9acd930
BB
629
630 spin_lock(&t->tqent_lock);
631
632 /* Queue to the delay list for subsequent execution */
633 list_add_tail(&t->tqent_list, &tq->tq_delay_list);
634
635 t->tqent_id = rc = tq->tq_next_id;
636 tq->tq_next_id++;
637 t->tqent_func = func;
638 t->tqent_arg = arg;
639 t->tqent_taskq = tq;
640 t->tqent_timer.data = (unsigned long)t;
641 t->tqent_timer.function = task_expire;
642 t->tqent_timer.expires = (unsigned long)expire_time;
643 add_timer(&t->tqent_timer);
644
645 ASSERT(!(t->tqent_flags & TQENT_FLAG_PREALLOC));
646
647 spin_unlock(&t->tqent_lock);
648out:
a64e5575 649 /* Spawn additional taskq threads if required. */
f5f2b87d 650 if (tq->tq_nactive == tq->tq_nthreads)
651 (void) taskq_thread_spawn(tq);
066b89e6 652 spin_unlock_irqrestore(&tq->tq_lock, irqflags);
8d9a23e8 653 return (rc);
d9acd930
BB
654}
655EXPORT_SYMBOL(taskq_dispatch_delay);
656
44217f7a 657void
aed8671c 658taskq_dispatch_ent(taskq_t *tq, task_func_t func, void *arg, uint_t flags,
2c4332cf 659 taskq_ent_t *t)
44217f7a 660{
066b89e6 661 unsigned long irqflags;
44217f7a
PS
662 ASSERT(tq);
663 ASSERT(func);
44217f7a 664
066b89e6 665 spin_lock_irqsave_nested(&tq->tq_lock, irqflags,
326172d8 666 tq->tq_lock_class);
44217f7a
PS
667
668 /* Taskq being destroyed and all tasks drained */
f7a973d9 669 if (!(tq->tq_flags & TASKQ_ACTIVE)) {
44217f7a
PS
670 t->tqent_id = 0;
671 goto out;
672 }
673
7bb5d92d
TC
674 if ((flags & TQ_NOQUEUE) && (tq->tq_nactive == tq->tq_nthreads)) {
675 /* Dynamic taskq may be able to spawn another thread */
676 if (!(tq->tq_flags & TASKQ_DYNAMIC) || taskq_thread_spawn(tq) == 0)
677 goto out2;
678 flags |= TQ_FRONT;
679 }
680
44217f7a
PS
681 spin_lock(&t->tqent_lock);
682
683 /*
684 * Mark it as a prealloc'd task. This is important
685 * to ensure that we don't free it later.
686 */
687 t->tqent_flags |= TQENT_FLAG_PREALLOC;
688
689 /* Queue to the priority list instead of the pending list */
690 if (flags & TQ_FRONT)
691 list_add_tail(&t->tqent_list, &tq->tq_prio_list);
692 else
693 list_add_tail(&t->tqent_list, &tq->tq_pend_list);
694
695 t->tqent_id = tq->tq_next_id;
696 tq->tq_next_id++;
697 t->tqent_func = func;
698 t->tqent_arg = arg;
d9acd930 699 t->tqent_taskq = tq;
8f3b403a 700 t->tqent_birth = jiffies;
44217f7a
PS
701
702 spin_unlock(&t->tqent_lock);
703
704 wake_up(&tq->tq_work_waitq);
705out:
a64e5575 706 /* Spawn additional taskq threads if required. */
f5f2b87d 707 if (tq->tq_nactive == tq->tq_nthreads)
708 (void) taskq_thread_spawn(tq);
7bb5d92d 709out2:
066b89e6 710 spin_unlock_irqrestore(&tq->tq_lock, irqflags);
44217f7a 711}
aed8671c 712EXPORT_SYMBOL(taskq_dispatch_ent);
44217f7a
PS
713
714int
aed8671c 715taskq_empty_ent(taskq_ent_t *t)
44217f7a 716{
2c4332cf 717 return (list_empty(&t->tqent_list));
44217f7a 718}
aed8671c 719EXPORT_SYMBOL(taskq_empty_ent);
44217f7a
PS
720
721void
aed8671c 722taskq_init_ent(taskq_ent_t *t)
44217f7a
PS
723{
724 spin_lock_init(&t->tqent_lock);
d9acd930
BB
725 init_waitqueue_head(&t->tqent_waitq);
726 init_timer(&t->tqent_timer);
44217f7a
PS
727 INIT_LIST_HEAD(&t->tqent_list);
728 t->tqent_id = 0;
729 t->tqent_func = NULL;
730 t->tqent_arg = NULL;
731 t->tqent_flags = 0;
d9acd930 732 t->tqent_taskq = NULL;
44217f7a 733}
aed8671c 734EXPORT_SYMBOL(taskq_init_ent);
44217f7a 735
f7a973d9
BB
736/*
737 * Return the next pending task, preference is given to tasks on the
738 * priority list which were dispatched with TQ_FRONT.
739 */
740static taskq_ent_t *
741taskq_next_ent(taskq_t *tq)
742{
743 struct list_head *list;
744
745 ASSERT(spin_is_locked(&tq->tq_lock));
746
747 if (!list_empty(&tq->tq_prio_list))
748 list = &tq->tq_prio_list;
749 else if (!list_empty(&tq->tq_pend_list))
750 list = &tq->tq_pend_list;
751 else
752 return (NULL);
753
754 return (list_entry(list->next, taskq_ent_t, tqent_list));
755}
756
757/*
758 * Spawns a new thread for the specified taskq.
759 */
760static void
761taskq_thread_spawn_task(void *arg)
762{
763 taskq_t *tq = (taskq_t *)arg;
066b89e6 764 unsigned long flags;
f7a973d9 765
5ce028b0
CC
766 if (taskq_thread_create(tq) == NULL) {
767 /* restore spawning count if failed */
768 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
769 tq->tq_nspawn--;
770 spin_unlock_irqrestore(&tq->tq_lock, flags);
771 }
f7a973d9
BB
772}
773
774/*
326172d8 775 * Spawn addition threads for dynamic taskqs (TASKQ_DYNAMIC) the current
f7a973d9
BB
776 * number of threads is insufficient to handle the pending tasks. These
777 * new threads must be created by the dedicated dynamic_taskq to avoid
778 * deadlocks between thread creation and memory reclaim. The system_taskq
779 * which is also a dynamic taskq cannot be safely used for this.
780 */
781static int
f5f2b87d 782taskq_thread_spawn(taskq_t *tq)
f7a973d9
BB
783{
784 int spawning = 0;
785
786 if (!(tq->tq_flags & TASKQ_DYNAMIC))
787 return (0);
788
f5f2b87d 789 if ((tq->tq_nthreads + tq->tq_nspawn < tq->tq_maxthreads) &&
f7a973d9
BB
790 (tq->tq_flags & TASKQ_ACTIVE)) {
791 spawning = (++tq->tq_nspawn);
792 taskq_dispatch(dynamic_taskq, taskq_thread_spawn_task,
793 tq, TQ_NOSLEEP);
794 }
795
796 return (spawning);
797}
798
799/*
800 * Threads in a dynamic taskq should only exit once it has been completely
801 * drained and no other threads are actively servicing tasks. This prevents
802 * threads from being created and destroyed more than is required.
803 *
804 * The first thread is the thread list is treated as the primary thread.
805 * There is nothing special about the primary thread but in order to avoid
806 * all the taskq pids from changing we opt to make it long running.
807 */
808static int
809taskq_thread_should_stop(taskq_t *tq, taskq_thread_t *tqt)
810{
811 ASSERT(spin_is_locked(&tq->tq_lock));
812
813 if (!(tq->tq_flags & TASKQ_DYNAMIC))
814 return (0);
815
816 if (list_first_entry(&(tq->tq_thread_list), taskq_thread_t,
817 tqt_thread_list) == tqt)
818 return (0);
819
820 return
821 ((tq->tq_nspawn == 0) && /* No threads are being spawned */
822 (tq->tq_nactive == 0) && /* No threads are handling tasks */
823 (tq->tq_nthreads > 1) && /* More than 1 thread is running */
824 (!taskq_next_ent(tq)) && /* There are no pending tasks */
2c4332cf 825 (spl_taskq_thread_dynamic)); /* Dynamic taskqs are allowed */
f7a973d9
BB
826}
827
bcd68186 828static int
829taskq_thread(void *args)
830{
472a34ca
BB
831 DECLARE_WAITQUEUE(wait, current);
832 sigset_t blocked;
2c02b71b 833 taskq_thread_t *tqt = args;
472a34ca
BB
834 taskq_t *tq;
835 taskq_ent_t *t;
f7a973d9 836 int seq_tasks = 0;
066b89e6 837 unsigned long flags;
bcd68186 838
472a34ca 839 ASSERT(tqt);
326172d8 840 ASSERT(tqt->tqt_tq);
2c02b71b 841 tq = tqt->tqt_tq;
472a34ca 842 current->flags |= PF_NOFREEZE;
bcd68186 843
b4ad50ac 844 (void) spl_fstrans_mark();
d4bf6d84 845
472a34ca
BB
846 sigfillset(&blocked);
847 sigprocmask(SIG_BLOCK, &blocked, NULL);
848 flush_signals(current);
bcd68186 849
16522ac2 850 tsd_set(taskq_tsd, tq);
066b89e6 851 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
5ce028b0
CC
852 /*
853 * If we are dynamically spawned, decrease spawning count. Note that
854 * we could be created during taskq_create, in which case we shouldn't
855 * do the decrement. But it's fine because taskq_create will reset
856 * tq_nspawn later.
857 */
858 if (tq->tq_flags & TASKQ_DYNAMIC)
859 tq->tq_nspawn--;
f7a973d9
BB
860
861 /* Immediately exit if more threads than allowed were created. */
862 if (tq->tq_nthreads >= tq->tq_maxthreads)
863 goto error;
864
472a34ca 865 tq->tq_nthreads++;
f7a973d9 866 list_add_tail(&tqt->tqt_thread_list, &tq->tq_thread_list);
472a34ca
BB
867 wake_up(&tq->tq_wait_waitq);
868 set_current_state(TASK_INTERRUPTIBLE);
bcd68186 869
472a34ca 870 while (!kthread_should_stop()) {
bcd68186 871
f0d8bb26
NB
872 if (list_empty(&tq->tq_pend_list) &&
873 list_empty(&tq->tq_prio_list)) {
f7a973d9
BB
874
875 if (taskq_thread_should_stop(tq, tqt)) {
876 wake_up_all(&tq->tq_wait_waitq);
877 break;
878 }
879
3c6ed541 880 add_wait_queue_exclusive(&tq->tq_work_waitq, &wait);
066b89e6 881 spin_unlock_irqrestore(&tq->tq_lock, flags);
f7a973d9 882
bcd68186 883 schedule();
f7a973d9
BB
884 seq_tasks = 0;
885
066b89e6
CC
886 spin_lock_irqsave_nested(&tq->tq_lock, flags,
887 tq->tq_lock_class);
3c6ed541 888 remove_wait_queue(&tq->tq_work_waitq, &wait);
bcd68186 889 } else {
890 __set_current_state(TASK_RUNNING);
891 }
892
f7a973d9 893 if ((t = taskq_next_ent(tq)) != NULL) {
472a34ca 894 list_del_init(&t->tqent_list);
8f2503e0 895
2c4332cf
BB
896 /*
897 * In order to support recursively dispatching a
44217f7a 898 * preallocated taskq_ent_t, tqent_id must be
2c4332cf
BB
899 * stored prior to executing tqent_func.
900 */
e7e5f78e 901 tqt->tqt_id = t->tqent_id;
d9acd930 902 tqt->tqt_task = t;
8f2503e0 903
2c4332cf
BB
904 /*
905 * We must store a copy of the flags prior to
8f2503e0
PS
906 * servicing the task (servicing a prealloc'd task
907 * returns the ownership of the tqent back to
908 * the caller of taskq_dispatch). Thus,
2c4332cf
BB
909 * tqent_flags _may_ change within the call.
910 */
8f2503e0
PS
911 tqt->tqt_flags = t->tqent_flags;
912
2c02b71b 913 taskq_insert_in_order(tq, tqt);
472a34ca 914 tq->tq_nactive++;
066b89e6 915 spin_unlock_irqrestore(&tq->tq_lock, flags);
bcd68186 916
917 /* Perform the requested task */
472a34ca 918 t->tqent_func(t->tqent_arg);
bcd68186 919
066b89e6
CC
920 spin_lock_irqsave_nested(&tq->tq_lock, flags,
921 tq->tq_lock_class);
472a34ca 922 tq->tq_nactive--;
2c02b71b 923 list_del_init(&tqt->tqt_active_list);
d9acd930 924 tqt->tqt_task = NULL;
8f2503e0
PS
925
926 /* For prealloc'd tasks, we don't free anything. */
f7a973d9 927 if (!(tqt->tqt_flags & TQENT_FLAG_PREALLOC))
8f2503e0 928 task_done(tq, t);
bcd68186 929
2c4332cf
BB
930 /*
931 * When the current lowest outstanding taskqid is
932 * done calculate the new lowest outstanding id
933 */
e7e5f78e 934 if (tq->tq_lowest_id == tqt->tqt_id) {
bcd68186 935 tq->tq_lowest_id = taskq_lowest_id(tq);
e7e5f78e 936 ASSERT3S(tq->tq_lowest_id, >, tqt->tqt_id);
bcd68186 937 }
938
f7a973d9 939 /* Spawn additional taskq threads if required. */
f5f2b87d 940 if ((++seq_tasks) > spl_taskq_thread_sequential &&
941 taskq_thread_spawn(tq))
f7a973d9
BB
942 seq_tasks = 0;
943
e7e5f78e 944 tqt->tqt_id = 0;
8f2503e0 945 tqt->tqt_flags = 0;
472a34ca 946 wake_up_all(&tq->tq_wait_waitq);
f7a973d9
BB
947 } else {
948 if (taskq_thread_should_stop(tq, tqt))
949 break;
bcd68186 950 }
951
952 set_current_state(TASK_INTERRUPTIBLE);
953
472a34ca 954 }
bcd68186 955
956 __set_current_state(TASK_RUNNING);
472a34ca 957 tq->tq_nthreads--;
2c02b71b 958 list_del_init(&tqt->tqt_thread_list);
f7a973d9
BB
959error:
960 kmem_free(tqt, sizeof (taskq_thread_t));
066b89e6 961 spin_unlock_irqrestore(&tq->tq_lock, flags);
bcd68186 962
16522ac2
CC
963 tsd_set(taskq_tsd, NULL);
964
8d9a23e8 965 return (0);
bcd68186 966}
967
f7a973d9
BB
968static taskq_thread_t *
969taskq_thread_create(taskq_t *tq)
970{
971 static int last_used_cpu = 0;
972 taskq_thread_t *tqt;
973
974 tqt = kmem_alloc(sizeof (*tqt), KM_PUSHPAGE);
975 INIT_LIST_HEAD(&tqt->tqt_thread_list);
976 INIT_LIST_HEAD(&tqt->tqt_active_list);
977 tqt->tqt_tq = tq;
978 tqt->tqt_id = 0;
979
980 tqt->tqt_thread = spl_kthread_create(taskq_thread, tqt,
981 "%s", tq->tq_name);
982 if (tqt->tqt_thread == NULL) {
983 kmem_free(tqt, sizeof (taskq_thread_t));
984 return (NULL);
985 }
986
987 if (spl_taskq_thread_bind) {
988 last_used_cpu = (last_used_cpu + 1) % num_online_cpus();
989 kthread_bind(tqt->tqt_thread, last_used_cpu);
990 }
991
62aa81a5
BB
992 if (spl_taskq_thread_priority)
993 set_user_nice(tqt->tqt_thread, PRIO_TO_NICE(tq->tq_pri));
994
f7a973d9
BB
995 wake_up_process(tqt->tqt_thread);
996
997 return (tqt);
998}
999
f1ca4da6 1000taskq_t *
aed8671c 1001taskq_create(const char *name, int nthreads, pri_t pri,
472a34ca 1002 int minalloc, int maxalloc, uint_t flags)
f1ca4da6 1003{
472a34ca 1004 taskq_t *tq;
2c02b71b 1005 taskq_thread_t *tqt;
f7a973d9 1006 int count = 0, rc = 0, i;
066b89e6 1007 unsigned long irqflags;
bcd68186 1008
472a34ca 1009 ASSERT(name != NULL);
472a34ca
BB
1010 ASSERT(minalloc >= 0);
1011 ASSERT(maxalloc <= INT_MAX);
f7a973d9 1012 ASSERT(!(flags & (TASKQ_CPR_SAFE))); /* Unsupported */
bcd68186 1013
915404bd
BB
1014 /* Scale the number of threads using nthreads as a percentage */
1015 if (flags & TASKQ_THREADS_CPU_PCT) {
1016 ASSERT(nthreads <= 100);
1017 ASSERT(nthreads >= 0);
1018 nthreads = MIN(nthreads, 100);
1019 nthreads = MAX(nthreads, 0);
1020 nthreads = MAX((num_online_cpus() * nthreads) / 100, 1);
1021 }
1022
f7a973d9 1023 tq = kmem_alloc(sizeof (*tq), KM_PUSHPAGE);
472a34ca 1024 if (tq == NULL)
8d9a23e8 1025 return (NULL);
bcd68186 1026
472a34ca 1027 spin_lock_init(&tq->tq_lock);
472a34ca
BB
1028 INIT_LIST_HEAD(&tq->tq_thread_list);
1029 INIT_LIST_HEAD(&tq->tq_active_list);
2c4332cf
BB
1030 tq->tq_name = strdup(name);
1031 tq->tq_nactive = 0;
1032 tq->tq_nthreads = 0;
1033 tq->tq_nspawn = 0;
f7a973d9 1034 tq->tq_maxthreads = nthreads;
2c4332cf
BB
1035 tq->tq_pri = pri;
1036 tq->tq_minalloc = minalloc;
1037 tq->tq_maxalloc = maxalloc;
1038 tq->tq_nalloc = 0;
1039 tq->tq_flags = (flags | TASKQ_ACTIVE);
1040 tq->tq_next_id = 1;
1041 tq->tq_lowest_id = 1;
472a34ca
BB
1042 INIT_LIST_HEAD(&tq->tq_free_list);
1043 INIT_LIST_HEAD(&tq->tq_pend_list);
1044 INIT_LIST_HEAD(&tq->tq_prio_list);
d9acd930 1045 INIT_LIST_HEAD(&tq->tq_delay_list);
472a34ca
BB
1046 init_waitqueue_head(&tq->tq_work_waitq);
1047 init_waitqueue_head(&tq->tq_wait_waitq);
326172d8 1048 tq->tq_lock_class = TQ_LOCK_GENERAL;
200366f2 1049 INIT_LIST_HEAD(&tq->tq_taskqs);
bcd68186 1050
f7a973d9 1051 if (flags & TASKQ_PREPOPULATE) {
066b89e6 1052 spin_lock_irqsave_nested(&tq->tq_lock, irqflags,
326172d8 1053 tq->tq_lock_class);
f7a973d9 1054
472a34ca 1055 for (i = 0; i < minalloc; i++)
066b89e6
CC
1056 task_done(tq, task_alloc(tq, TQ_PUSHPAGE | TQ_NEW,
1057 &irqflags));
6e605b6e 1058
066b89e6 1059 spin_unlock_irqrestore(&tq->tq_lock, irqflags);
f7a973d9
BB
1060 }
1061
1062 if ((flags & TASKQ_DYNAMIC) && spl_taskq_thread_dynamic)
1063 nthreads = 1;
6e605b6e 1064
2c02b71b 1065 for (i = 0; i < nthreads; i++) {
f7a973d9
BB
1066 tqt = taskq_thread_create(tq);
1067 if (tqt == NULL)
2c02b71b 1068 rc = 1;
f7a973d9
BB
1069 else
1070 count++;
2c02b71b 1071 }
bcd68186 1072
472a34ca 1073 /* Wait for all threads to be started before potential destroy */
f7a973d9 1074 wait_event(tq->tq_wait_waitq, tq->tq_nthreads == count);
5ce028b0
CC
1075 /*
1076 * taskq_thread might have touched nspawn, but we don't want them to
1077 * because they're not dynamically spawned. So we reset it to 0
1078 */
1079 tq->tq_nspawn = 0;
bcd68186 1080
472a34ca 1081 if (rc) {
aed8671c 1082 taskq_destroy(tq);
472a34ca 1083 tq = NULL;
200366f2
TC
1084 } else {
1085 down_write(&tq_list_sem);
1086 tq->tq_instance = taskq_find_by_name(name) + 1;
1087 list_add_tail(&tq->tq_taskqs, &tq_list);
1088 up_write(&tq_list_sem);
472a34ca 1089 }
bcd68186 1090
8d9a23e8 1091 return (tq);
f1ca4da6 1092}
aed8671c 1093EXPORT_SYMBOL(taskq_create);
b123971f 1094
1095void
aed8671c 1096taskq_destroy(taskq_t *tq)
b123971f 1097{
2c02b71b
PS
1098 struct task_struct *thread;
1099 taskq_thread_t *tqt;
046a70c9 1100 taskq_ent_t *t;
066b89e6 1101 unsigned long flags;
b123971f 1102
bcd68186 1103 ASSERT(tq);
066b89e6 1104 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
f7a973d9 1105 tq->tq_flags &= ~TASKQ_ACTIVE;
066b89e6 1106 spin_unlock_irqrestore(&tq->tq_lock, flags);
bcd68186 1107
f7a973d9
BB
1108 /*
1109 * When TASKQ_ACTIVE is clear new tasks may not be added nor may
1110 * new worker threads be spawned for dynamic taskq.
1111 */
1112 if (dynamic_taskq != NULL)
1113 taskq_wait_outstanding(dynamic_taskq, 0);
1114
aed8671c 1115 taskq_wait(tq);
bcd68186 1116
200366f2
TC
1117 /* remove taskq from global list used by the kstats */
1118 down_write(&tq_list_sem);
1119 list_del(&tq->tq_taskqs);
1120 up_write(&tq_list_sem);
1121
066b89e6 1122 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
5ce028b0
CC
1123 /* wait for spawning threads to insert themselves to the list */
1124 while (tq->tq_nspawn) {
1125 spin_unlock_irqrestore(&tq->tq_lock, flags);
1126 schedule_timeout_interruptible(1);
1127 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
1128 }
bcd68186 1129
2c02b71b
PS
1130 /*
1131 * Signal each thread to exit and block until it does. Each thread
1132 * is responsible for removing itself from the list and freeing its
1133 * taskq_thread_t. This allows for idle threads to opt to remove
1134 * themselves from the taskq. They can be recreated as needed.
1135 */
1136 while (!list_empty(&tq->tq_thread_list)) {
1137 tqt = list_entry(tq->tq_thread_list.next,
f7a973d9 1138 taskq_thread_t, tqt_thread_list);
2c02b71b 1139 thread = tqt->tqt_thread;
066b89e6 1140 spin_unlock_irqrestore(&tq->tq_lock, flags);
2c02b71b
PS
1141
1142 kthread_stop(thread);
1143
066b89e6 1144 spin_lock_irqsave_nested(&tq->tq_lock, flags,
326172d8 1145 tq->tq_lock_class);
2c02b71b
PS
1146 }
1147
472a34ca 1148 while (!list_empty(&tq->tq_free_list)) {
046a70c9 1149 t = list_entry(tq->tq_free_list.next, taskq_ent_t, tqent_list);
44217f7a
PS
1150
1151 ASSERT(!(t->tqent_flags & TQENT_FLAG_PREALLOC));
1152
472a34ca
BB
1153 list_del_init(&t->tqent_list);
1154 task_free(tq, t);
1155 }
bcd68186 1156
f7a973d9
BB
1157 ASSERT0(tq->tq_nthreads);
1158 ASSERT0(tq->tq_nalloc);
1159 ASSERT0(tq->tq_nspawn);
472a34ca
BB
1160 ASSERT(list_empty(&tq->tq_thread_list));
1161 ASSERT(list_empty(&tq->tq_active_list));
1162 ASSERT(list_empty(&tq->tq_free_list));
1163 ASSERT(list_empty(&tq->tq_pend_list));
1164 ASSERT(list_empty(&tq->tq_prio_list));
d9acd930 1165 ASSERT(list_empty(&tq->tq_delay_list));
bcd68186 1166
066b89e6 1167 spin_unlock_irqrestore(&tq->tq_lock, flags);
2c02b71b 1168
f7a973d9
BB
1169 strfree(tq->tq_name);
1170 kmem_free(tq, sizeof (taskq_t));
b123971f 1171}
aed8671c 1172EXPORT_SYMBOL(taskq_destroy);
e9cb2b4f 1173
8f3b403a
CC
1174
1175static unsigned int spl_taskq_kick = 0;
1176
1177/*
1178 * 2.6.36 API Change
1179 * module_param_cb is introduced to take kernel_param_ops and
1180 * module_param_call is marked as obsolete. Also set and get operations
1181 * were changed to take a 'const struct kernel_param *'.
1182 */
1183static int
1184#ifdef module_param_cb
1185param_set_taskq_kick(const char *val, const struct kernel_param *kp)
1186#else
1187param_set_taskq_kick(const char *val, struct kernel_param *kp)
1188#endif
1189{
1190 int ret;
1191 taskq_t *tq;
1192 taskq_ent_t *t;
1193 unsigned long flags;
1194
1195 ret = param_set_uint(val, kp);
1196 if (ret < 0 || !spl_taskq_kick)
1197 return (ret);
1198 /* reset value */
1199 spl_taskq_kick = 0;
1200
1201 down_read(&tq_list_sem);
1202 list_for_each_entry(tq, &tq_list, tq_taskqs) {
1203 spin_lock_irqsave_nested(&tq->tq_lock, flags,
1204 tq->tq_lock_class);
1205 /* Check if the first pending is older than 5 seconds */
1206 t = taskq_next_ent(tq);
1207 if (t && time_after(jiffies, t->tqent_birth + 5*HZ)) {
1208 (void) taskq_thread_spawn(tq);
1209 printk(KERN_INFO "spl: Kicked taskq %s/%d\n",
1210 tq->tq_name, tq->tq_instance);
1211 }
1212 spin_unlock_irqrestore(&tq->tq_lock, flags);
1213 }
1214 up_read(&tq_list_sem);
1215 return (ret);
1216}
1217
1218#ifdef module_param_cb
1219static const struct kernel_param_ops param_ops_taskq_kick = {
1220 .set = param_set_taskq_kick,
1221 .get = param_get_uint,
1222};
1223module_param_cb(spl_taskq_kick, &param_ops_taskq_kick, &spl_taskq_kick, 0644);
1224#else
1225module_param_call(spl_taskq_kick, param_set_taskq_kick, param_get_uint,
1226 &spl_taskq_kick, 0644);
1227#endif
1228MODULE_PARM_DESC(spl_taskq_kick,
1229 "Write nonzero to kick stuck taskqs to spawn more threads");
1230
e9cb2b4f
BB
1231int
1232spl_taskq_init(void)
1233{
16522ac2
CC
1234 tsd_create(&taskq_tsd, NULL);
1235
3c82160f 1236 system_taskq = taskq_create("spl_system_taskq", MAX(boot_ncpus, 64),
9dc5ffbe 1237 maxclsyspri, boot_ncpus, INT_MAX, TASKQ_PREPOPULATE|TASKQ_DYNAMIC);
e9cb2b4f 1238 if (system_taskq == NULL)
8d9a23e8 1239 return (1);
e9cb2b4f 1240
f7a973d9 1241 dynamic_taskq = taskq_create("spl_dynamic_taskq", 1,
9dc5ffbe 1242 maxclsyspri, boot_ncpus, INT_MAX, TASKQ_PREPOPULATE);
f7a973d9
BB
1243 if (dynamic_taskq == NULL) {
1244 taskq_destroy(system_taskq);
1245 return (1);
1246 }
1247
2c4332cf
BB
1248 /*
1249 * This is used to annotate tq_lock, so
1250 * taskq_dispatch -> taskq_thread_spawn -> taskq_dispatch
326172d8
OF
1251 * does not trigger a lockdep warning re: possible recursive locking
1252 */
1253 dynamic_taskq->tq_lock_class = TQ_LOCK_DYNAMIC;
1254
8d9a23e8 1255 return (0);
e9cb2b4f
BB
1256}
1257
1258void
1259spl_taskq_fini(void)
1260{
f7a973d9
BB
1261 taskq_destroy(dynamic_taskq);
1262 dynamic_taskq = NULL;
1263
e9cb2b4f 1264 taskq_destroy(system_taskq);
f7a973d9 1265 system_taskq = NULL;
16522ac2
CC
1266
1267 tsd_destroy(&taskq_tsd);
e9cb2b4f 1268}