Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/io/rtw/
H A Drtw.c1165 txbf = list_head(&rsc->sc_txq[i].tx_free_list); in rtw_dma_free()
1168 list_remove(&rsc->sc_txq[i].tx_free_list, txbf); in rtw_dma_free()
1169 txbf = list_head(&rsc->sc_txq[i].tx_free_list); in rtw_dma_free()
1171 list_destroy(&rsc->sc_txq[i].tx_free_list); in rtw_dma_free()
1242 list_create(&rsc->sc_txq[i].tx_free_list, in rtw_dma_init()
1343 txbf = list_head(&rsc->sc_txq[i].tx_free_list); in rtw_swring_setup()
1345 list_remove(&rsc->sc_txq[i].tx_free_list, txbf); in rtw_swring_setup()
1346 txbf = list_head(&rsc->sc_txq[i].tx_free_list); in rtw_swring_setup()
2258 bf = list_head(&rsc->sc_txq[i].tx_free_list); in rtw_send()
2275 list_remove(&rsc->sc_txq[i].tx_free_list, bf); in rtw_send()
[all …]
H A Drtwvar.h216 list_t tx_free_list; member
/illumos-gate/usr/src/uts/common/io/usbgem/
H A Dusbgem.c454 while ((req = dp->tx_free_list) != NULL) { in usbgem_free_memory()
455 dp->tx_free_list = in usbgem_free_memory()
470 dp->tx_free_list = NULL; in usbgem_alloc_memory()
484 req->bulk_client_private = (usb_opaque_t)dp->tx_free_list; in usbgem_alloc_memory()
485 dp->tx_free_list = req; in usbgem_alloc_memory()
553 if (dp->tx_free_list == NULL) { in usbgem_send_common()
568 req = dp->tx_free_list; in usbgem_send_common()
572 if (dp->tx_free_list == NULL) { in usbgem_send_common()
617 dp->tx_free_list = req; in usbgem_send_common()
960 req->bulk_client_private = (usb_opaque_t)dp->tx_free_list; in usbgem_bulkout_cb()
[all …]
H A Dusbgem.h125 usb_bulk_req_t *tx_free_list; member