Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/io/qede/
H A Dqede_fp.c143 qede_tx_bcopy_pkt_t *bcopy_pkt; in qede_process_tx_completions() local
172 } else if (recycle_entry->bcopy_pkt != NULL) { in qede_process_tx_completions()
173 bcopy_pkt = recycle_entry->bcopy_pkt; in qede_process_tx_completions()
175 qede_put_bcopy_pkt(tx_ring, bcopy_pkt); in qede_process_tx_completions()
176 recycle_entry->bcopy_pkt = NULL; in qede_process_tx_completions()
980 qede_tx_bcopy_pkt_t *bcopy_pkt = NULL; in qede_tx_bcopy() local
988 bcopy_pkt = qede_get_bcopy_pkt(tx_ring); in qede_tx_bcopy()
989 if (bcopy_pkt == NULL) { in qede_tx_bcopy()
999 txb = bcopy_pkt->virt_addr; in qede_tx_bcopy()
1010 (void) ddi_dma_sync(bcopy_pkt->dma_handle, in qede_tx_bcopy()
[all …]
H A Dqede_main.c2502 qede_tx_bcopy_pkt_t *bcopy_pkt; in qede_free_tx_bcopy_buffers() local
2506 bcopy_pkt = &tx_ring->bcopy_list.bcopy_pool[i]; in qede_free_tx_bcopy_buffers()
2507 if(bcopy_pkt->dma_handle != NULL) in qede_free_tx_bcopy_buffers()
2508 (void) ddi_dma_unbind_handle(bcopy_pkt->dma_handle); in qede_free_tx_bcopy_buffers()
2509 if(bcopy_pkt->acc_handle != NULL) { in qede_free_tx_bcopy_buffers()
2510 ddi_dma_mem_free(&bcopy_pkt->acc_handle); in qede_free_tx_bcopy_buffers()
2511 bcopy_pkt->acc_handle = NULL; in qede_free_tx_bcopy_buffers()
2513 if(bcopy_pkt->dma_handle != NULL) { in qede_free_tx_bcopy_buffers()
2514 ddi_dma_free_handle(&bcopy_pkt->dma_handle); in qede_free_tx_bcopy_buffers()
2515 bcopy_pkt->dma_handle = NULL; in qede_free_tx_bcopy_buffers()
[all …]
H A Dqede_fp.h175 qede_tx_bcopy_pkt_t *bcopy_pkt; member