Home
last modified time | relevance | path

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

/f-stack/freebsd/opencrypto/
H A Dcrypto.c163 static struct taskqueue *crypto_tq; variable
343 crypto_tq = taskqueue_create("crypto", M_WAITOK | M_ZERO, in crypto_init()
344 taskqueue_thread_enqueue, &crypto_tq); in crypto_init()
346 taskqueue_start_threads(&crypto_tq, crypto_workers_num, PRI_MIN_KERN, in crypto_init()
468 if (crypto_tq != NULL) in crypto_destroy()
469 taskqueue_drain_all(crypto_tq); in crypto_destroy()
493 if (crypto_tq != NULL) in crypto_destroy()
494 taskqueue_free(crypto_tq); in crypto_destroy()
1438 taskqueue_enqueue(crypto_tq, &crp->crp_task); in crypto_dispatch()