| 130 | } |
| 131 | |
| 132 | static void |
| 133 | sfc_repr_tx_queue_stop(void *queue) |
| 134 | { |
| 135 | struct sfc_repr_txq *txq = queue; |
| 136 | |
| 137 | if (txq == NULL) |
| 138 | return; |
| 139 | |
| 140 | rte_ring_reset(txq->ring); |
| 141 | } |
| 142 | |
| 143 | static uint16_t |
| 144 | sfc_repr_rx_burst(void *rx_queue, struct rte_mbuf **rx_pkts, uint16_t nb_pkts) |
no test coverage detected