Home
last modified time | relevance | path

Searched refs:tq_freelist (Results 1 – 4 of 4) sorted by relevance

/titanic_50/usr/src/lib/libzpool/common/
H A Dtaskq.c54 taskq_ent_t *tq_freelist; member
64 again: if ((t = tq->tq_freelist) != NULL && tq->tq_nalloc >= tq->tq_minalloc) { in task_alloc()
65 tq->tq_freelist = t->tqent_next; in task_alloc()
103 t->tqent_next = tq->tq_freelist; in task_free()
104 tq->tq_freelist = t; in task_free()
295 ASSERT(tq->tq_freelist != NULL); in taskq_destroy()
/titanic_50/usr/src/lib/libfakekernel/common/
H A Dtaskq.c84 taskq_ent_t *tq_freelist; member
94 again: if ((t = tq->tq_freelist) != NULL && tq->tq_nalloc >= tq->tq_minalloc) { in task_alloc()
95 tq->tq_freelist = t->tqent_next; in task_alloc()
133 t->tqent_next = tq->tq_freelist; in task_free()
134 tq->tq_freelist = t; in task_free()
333 ASSERT(tq->tq_freelist != NULL); in taskq_destroy()
/titanic_50/usr/src/uts/common/sys/
H A Dtaskq_impl.h124 taskq_ent_t *tq_freelist; member
/titanic_50/usr/src/uts/common/os/
H A Dtaskq.c983 again: if ((tqe = tq->tq_freelist) != NULL && in taskq_ent_alloc()
985 tq->tq_freelist = tqe->tqent_next; in taskq_ent_alloc()
1005 while (tq->tq_freelist == NULL) { in taskq_ent_alloc()
1013 if (tq->tq_freelist) in taskq_ent_alloc()
1042 tqe->tqent_next = tq->tq_freelist; in taskq_ent_free()
1043 tq->tq_freelist = tqe; in taskq_ent_free()