Home
last modified time | relevance | path

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

/freebsd/sys/dev/virtio/network/
H A Dif_vtnetvar.h114 struct sglist *vtntx_sg; member
H A Dif_vtnet.c865 txq->vtntx_sg = sglist_alloc(sc->vtnet_tx_nsegs, M_NOWAIT); in vtnet_init_txq()
866 if (txq->vtntx_sg == NULL) in vtnet_init_txq()
942 if (txq->vtntx_sg != NULL) { in vtnet_destroy_txq()
943 sglist_free(txq->vtntx_sg); in vtnet_destroy_txq()
944 txq->vtntx_sg = NULL; in vtnet_destroy_txq()
2529 sg = txq->vtntx_sg; in vtnet_txq_enqueue_buf()
/freebsd/sys/dev/netmap/
H A Dif_vtnet_netmap.h81 struct sglist *sg = txq->vtntx_sg; in vtnet_netmap_txsync()