| 167 | } |
| 168 | |
| 169 | static int |
| 170 | rxq_intr_enable(struct mana_priv *priv) |
| 171 | { |
| 172 | const struct rte_eth_intr_conf *const intr_conf = |
| 173 | &priv->dev_data->dev_conf.intr_conf; |
| 174 | |
| 175 | if (!intr_conf->rxq) |
| 176 | return 0; |
| 177 | |
| 178 | return rx_intr_vec_enable(priv); |
| 179 | } |
| 180 | |
| 181 | static int |
| 182 | mana_dev_start(struct rte_eth_dev *dev) |
no test coverage detected