#ifndef _SYS_TASKQ_IMPL_H
#define _SYS_TASKQ_IMPL_H
#include <sys/taskq.h>
#include <sys/inttypes.h>
#include <sys/vmem.h>
#include <sys/list.h>
#include <sys/kstat.h>
#include <sys/rwlock.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct taskq_bucket taskq_bucket_t;
typedef struct taskq_ent {
struct taskq_ent *tqent_next;
struct taskq_ent *tqent_prev;
task_func_t *tqent_func;
void *tqent_arg;
union {
taskq_bucket_t *tqent_bucket;
uintptr_t tqent_flags;
} tqent_un;
kthread_t *tqent_thread;
kcondvar_t tqent_cv;
} taskq_ent_t;
#define TQENT_FLAG_PREALLOC 0x1
typedef struct tqstat {
uint64_t tqs_hits;
uint64_t tqs_misses;
uint64_t tqs_disptcreates;
uint64_t tqs_overflow;
uint_t tqs_maxbacklog;
uint_t tqs_tcreates;
uint_t tqs_tdeaths;
uint_t tqs_maxthreads;
} tqstat_t;
struct taskq_bucket {
kmutex_t tqbucket_lock;
taskq_t *tqbucket_taskq;
taskq_ent_t tqbucket_backlog;
taskq_ent_t tqbucket_freelist;
uint_t tqbucket_nalloc;
uint_t tqbucket_nbacklog;
uint_t tqbucket_nfree;
kcondvar_t tqbucket_cv;
ushort_t tqbucket_flags;
hrtime_t tqbucket_totaltime;
tqstat_t tqbucket_stat;
};
#define TQBUCKET_CLOSE 0x01
#define TQBUCKET_SUSPEND 0x02
#define TQBUCKET_REDIRECT 0x04
#define TASKQ_INTERFACE_FLAGS 0x0000ffff
#define TASKQ_CHANGING 0x00010000
#define TASKQ_SUSPENDED 0x00020000
#define TASKQ_NOINSTANCE 0x00040000
#define TASKQ_THREAD_CREATED 0x00080000
#define TASKQ_DUTY_CYCLE 0x00100000
struct taskq {
char tq_name[TASKQ_NAMELEN + 1];
kmutex_t tq_lock;
krwlock_t tq_threadlock;
kcondvar_t tq_dispatch_cv;
kcondvar_t tq_wait_cv;
kcondvar_t tq_exit_cv;
pri_t tq_pri;
uint_t tq_flags;
int tq_active;
int tq_nthreads;
int tq_nthreads_target;
int tq_nthreads_max;
int tq_threads_ncpus_pct;
int tq_nalloc;
int tq_minalloc;
int tq_maxalloc;
kcondvar_t tq_maxalloc_cv;
int tq_maxalloc_wait;
taskq_ent_t *tq_freelist;
taskq_ent_t tq_task;
int tq_maxsize;
uint_t tq_atpb;
taskq_bucket_t *tq_buckets;
int tq_instance;
uint_t tq_nbuckets;
union {
kthread_t *_tq_thread;
kthread_t **_tq_threadlist;
} tq_thr;
list_node_t tq_cpupct_link;
struct proc *tq_proc;
int tq_cpupart;
uint_t tq_DC;
kstat_t *tq_kstat;
hrtime_t tq_totaltime;
uint64_t tq_nomem;
uint64_t tq_tasks;
uint64_t tq_executed;
int tq_maxtasks;
int tq_dnthreads;
};
void taskq_dispatch_ent(taskq_t *, task_func_t, void *, uint_t, taskq_ent_t *);
#define tq_thread tq_thr._tq_thread
#define tq_threadlist tq_thr._tq_threadlist
#define TASKQ_THREADS_PCT(ncpus, pct) MAX(((ncpus) * (pct)) / 100, 1)
#ifdef __cplusplus
}
#endif
#endif