Lines Matching refs:age_tq
628 sc->age_tq = taskqueue_create_fast("age_taskq", M_WAITOK, in age_attach()
629 taskqueue_thread_enqueue, &sc->age_tq); in age_attach()
630 taskqueue_start_threads(&sc->age_tq, 1, PI_NET, "%s taskq", in age_attach()
648 taskqueue_free(sc->age_tq); in age_attach()
649 sc->age_tq = NULL; in age_attach()
677 taskqueue_drain(sc->age_tq, &sc->age_int_task); in age_detach()
682 if (sc->age_tq != NULL) { in age_detach()
683 taskqueue_drain(sc->age_tq, &sc->age_int_task); in age_detach()
684 taskqueue_free(sc->age_tq); in age_detach()
685 sc->age_tq = NULL; in age_detach()
2102 taskqueue_enqueue(sc->age_tq, &sc->age_int_task); in age_intr()
2168 taskqueue_enqueue(sc->age_tq, &sc->age_int_task); in age_int_task()