Home
last modified time | relevance | path

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

/freebsd/sys/opencrypto/
H A Dcrypto.c152 static struct taskqueue *crypto_tq; variable
315 crypto_tq = taskqueue_create("crypto", M_WAITOK | M_ZERO, in crypto_init()
316 taskqueue_thread_enqueue, &crypto_tq); in crypto_init()
318 taskqueue_start_threads(&crypto_tq, crypto_workers_num, PRI_MIN_KERN, in crypto_init()
438 if (crypto_tq != NULL) in crypto_destroy()
439 taskqueue_drain_all(crypto_tq); in crypto_destroy()
463 if (crypto_tq != NULL) in crypto_destroy()
464 taskqueue_free(crypto_tq); in crypto_destroy()
1471 taskqueue_enqueue(crypto_tq, &crp->crp_task); in crypto_dispatch_async()