Home
last modified time | relevance | path

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

/Linux-v6.6/drivers/net/ethernet/google/gve/
Dgve_tx_dqo.c133 pending_packet = &tx->dqo.pending_packets[index]; in gve_alloc_pending_packet()
146 s16 index = pending_packet - tx->dqo.pending_packets; in gve_free_pending_packet()
168 &tx->dqo.pending_packets[i]; in gve_tx_clean_pending_packets()
219 kvfree(tx->dqo.pending_packets); in gve_tx_free_ring_dqo()
220 tx->dqo.pending_packets = NULL; in gve_tx_free_ring_dqo()
296 tx->dqo.pending_packets = kvcalloc(tx->dqo.num_pending_packets, in gve_tx_alloc_ring_dqo()
297 sizeof(tx->dqo.pending_packets[0]), in gve_tx_alloc_ring_dqo()
299 if (!tx->dqo.pending_packets) in gve_tx_alloc_ring_dqo()
304 tx->dqo.pending_packets[i].next = i + 1; in gve_tx_alloc_ring_dqo()
306 tx->dqo.pending_packets[tx->dqo.num_pending_packets - 1].next = -1; in gve_tx_alloc_ring_dqo()
[all …]
Dgve.h532 struct gve_tx_pending_packet_dqo *pending_packets; member