| 661 | } |
| 662 | |
| 663 | static void |
| 664 | sfc_repr_rx_queue_release(struct rte_eth_dev *dev, uint16_t rx_queue_id) |
| 665 | { |
| 666 | struct sfc_repr_shared *srs = sfc_repr_shared_by_eth_dev(dev); |
| 667 | struct sfc_repr_rxq *rxq = dev->data->rx_queues[rx_queue_id]; |
| 668 | |
| 669 | sfc_repr_proxy_del_rxq(srs->pf_port_id, srs->repr_id, rx_queue_id); |
| 670 | rte_ring_free(rxq->ring); |
| 671 | rte_free(rxq); |
| 672 | } |
| 673 | |
| 674 | static int |
| 675 | sfc_repr_tx_qcheck_conf(struct sfc_repr *sr, |
no test coverage detected