| 755 | } |
| 756 | |
| 757 | static void |
| 758 | sfc_repr_tx_queue_release(struct rte_eth_dev *dev, uint16_t tx_queue_id) |
| 759 | { |
| 760 | struct sfc_repr_shared *srs = sfc_repr_shared_by_eth_dev(dev); |
| 761 | struct sfc_repr_txq *txq = dev->data->tx_queues[tx_queue_id]; |
| 762 | |
| 763 | sfc_repr_proxy_del_txq(srs->pf_port_id, srs->repr_id, tx_queue_id); |
| 764 | rte_ring_free(txq->ring); |
| 765 | rte_free(txq); |
| 766 | } |
| 767 | |
| 768 | static void |
| 769 | sfc_repr_close(struct sfc_repr *sr) |
no test coverage detected