Home
last modified time | relevance | path

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

/NextBSD/sys/dev/ale/
HDif_ale.c664 sc->ale_tq = taskqueue_create_fast("ale_taskq", M_WAITOK, in ale_attach()
665 taskqueue_thread_enqueue, &sc->ale_tq); in ale_attach()
666 if (sc->ale_tq == NULL) { in ale_attach()
672 taskqueue_start_threads(&sc->ale_tq, 1, PI_NET, "%s taskq", in ale_attach()
690 taskqueue_free(sc->ale_tq); in ale_attach()
691 sc->ale_tq = NULL; in ale_attach()
719 taskqueue_drain(sc->ale_tq, &sc->ale_int_task); in ale_detach()
722 if (sc->ale_tq != NULL) { in ale_detach()
723 taskqueue_drain(sc->ale_tq, &sc->ale_int_task); in ale_detach()
724 taskqueue_free(sc->ale_tq); in ale_detach()
[all …]
HDif_alevar.h224 struct taskqueue *ale_tq; member