Home
last modified time | relevance | path

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

/freebsd-14.2/sys/dev/hyperv/netvsc/
H A Dif_hn.c618 static struct taskqueue **hn_tx_taskque;/* shared TX taskqueues */ variable
2125 sc->hn_tx_taskqs = hn_tx_taskque; in hn_attach()
2541 if (sc->hn_tx_taskqs != NULL && sc->hn_tx_taskqs != hn_tx_taskque) { in hn_detach()
7652 hn_tx_taskque = malloc(hn_tx_taskq_cnt * sizeof(struct taskqueue *), in hn_sysinit()
7655 hn_tx_taskque[i] = taskqueue_create("hn_tx", M_WAITOK, in hn_sysinit()
7656 taskqueue_thread_enqueue, &hn_tx_taskque[i]); in hn_sysinit()
7657 taskqueue_start_threads(&hn_tx_taskque[i], 1, PI_NET, in hn_sysinit()
7667 if (hn_tx_taskque != NULL) { in hn_sysuninit()
7671 taskqueue_free(hn_tx_taskque[i]); in hn_sysuninit()
7672 free(hn_tx_taskque, M_DEVBUF); in hn_sysuninit()