Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/io/vioif/
H A Dvioif.c266 if ((tb = list_remove_head(&vif->vif_txbufs)) != NULL) { in vioif_txbuf_alloc()
282 list_insert_head(&vif->vif_txbufs, tb); in vioif_txbuf_free()
377 list_remove(&vif->vif_txbufs, tb); in vioif_free_bufs()
409 VERIFY(list_is_empty(&vif->vif_txbufs)); in vioif_free_bufs()
491 list_create(&vif->vif_txbufs, sizeof (vioif_txbuf_t), in vioif_alloc_bufs()
522 list_insert_tail(&vif->vif_txbufs, &vif->vif_txbufs_mem[i]); in vioif_alloc_bufs()
544 for (vioif_txbuf_t *tb = list_head(&vif->vif_txbufs); tb != NULL; in vioif_alloc_bufs()
545 tb = list_next(&vif->vif_txbufs, tb)) { in vioif_alloc_bufs()
H A Dvioif.h445 list_t vif_txbufs; member