Lines Matching refs:minalloc
81 * taskq_t *taskq_create(name, nthreads, pri, minalloc, maxalloc, flags);
95 * task population between 'minalloc' and 'maxalloc', but the
99 * prepopulated with 'minalloc' task structures.
106 * Also prepopulate the task queue with 'minalloc' task structures.
130 * taskq_t *taskq_create_instance(name, instance, nthreads, pri, minalloc,
136 * taskq_t *taskq_create_proc(name, nthreads, pri, minalloc, maxalloc, proc,
143 * taskq_t *taskq_create_sysdc(name, nthreads, minalloc, maxalloc, proc,
684 * then minalloc entries. So, fault injection in this case insures that
686 * than is specified by minalloc. TQ_NOALLOC dispatches are always allowed
1805 taskq_create(const char *name, int nthreads, pri_t pri, int minalloc,
1810 return (taskq_create_common(name, 0, nthreads, pri, minalloc,
1825 int minalloc, int maxalloc, uint_t flags)
1835 pri, minalloc, maxalloc, &p0, 0, flags));
1839 taskq_create_proc(const char *name, int nthreads, pri_t pri, int minalloc,
1845 return (taskq_create_common(name, 0, nthreads, pri, minalloc,
1850 taskq_create_sysdc(const char *name, int nthreads, int minalloc,
1856 return (taskq_create_common(name, 0, nthreads, minclsyspri, minalloc,
1862 int minalloc, int maxalloc, proc_t *proc, uint_t dc, uint_t flags)
1939 tq->tq_minalloc = minalloc;
1953 while (minalloc-- > 0)