Home
last modified time | relevance | path

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

/freebsd-13.1/sys/dev/hyperv/netvsc/
H A Dif_hn.c624 static struct taskqueue **hn_tx_taskque;/* shared TX taskqueues */ variable
2140 sc->hn_tx_taskqs = hn_tx_taskque; in hn_attach()
2554 if (sc->hn_tx_taskqs != NULL && sc->hn_tx_taskqs != hn_tx_taskque) { in hn_detach()
7688 hn_tx_taskque = malloc(hn_tx_taskq_cnt * sizeof(struct taskqueue *), in hn_sysinit()
7691 hn_tx_taskque[i] = taskqueue_create("hn_tx", M_WAITOK, in hn_sysinit()
7692 taskqueue_thread_enqueue, &hn_tx_taskque[i]); in hn_sysinit()
7693 taskqueue_start_threads(&hn_tx_taskque[i], 1, PI_NET, in hn_sysinit()
7703 if (hn_tx_taskque != NULL) { in hn_sysuninit()
7707 taskqueue_free(hn_tx_taskque[i]); in hn_sysuninit()
7708 free(hn_tx_taskque, M_DEVBUF); in hn_sysuninit()