| 119 | #define sfc_repr_lock_fini(sr) RTE_SET_USED(sr) |
| 120 | |
| 121 | static void |
| 122 | sfc_repr_rx_queue_stop(void *queue) |
| 123 | { |
| 124 | struct sfc_repr_rxq *rxq = queue; |
| 125 | |
| 126 | if (rxq == NULL) |
| 127 | return; |
| 128 | |
| 129 | rte_ring_reset(rxq->ring); |
| 130 | } |
| 131 | |
| 132 | static void |
| 133 | sfc_repr_tx_queue_stop(void *queue) |
no test coverage detected