Home
last modified time | relevance | path

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

/freebsd/sys/dev/ale/
H A Dif_ale.c656 sc->ale_tq = taskqueue_create_fast("ale_taskq", M_WAITOK, in ale_attach()
657 taskqueue_thread_enqueue, &sc->ale_tq); in ale_attach()
658 taskqueue_start_threads(&sc->ale_tq, 1, PI_NET, "%s taskq", in ale_attach()
676 taskqueue_free(sc->ale_tq); in ale_attach()
677 sc->ale_tq = NULL; in ale_attach()
705 taskqueue_drain(sc->ale_tq, &sc->ale_int_task); in ale_detach()
708 if (sc->ale_tq != NULL) { in ale_detach()
709 taskqueue_drain(sc->ale_tq, &sc->ale_int_task); in ale_detach()
710 taskqueue_free(sc->ale_tq); in ale_detach()
711 sc->ale_tq = NULL; in ale_detach()
[all …]
H A Dif_alevar.h224 struct taskqueue *ale_tq; member