Home
last modified time | relevance | path

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

/freebsd/sys/dev/age/
H A Dif_age.c629 sc->age_tq = taskqueue_create_fast("age_taskq", M_WAITOK, in age_attach()
630 taskqueue_thread_enqueue, &sc->age_tq); in age_attach()
631 taskqueue_start_threads(&sc->age_tq, 1, PI_NET, "%s taskq", in age_attach()
649 taskqueue_free(sc->age_tq); in age_attach()
650 sc->age_tq = NULL; in age_attach()
678 taskqueue_drain(sc->age_tq, &sc->age_int_task); in age_detach()
683 if (sc->age_tq != NULL) { in age_detach()
684 taskqueue_drain(sc->age_tq, &sc->age_int_task); in age_detach()
685 taskqueue_free(sc->age_tq); in age_detach()
686 sc->age_tq = NULL; in age_detach()
[all …]
H A Dif_agevar.h232 struct taskqueue *age_tq; member