Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/io/qede/
H A Dqede_main.c2525 kmem_free(tx_ring->bcopy_list.bcopy_pool, in qede_free_tx_bcopy_buffers()
2526 tx_ring->bcopy_list.size); in qede_free_tx_bcopy_buffers()
2527 tx_ring->bcopy_list.bcopy_pool = NULL; in qede_free_tx_bcopy_buffers()
2530 mutex_destroy(&tx_ring->bcopy_list.lock); in qede_free_tx_bcopy_buffers()
2557 bcopy_list = kmem_zalloc(size, KM_SLEEP); in qede_alloc_tx_bcopy_buffers()
2558 if (bcopy_list == NULL) { in qede_alloc_tx_bcopy_buffers()
2565 tx_ring->bcopy_list.size = size; in qede_alloc_tx_bcopy_buffers()
2566 tx_ring->bcopy_list.bcopy_pool = bcopy_list; in qede_alloc_tx_bcopy_buffers()
2567 bcopy_pkt = bcopy_list; in qede_alloc_tx_bcopy_buffers()
2569 tx_ring->bcopy_list.head = 0; in qede_alloc_tx_bcopy_buffers()
[all …]
H A Dqede_fp.c79 qede_tx_bcopy_list_t *list = &tx_ring->bcopy_list; in qede_get_bcopy_pkt()
94 qede_tx_bcopy_list_t *list = &tx_ring->bcopy_list; in qede_put_bcopy_pkt()
H A Dqede.h313 qede_tx_bcopy_list_t bcopy_list; member