| 184 | } |
| 185 | |
| 186 | static int enicpmd_dev_tx_queue_stop(struct rte_eth_dev *eth_dev, |
| 187 | uint16_t queue_idx) |
| 188 | { |
| 189 | int ret; |
| 190 | struct enic *enic = pmd_priv(eth_dev); |
| 191 | |
| 192 | ENICPMD_FUNC_TRACE(); |
| 193 | |
| 194 | ret = enic_stop_wq(enic, queue_idx); |
| 195 | if (ret) |
| 196 | dev_err(enic, "error in stopping wq %d\n", queue_idx); |
| 197 | |
| 198 | return ret; |
| 199 | } |
| 200 | |
| 201 | static int enicpmd_dev_rx_queue_start(struct rte_eth_dev *eth_dev, |
| 202 | uint16_t queue_idx) |
nothing calls this directly
no test coverage detected