4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright 2010 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
26 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
29 #ifndef _SYS_TASKQ_IMPL_H
30 #define _SYS_TASKQ_IMPL_H
32 #include <sys/taskq.h>
33 #include <sys/inttypes.h>
36 #include <sys/kstat.h>
42 typedef struct taskq_bucket taskq_bucket_t
;
44 typedef struct taskq_ent
{
45 struct taskq_ent
*tqent_next
;
46 struct taskq_ent
*tqent_prev
;
47 task_func_t
*tqent_func
;
50 taskq_bucket_t
*tqent_bucket
;
51 uintptr_t tqent_flags
;
53 kthread_t
*tqent_thread
;
57 #define TQENT_FLAG_PREALLOC 0x1
60 * Taskq Statistics fields are not protected by any locks.
62 typedef struct tqstat
{
65 uint_t tqs_overflow
; /* no threads to allocate */
66 uint_t tqs_tcreates
; /* threads created */
67 uint_t tqs_tdeaths
; /* threads died */
68 uint_t tqs_maxthreads
; /* max # of alive threads */
69 uint_t tqs_nomem
; /* # of times there were no memory */
70 uint_t tqs_disptcreates
;
74 * Per-CPU hash bucket manages taskq_bent_t structures using freelist.
77 kmutex_t tqbucket_lock
;
78 taskq_t
*tqbucket_taskq
; /* Enclosing taskq */
79 taskq_ent_t tqbucket_freelist
;
80 uint_t tqbucket_nalloc
; /* # of allocated entries */
81 uint_t tqbucket_nfree
; /* # of free entries */
82 kcondvar_t tqbucket_cv
;
83 ushort_t tqbucket_flags
;
84 hrtime_t tqbucket_totaltime
;
85 tqstat_t tqbucket_stat
;
91 #define TQBUCKET_CLOSE 0x01
92 #define TQBUCKET_SUSPEND 0x02
94 #define TASKQ_INTERFACE_FLAGS 0x0000ffff /* defined in <sys/taskq.h> */
97 * taskq implementation flags: bit range 16-31
99 #define TASKQ_CHANGING 0x00010000 /* nthreads != target */
100 #define TASKQ_SUSPENDED 0x00020000 /* taskq is suspended */
101 #define TASKQ_NOINSTANCE 0x00040000 /* no instance number */
102 #define TASKQ_THREAD_CREATED 0x00080000 /* a thread has been created */
103 #define TASKQ_DUTY_CYCLE 0x00100000 /* using the SDC class */
106 char tq_name
[TASKQ_NAMELEN
+ 1];
108 krwlock_t tq_threadlock
;
109 kcondvar_t tq_dispatch_cv
;
110 kcondvar_t tq_wait_cv
;
111 kcondvar_t tq_exit_cv
;
112 pri_t tq_pri
; /* Scheduling priority */
116 int tq_nthreads_target
;
118 int tq_threads_ncpus_pct
;
122 kcondvar_t tq_maxalloc_cv
;
123 int tq_maxalloc_wait
;
124 taskq_ent_t
*tq_freelist
;
127 taskq_bucket_t
*tq_buckets
; /* Per-cpu array of buckets */
129 uint_t tq_nbuckets
; /* # of buckets (2^n) */
131 kthread_t
*_tq_thread
;
132 kthread_t
**_tq_threadlist
;
135 list_node_t tq_cpupct_link
; /* linkage for taskq_cpupct_list */
136 struct proc
*tq_proc
; /* process for taskq threads */
137 int tq_cpupart
; /* cpupart id bound to */
138 uint_t tq_DC
; /* duty cycle for SDC */
143 kstat_t
*tq_kstat
; /* Exported statistics */
144 hrtime_t tq_totaltime
; /* Time spent processing tasks */
145 uint64_t tq_tasks
; /* Total # of tasks posted */
146 uint64_t tq_executed
; /* Total # of tasks executed */
147 int tq_maxtasks
; /* Max number of tasks in the queue */
152 /* Special form of taskq dispatch that uses preallocated entries. */
153 void taskq_dispatch_ent(taskq_t
*, task_func_t
, void *, uint_t
, taskq_ent_t
*);
156 #define tq_thread tq_thr._tq_thread
157 #define tq_threadlist tq_thr._tq_threadlist
159 /* The MAX guarantees we have at least one thread */
160 #define TASKQ_THREADS_PCT(ncpus, pct) MAX(((ncpus) * (pct)) / 100, 1)
166 #endif /* _SYS_TASKQ_IMPL_H */