| 172 | } |
| 173 | |
| 174 | static int enicpmd_dev_tx_queue_start(struct rte_eth_dev *eth_dev, |
| 175 | uint16_t queue_idx) |
| 176 | { |
| 177 | struct enic *enic = pmd_priv(eth_dev); |
| 178 | |
| 179 | ENICPMD_FUNC_TRACE(); |
| 180 | |
| 181 | enic_start_wq(enic, queue_idx); |
| 182 | |
| 183 | return 0; |
| 184 | } |
| 185 | |
| 186 | static int enicpmd_dev_tx_queue_stop(struct rte_eth_dev *eth_dev, |
| 187 | uint16_t queue_idx) |
nothing calls this directly
no test coverage detected