Home
last modified time | relevance | path

Searched refs:pending_list (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/uts/common/io/ixgbe/
H A Dixgbe_tx.c133 link_list_t pending_list; in ixgbe_ring_tx() local
211 LINK_LIST_INIT(&pending_list); in ixgbe_ring_tx()
236 ret = ixgbe_tx_copy(tx_ring, &tcb, &pending_list, in ixgbe_ring_tx()
302 ret = ixgbe_tx_bind(tx_ring, &tcb, &pending_list, rptr, in ixgbe_ring_tx()
305 ret = ixgbe_tx_copy(tx_ring, &tcb, &pending_list, rptr, in ixgbe_ring_tx()
338 ixgbe_put_free_list(tx_ring, &pending_list); in ixgbe_ring_tx()
387 desc_num = ixgbe_tx_fill_ring(tx_ring, &pending_list, ctx, in ixgbe_ring_tx()
419 ixgbe_put_free_list(tx_ring, &pending_list); in ixgbe_ring_tx()
435 link_list_t *pending_list, const void *buf, size_t len) in ixgbe_tx_copy() argument
450 newtcb = ixgbe_get_free_list(tx_ring, pending_list); in ixgbe_tx_copy()
[all …]
H A Dixgbe_main.c1751 link_list_t pending_list; in ixgbe_tx_clean() local
1755 LINK_LIST_INIT(&pending_list); in ixgbe_tx_clean()
1779 LIST_PUSH_TAIL(&pending_list, &tcb->link); in ixgbe_tx_clean()
1808 ixgbe_put_free_list(tx_ring, &pending_list); in ixgbe_tx_clean()
/illumos-gate/usr/src/uts/common/io/igb/
H A Digb_tx.c116 link_list_t pending_list; in igb_tx() local
252 LINK_LIST_INIT(&pending_list); in igb_tx()
317 LIST_PUSH_TAIL(&pending_list, &tcb->link); in igb_tx()
424 desc_num = igb_tx_fill_ring(tx_ring, &pending_list, ctx, mbsize); in igb_tx()
455 tcb = (tx_control_block_t *)LIST_GET_HEAD(&pending_list); in igb_tx()
462 LIST_GET_NEXT(&pending_list, &tcb->link); in igb_tx()
468 igb_put_free_list(tx_ring, &pending_list); in igb_tx()
885 igb_tx_fill_ring(igb_tx_ring_t *tx_ring, link_list_t *pending_list, in igb_tx_fill_ring() argument
958 tcb = (tx_control_block_t *)LIST_POP_HEAD(pending_list); in igb_tx_fill_ring()
985 tcb = (tx_control_block_t *)LIST_POP_HEAD(pending_list); in igb_tx_fill_ring()
[all …]
H A Digb_main.c1726 link_list_t pending_list; in igb_tx_clean() local
1730 LINK_LIST_INIT(&pending_list); in igb_tx_clean()
1754 LIST_PUSH_TAIL(&pending_list, &tcb->link); in igb_tx_clean()
1781 igb_put_free_list(tx_ring, &pending_list); in igb_tx_clean()
/illumos-gate/usr/src/uts/common/io/e1000g/
H A De1000g_tx.c161 LIST_DESCRIBER pending_list; in e1000g_send() local
243 QUEUE_INIT_LIST(&pending_list); in e1000g_send()
362 QUEUE_PUSH_TAIL(&pending_list, &packet->Link); in e1000g_send()
415 desc_count = e1000g_fill_tx_ring(tx_ring, &pending_list, &cur_context); in e1000g_send()
446 packet = (p_tx_sw_packet_t)QUEUE_GET_HEAD(&pending_list); in e1000g_send()
451 QUEUE_GET_NEXT(&pending_list, &packet->Link); in e1000g_send()
456 QUEUE_APPEND(&tx_ring->free_list, &pending_list); in e1000g_send()
605 e1000g_fill_tx_ring(e1000g_tx_ring_t *tx_ring, LIST_DESCRIBER *pending_list, in e1000g_fill_tx_ring() argument
640 first_packet = (p_tx_sw_packet_t)QUEUE_GET_HEAD(pending_list); in e1000g_fill_tx_ring()
684 packet = (p_tx_sw_packet_t)QUEUE_GET_HEAD(pending_list); in e1000g_fill_tx_ring()
[all …]