]> git.proxmox.com Git - mirror_spl.git/blame - module/spl/spl-taskq.c
Add Test: "Single task queue, recursive dispatch"
[mirror_spl.git] / module / spl / spl-taskq.c
CommitLineData
716154c5
BB
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>.
715f6251 6 * UCRL-CODE-235197
7 *
716154c5
BB
8 * This file is part of the SPL, Solaris Porting Layer.
9 * For details, see <http://github.com/behlendorf/spl/>.
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
BB
22 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
23 *****************************************************************************
24 * Solaris Porting Layer (SPL) Task Queue Implementation.
25\*****************************************************************************/
715f6251 26
f4b37741 27#include <sys/taskq.h>
3d061e9d 28#include <sys/kmem.h>
55abb092 29#include <spl-debug.h>
f1ca4da6 30
b17edc10
BB
31#ifdef SS_DEBUG_SUBSYS
32#undef SS_DEBUG_SUBSYS
937879f1 33#endif
34
b17edc10 35#define SS_DEBUG_SUBSYS SS_TASKQ
937879f1 36
e9cb2b4f
BB
37/* Global system-wide dynamic task queue available for all consumers */
38taskq_t *system_taskq;
39EXPORT_SYMBOL(system_taskq);
40
82387586
BB
41/*
42 * NOTE: Must be called with tq->tq_lock held, returns a list_t which
bcd68186 43 * is not attached to the free, work, or pending taskq lists.
f1ca4da6 44 */
046a70c9 45static taskq_ent_t *
bcd68186 46task_alloc(taskq_t *tq, uint_t flags)
47{
046a70c9 48 taskq_ent_t *t;
bcd68186 49 int count = 0;
b17edc10 50 SENTRY;
bcd68186 51
52 ASSERT(tq);
53 ASSERT(flags & (TQ_SLEEP | TQ_NOSLEEP)); /* One set */
54 ASSERT(!((flags & TQ_SLEEP) && (flags & TQ_NOSLEEP))); /* Not both */
3d061e9d 55 ASSERT(spin_is_locked(&tq->tq_lock));
bcd68186 56retry:
046a70c9 57 /* Acquire taskq_ent_t's from free list if available */
bcd68186 58 if (!list_empty(&tq->tq_free_list) && !(flags & TQ_NEW)) {
046a70c9
PS
59 t = list_entry(tq->tq_free_list.next, taskq_ent_t, tqent_list);
60 list_del_init(&t->tqent_list);
b17edc10 61 SRETURN(t);
bcd68186 62 }
63
7257ec41 64 /* Free list is empty and memory allocations are prohibited */
bcd68186 65 if (flags & TQ_NOALLOC)
b17edc10 66 SRETURN(NULL);
bcd68186 67
046a70c9 68 /* Hit maximum taskq_ent_t pool size */
bcd68186 69 if (tq->tq_nalloc >= tq->tq_maxalloc) {
70 if (flags & TQ_NOSLEEP)
b17edc10 71 SRETURN(NULL);
bcd68186 72
26f7245c
RC
73 /*
74 * Sleep periodically polling the free list for an available
046a70c9
PS
75 * taskq_ent_t. Dispatching with TQ_SLEEP should always succeed
76 * but we cannot block forever waiting for an taskq_entq_t to
26f7245c
RC
77 * show up in the free list, otherwise a deadlock can happen.
78 *
79 * Therefore, we need to allocate a new task even if the number
80 * of allocated tasks is above tq->tq_maxalloc, but we still
81 * end up delaying the task allocation by one second, thereby
82 * throttling the task dispatch rate.
83 */
84 spin_unlock_irqrestore(&tq->tq_lock, tq->tq_lock_flags);
85 schedule_timeout(HZ / 100);
86 spin_lock_irqsave(&tq->tq_lock, tq->tq_lock_flags);
87 if (count < 100)
88 SGOTO(retry, count++);
bcd68186 89 }
90
26f7245c 91 spin_unlock_irqrestore(&tq->tq_lock, tq->tq_lock_flags);
046a70c9 92 t = kmem_alloc(sizeof(taskq_ent_t), flags & (TQ_SLEEP | TQ_NOSLEEP));
749045bb 93 spin_lock_irqsave(&tq->tq_lock, tq->tq_lock_flags);
bcd68186 94
26f7245c 95 if (t) {
046a70c9
PS
96 spin_lock_init(&t->tqent_lock);
97 INIT_LIST_HEAD(&t->tqent_list);
98 t->tqent_id = 0;
99 t->tqent_func = NULL;
100 t->tqent_arg = NULL;
26f7245c
RC
101 tq->tq_nalloc++;
102 }
bcd68186 103
b17edc10 104 SRETURN(t);
bcd68186 105}
106
82387586 107/*
046a70c9 108 * NOTE: Must be called with tq->tq_lock held, expects the taskq_ent_t
bcd68186 109 * to already be removed from the free, work, or pending taskq lists.
110 */
111static void
046a70c9 112task_free(taskq_t *tq, taskq_ent_t *t)
bcd68186 113{
b17edc10 114 SENTRY;
bcd68186 115
116 ASSERT(tq);
117 ASSERT(t);
118 ASSERT(spin_is_locked(&tq->tq_lock));
046a70c9 119 ASSERT(list_empty(&t->tqent_list));
bcd68186 120
046a70c9 121 kmem_free(t, sizeof(taskq_ent_t));
bcd68186 122 tq->tq_nalloc--;
f1ca4da6 123
b17edc10 124 SEXIT;
bcd68186 125}
126
82387586
BB
127/*
128 * NOTE: Must be called with tq->tq_lock held, either destroys the
046a70c9 129 * taskq_ent_t if too many exist or moves it to the free list for later use.
bcd68186 130 */
f1ca4da6 131static void
046a70c9 132task_done(taskq_t *tq, taskq_ent_t *t)
f1ca4da6 133{
b17edc10 134 SENTRY;
bcd68186 135 ASSERT(tq);
136 ASSERT(t);
137 ASSERT(spin_is_locked(&tq->tq_lock));
138
046a70c9 139 list_del_init(&t->tqent_list);
f1ca4da6 140
bcd68186 141 if (tq->tq_nalloc <= tq->tq_minalloc) {
046a70c9
PS
142 t->tqent_id = 0;
143 t->tqent_func = NULL;
144 t->tqent_arg = NULL;
145 list_add_tail(&t->tqent_list, &tq->tq_free_list);
bcd68186 146 } else {
147 task_free(tq, t);
148 }
f1ca4da6 149
b17edc10 150 SEXIT;
f1ca4da6 151}
152
82387586
BB
153/*
154 * As tasks are submitted to the task queue they are assigned a
f0d8bb26
NB
155 * monotonically increasing taskqid and added to the tail of the pending
156 * list. As worker threads become available the tasks are removed from
157 * the head of the pending or priority list, giving preference to the
158 * priority list. The tasks are then added to the work list, preserving
159 * the ordering by taskqid. Finally, as tasks complete they are removed
160 * from the work list. This means that the pending and work lists are
161 * always kept sorted by taskqid. Thus the lowest outstanding
82387586 162 * incomplete taskqid can be determined simply by checking the min
f0d8bb26
NB
163 * taskqid for each head item on the pending, priority, and work list.
164 * This value is stored in tq->tq_lowest_id and only updated to the new
165 * lowest id when the previous lowest id completes. All taskqids lower
166 * than tq->tq_lowest_id must have completed. It is also possible
167 * larger taskqid's have completed because they may be processed in
168 * parallel by several worker threads. However, this is not a problem
169 * because the behavior of taskq_wait_id() is to block until all
170 * previously submitted taskqid's have completed.
82387586
BB
171 *
172 * XXX: Taskqid_t wrapping is not handled. However, taskqid_t's are
173 * 64-bit values so even if a taskq is processing 2^24 (16,777,216)
174 * taskqid_ts per second it will still take 2^40 seconds, 34,865 years,
175 * before the wrap occurs. I can live with that for now.
bcd68186 176 */
177static int
178taskq_wait_check(taskq_t *tq, taskqid_t id)
179{
7257ec41
BB
180 int rc;
181
182 spin_lock_irqsave(&tq->tq_lock, tq->tq_lock_flags);
183 rc = (id < tq->tq_lowest_id);
184 spin_unlock_irqrestore(&tq->tq_lock, tq->tq_lock_flags);
185
b17edc10 186 SRETURN(rc);
bcd68186 187}
188
bcd68186 189void
190__taskq_wait_id(taskq_t *tq, taskqid_t id)
f1ca4da6 191{
b17edc10 192 SENTRY;
bcd68186 193 ASSERT(tq);
194
195 wait_event(tq->tq_wait_waitq, taskq_wait_check(tq, id));
196
b17edc10 197 SEXIT;
bcd68186 198}
199EXPORT_SYMBOL(__taskq_wait_id);
200
201void
202__taskq_wait(taskq_t *tq)
203{
204 taskqid_t id;
b17edc10 205 SENTRY;
bcd68186 206 ASSERT(tq);
207
7257ec41 208 /* Wait for the largest outstanding taskqid */
749045bb 209 spin_lock_irqsave(&tq->tq_lock, tq->tq_lock_flags);
7257ec41 210 id = tq->tq_next_id - 1;
749045bb 211 spin_unlock_irqrestore(&tq->tq_lock, tq->tq_lock_flags);
bcd68186 212
213 __taskq_wait_id(tq, id);
214
b17edc10 215 SEXIT;
bcd68186 216
217}
218EXPORT_SYMBOL(__taskq_wait);
219
220int
221__taskq_member(taskq_t *tq, void *t)
222{
2c02b71b
PS
223 struct list_head *l;
224 taskq_thread_t *tqt;
b17edc10 225 SENTRY;
bcd68186 226
227 ASSERT(tq);
228 ASSERT(t);
229
2c02b71b
PS
230 list_for_each(l, &tq->tq_thread_list) {
231 tqt = list_entry(l, taskq_thread_t, tqt_thread_list);
232 if (tqt->tqt_thread == (struct task_struct *)t)
233 SRETURN(1);
234 }
bcd68186 235
b17edc10 236 SRETURN(0);
bcd68186 237}
238EXPORT_SYMBOL(__taskq_member);
239
240taskqid_t
241__taskq_dispatch(taskq_t *tq, task_func_t func, void *arg, uint_t flags)
242{
046a70c9 243 taskq_ent_t *t;
bcd68186 244 taskqid_t rc = 0;
b17edc10 245 SENTRY;
f1ca4da6 246
937879f1 247 ASSERT(tq);
248 ASSERT(func);
d05ec4b4
BB
249
250 /* Solaris assumes TQ_SLEEP if not passed explicitly */
251 if (!(flags & (TQ_SLEEP | TQ_NOSLEEP)))
252 flags |= TQ_SLEEP;
253
55abb092
BB
254 if (unlikely(in_atomic() && (flags & TQ_SLEEP)))
255 PANIC("May schedule while atomic: %s/0x%08x/%d\n",
256 current->comm, preempt_count(), current->pid);
f1ca4da6 257
749045bb 258 spin_lock_irqsave(&tq->tq_lock, tq->tq_lock_flags);
f1ca4da6 259
bcd68186 260 /* Taskq being destroyed and all tasks drained */
261 if (!(tq->tq_flags & TQ_ACTIVE))
b17edc10 262 SGOTO(out, rc = 0);
f1ca4da6 263
bcd68186 264 /* Do not queue the task unless there is idle thread for it */
265 ASSERT(tq->tq_nactive <= tq->tq_nthreads);
266 if ((flags & TQ_NOQUEUE) && (tq->tq_nactive == tq->tq_nthreads))
b17edc10 267 SGOTO(out, rc = 0);
bcd68186 268
269 if ((t = task_alloc(tq, flags)) == NULL)
b17edc10 270 SGOTO(out, rc = 0);
f1ca4da6 271
046a70c9 272 spin_lock(&t->tqent_lock);
f0d8bb26
NB
273
274 /* Queue to the priority list instead of the pending list */
275 if (flags & TQ_FRONT)
046a70c9 276 list_add_tail(&t->tqent_list, &tq->tq_prio_list);
f0d8bb26 277 else
046a70c9 278 list_add_tail(&t->tqent_list, &tq->tq_pend_list);
f0d8bb26 279
046a70c9 280 t->tqent_id = rc = tq->tq_next_id;
bcd68186 281 tq->tq_next_id++;
046a70c9
PS
282 t->tqent_func = func;
283 t->tqent_arg = arg;
284 spin_unlock(&t->tqent_lock);
bcd68186 285
286 wake_up(&tq->tq_work_waitq);
287out:
749045bb 288 spin_unlock_irqrestore(&tq->tq_lock, tq->tq_lock_flags);
b17edc10 289 SRETURN(rc);
f1ca4da6 290}
f1b59d26 291EXPORT_SYMBOL(__taskq_dispatch);
82387586
BB
292/*
293 * Returns the lowest incomplete taskqid_t. The taskqid_t may
f0d8bb26
NB
294 * be queued on the pending list, on the priority list, or on
295 * the work list currently being handled, but it is not 100%
296 * complete yet.
82387586 297 */
bcd68186 298static taskqid_t
299taskq_lowest_id(taskq_t *tq)
300{
7257ec41 301 taskqid_t lowest_id = tq->tq_next_id;
046a70c9 302 taskq_ent_t *t;
2c02b71b 303 taskq_thread_t *tqt;
b17edc10 304 SENTRY;
bcd68186 305
306 ASSERT(tq);
307 ASSERT(spin_is_locked(&tq->tq_lock));
308
82387586 309 if (!list_empty(&tq->tq_pend_list)) {
046a70c9
PS
310 t = list_entry(tq->tq_pend_list.next, taskq_ent_t, tqent_list);
311 lowest_id = MIN(lowest_id, t->tqent_id);
82387586 312 }
bcd68186 313
f0d8bb26 314 if (!list_empty(&tq->tq_prio_list)) {
046a70c9
PS
315 t = list_entry(tq->tq_prio_list.next, taskq_ent_t, tqent_list);
316 lowest_id = MIN(lowest_id, t->tqent_id);
f0d8bb26
NB
317 }
318
2c02b71b
PS
319 if (!list_empty(&tq->tq_active_list)) {
320 tqt = list_entry(tq->tq_active_list.next, taskq_thread_t,
321 tqt_active_list);
322 ASSERT(tqt->tqt_ent != NULL);
323 lowest_id = MIN(lowest_id, tqt->tqt_ent->tqent_id);
82387586 324 }
bcd68186 325
b17edc10 326 SRETURN(lowest_id);
bcd68186 327}
328
f0d8bb26
NB
329/*
330 * Insert a task into a list keeping the list sorted by increasing
331 * taskqid.
332 */
333static void
2c02b71b 334taskq_insert_in_order(taskq_t *tq, taskq_thread_t *tqt)
f0d8bb26 335{
2c02b71b 336 taskq_thread_t *w;
f0d8bb26
NB
337 struct list_head *l;
338
b17edc10 339 SENTRY;
f0d8bb26 340 ASSERT(tq);
2c02b71b 341 ASSERT(tqt);
f0d8bb26
NB
342 ASSERT(spin_is_locked(&tq->tq_lock));
343
2c02b71b
PS
344 list_for_each_prev(l, &tq->tq_active_list) {
345 w = list_entry(l, taskq_thread_t, tqt_active_list);
346 if (w->tqt_ent->tqent_id < tqt->tqt_ent->tqent_id) {
347 list_add(&tqt->tqt_active_list, l);
f0d8bb26
NB
348 break;
349 }
350 }
2c02b71b
PS
351 if (l == &tq->tq_active_list)
352 list_add(&tqt->tqt_active_list, &tq->tq_active_list);
f0d8bb26 353
b17edc10 354 SEXIT;
f0d8bb26
NB
355}
356
bcd68186 357static int
358taskq_thread(void *args)
359{
360 DECLARE_WAITQUEUE(wait, current);
361 sigset_t blocked;
362 taskqid_t id;
2c02b71b
PS
363 taskq_thread_t *tqt = args;
364 taskq_t *tq;
046a70c9 365 taskq_ent_t *t;
f0d8bb26 366 struct list_head *pend_list;
b17edc10 367 SENTRY;
bcd68186 368
2c02b71b
PS
369 ASSERT(tqt);
370 tq = tqt->tqt_tq;
bcd68186 371 current->flags |= PF_NOFREEZE;
372
372c2572
BB
373 /* Disable the direct memory reclaim path */
374 if (tq->tq_flags & TASKQ_NORECLAIM)
375 current->flags |= PF_MEMALLOC;
376
bcd68186 377 sigfillset(&blocked);
378 sigprocmask(SIG_BLOCK, &blocked, NULL);
379 flush_signals(current);
380
749045bb 381 spin_lock_irqsave(&tq->tq_lock, tq->tq_lock_flags);
bcd68186 382 tq->tq_nthreads++;
383 wake_up(&tq->tq_wait_waitq);
384 set_current_state(TASK_INTERRUPTIBLE);
385
386 while (!kthread_should_stop()) {
387
388 add_wait_queue(&tq->tq_work_waitq, &wait);
f0d8bb26
NB
389 if (list_empty(&tq->tq_pend_list) &&
390 list_empty(&tq->tq_prio_list)) {
749045bb 391 spin_unlock_irqrestore(&tq->tq_lock, tq->tq_lock_flags);
bcd68186 392 schedule();
749045bb 393 spin_lock_irqsave(&tq->tq_lock, tq->tq_lock_flags);
bcd68186 394 } else {
395 __set_current_state(TASK_RUNNING);
396 }
397
398 remove_wait_queue(&tq->tq_work_waitq, &wait);
f0d8bb26
NB
399
400 if (!list_empty(&tq->tq_prio_list))
401 pend_list = &tq->tq_prio_list;
402 else if (!list_empty(&tq->tq_pend_list))
403 pend_list = &tq->tq_pend_list;
404 else
405 pend_list = NULL;
406
407 if (pend_list) {
046a70c9
PS
408 t = list_entry(pend_list->next, taskq_ent_t, tqent_list);
409 list_del_init(&t->tqent_list);
2c02b71b
PS
410 tqt->tqt_ent = t;
411 taskq_insert_in_order(tq, tqt);
bcd68186 412 tq->tq_nactive++;
749045bb 413 spin_unlock_irqrestore(&tq->tq_lock, tq->tq_lock_flags);
bcd68186 414
415 /* Perform the requested task */
046a70c9 416 t->tqent_func(t->tqent_arg);
bcd68186 417
749045bb 418 spin_lock_irqsave(&tq->tq_lock, tq->tq_lock_flags);
bcd68186 419 tq->tq_nactive--;
2c02b71b
PS
420 list_del_init(&tqt->tqt_active_list);
421 tqt->tqt_ent = NULL;
046a70c9 422 id = t->tqent_id;
bcd68186 423 task_done(tq, t);
424
7257ec41
BB
425 /* When the current lowest outstanding taskqid is
426 * done calculate the new lowest outstanding id */
bcd68186 427 if (tq->tq_lowest_id == id) {
428 tq->tq_lowest_id = taskq_lowest_id(tq);
429 ASSERT(tq->tq_lowest_id > id);
430 }
431
432 wake_up_all(&tq->tq_wait_waitq);
433 }
434
435 set_current_state(TASK_INTERRUPTIBLE);
436
437 }
438
439 __set_current_state(TASK_RUNNING);
440 tq->tq_nthreads--;
2c02b71b
PS
441 list_del_init(&tqt->tqt_thread_list);
442 kmem_free(tqt, sizeof(taskq_thread_t));
443
749045bb 444 spin_unlock_irqrestore(&tq->tq_lock, tq->tq_lock_flags);
bcd68186 445
b17edc10 446 SRETURN(0);
bcd68186 447}
448
f1ca4da6 449taskq_t *
450__taskq_create(const char *name, int nthreads, pri_t pri,
451 int minalloc, int maxalloc, uint_t flags)
452{
bcd68186 453 taskq_t *tq;
2c02b71b 454 taskq_thread_t *tqt;
bcd68186 455 int rc = 0, i, j = 0;
b17edc10 456 SENTRY;
bcd68186 457
458 ASSERT(name != NULL);
459 ASSERT(pri <= maxclsyspri);
460 ASSERT(minalloc >= 0);
461 ASSERT(maxalloc <= INT_MAX);
462 ASSERT(!(flags & (TASKQ_CPR_SAFE | TASKQ_DYNAMIC))); /* Unsupported */
463
915404bd
BB
464 /* Scale the number of threads using nthreads as a percentage */
465 if (flags & TASKQ_THREADS_CPU_PCT) {
466 ASSERT(nthreads <= 100);
467 ASSERT(nthreads >= 0);
468 nthreads = MIN(nthreads, 100);
469 nthreads = MAX(nthreads, 0);
470 nthreads = MAX((num_online_cpus() * nthreads) / 100, 1);
471 }
472
bcd68186 473 tq = kmem_alloc(sizeof(*tq), KM_SLEEP);
474 if (tq == NULL)
b17edc10 475 SRETURN(NULL);
bcd68186 476
bcd68186 477 spin_lock_init(&tq->tq_lock);
749045bb 478 spin_lock_irqsave(&tq->tq_lock, tq->tq_lock_flags);
2c02b71b
PS
479 INIT_LIST_HEAD(&tq->tq_thread_list);
480 INIT_LIST_HEAD(&tq->tq_active_list);
bcd68186 481 tq->tq_name = name;
482 tq->tq_nactive = 0;
483 tq->tq_nthreads = 0;
484 tq->tq_pri = pri;
485 tq->tq_minalloc = minalloc;
486 tq->tq_maxalloc = maxalloc;
487 tq->tq_nalloc = 0;
488 tq->tq_flags = (flags | TQ_ACTIVE);
489 tq->tq_next_id = 1;
490 tq->tq_lowest_id = 1;
491 INIT_LIST_HEAD(&tq->tq_free_list);
bcd68186 492 INIT_LIST_HEAD(&tq->tq_pend_list);
f0d8bb26 493 INIT_LIST_HEAD(&tq->tq_prio_list);
bcd68186 494 init_waitqueue_head(&tq->tq_work_waitq);
495 init_waitqueue_head(&tq->tq_wait_waitq);
496
497 if (flags & TASKQ_PREPOPULATE)
498 for (i = 0; i < minalloc; i++)
499 task_done(tq, task_alloc(tq, TQ_SLEEP | TQ_NEW));
6e605b6e 500
749045bb 501 spin_unlock_irqrestore(&tq->tq_lock, tq->tq_lock_flags);
6e605b6e 502
2c02b71b
PS
503 for (i = 0; i < nthreads; i++) {
504 tqt = kmem_alloc(sizeof(*tqt), KM_SLEEP);
505 INIT_LIST_HEAD(&tqt->tqt_thread_list);
506 INIT_LIST_HEAD(&tqt->tqt_active_list);
507 tqt->tqt_tq = tq;
508 tqt->tqt_ent = NULL;
509
510 tqt->tqt_thread = kthread_create(taskq_thread, tqt,
511 "%s/%d", name, i);
512 if (tqt->tqt_thread) {
513 list_add(&tqt->tqt_thread_list, &tq->tq_thread_list);
514 kthread_bind(tqt->tqt_thread, i % num_online_cpus());
515 set_user_nice(tqt->tqt_thread, PRIO_TO_NICE(pri));
516 wake_up_process(tqt->tqt_thread);
bcd68186 517 j++;
2c02b71b
PS
518 } else {
519 kmem_free(tqt, sizeof(taskq_thread_t));
520 rc = 1;
521 }
522 }
bcd68186 523
524 /* Wait for all threads to be started before potential destroy */
525 wait_event(tq->tq_wait_waitq, tq->tq_nthreads == j);
526
527 if (rc) {
528 __taskq_destroy(tq);
529 tq = NULL;
530 }
531
b17edc10 532 SRETURN(tq);
f1ca4da6 533}
f1b59d26 534EXPORT_SYMBOL(__taskq_create);
b123971f 535
536void
537__taskq_destroy(taskq_t *tq)
538{
2c02b71b
PS
539 struct task_struct *thread;
540 taskq_thread_t *tqt;
046a70c9 541 taskq_ent_t *t;
b17edc10 542 SENTRY;
b123971f 543
bcd68186 544 ASSERT(tq);
749045bb 545 spin_lock_irqsave(&tq->tq_lock, tq->tq_lock_flags);
bcd68186 546 tq->tq_flags &= ~TQ_ACTIVE;
749045bb 547 spin_unlock_irqrestore(&tq->tq_lock, tq->tq_lock_flags);
bcd68186 548
549 /* TQ_ACTIVE cleared prevents new tasks being added to pending */
550 __taskq_wait(tq);
551
749045bb 552 spin_lock_irqsave(&tq->tq_lock, tq->tq_lock_flags);
bcd68186 553
2c02b71b
PS
554 /*
555 * Signal each thread to exit and block until it does. Each thread
556 * is responsible for removing itself from the list and freeing its
557 * taskq_thread_t. This allows for idle threads to opt to remove
558 * themselves from the taskq. They can be recreated as needed.
559 */
560 while (!list_empty(&tq->tq_thread_list)) {
561 tqt = list_entry(tq->tq_thread_list.next,
562 taskq_thread_t, tqt_thread_list);
563 thread = tqt->tqt_thread;
564 spin_unlock_irqrestore(&tq->tq_lock, tq->tq_lock_flags);
565
566 kthread_stop(thread);
567
568 spin_lock_irqsave(&tq->tq_lock, tq->tq_lock_flags);
569 }
570
bcd68186 571 while (!list_empty(&tq->tq_free_list)) {
046a70c9
PS
572 t = list_entry(tq->tq_free_list.next, taskq_ent_t, tqent_list);
573 list_del_init(&t->tqent_list);
bcd68186 574 task_free(tq, t);
575 }
576
577 ASSERT(tq->tq_nthreads == 0);
578 ASSERT(tq->tq_nalloc == 0);
2c02b71b
PS
579 ASSERT(list_empty(&tq->tq_thread_list));
580 ASSERT(list_empty(&tq->tq_active_list));
bcd68186 581 ASSERT(list_empty(&tq->tq_free_list));
bcd68186 582 ASSERT(list_empty(&tq->tq_pend_list));
f0d8bb26 583 ASSERT(list_empty(&tq->tq_prio_list));
bcd68186 584
749045bb 585 spin_unlock_irqrestore(&tq->tq_lock, tq->tq_lock_flags);
2c02b71b 586
bcd68186 587 kmem_free(tq, sizeof(taskq_t));
588
b17edc10 589 SEXIT;
b123971f 590}
bcd68186 591EXPORT_SYMBOL(__taskq_destroy);
e9cb2b4f
BB
592
593int
594spl_taskq_init(void)
595{
b17edc10 596 SENTRY;
e9cb2b4f 597
f220894e
BB
598 /* Solaris creates a dynamic taskq of up to 64 threads, however in
599 * a Linux environment 1 thread per-core is usually about right */
600 system_taskq = taskq_create("spl_system_taskq", num_online_cpus(),
601 minclsyspri, 4, 512, TASKQ_PREPOPULATE);
e9cb2b4f 602 if (system_taskq == NULL)
b17edc10 603 SRETURN(1);
e9cb2b4f 604
b17edc10 605 SRETURN(0);
e9cb2b4f
BB
606}
607
608void
609spl_taskq_fini(void)
610{
b17edc10 611 SENTRY;
e9cb2b4f 612 taskq_destroy(system_taskq);
b17edc10 613 SEXIT;
e9cb2b4f 614}