| 134 | } |
| 135 | |
| 136 | static inline int |
| 137 | port_init(uint16_t port, struct rte_mempool *mp) |
| 138 | { |
| 139 | static const struct rte_eth_conf port_conf_default = { |
| 140 | .rxmode = { |
| 141 | .mq_mode = RTE_ETH_MQ_RX_NONE, |
| 142 | }, |
| 143 | }; |
| 144 | |
| 145 | return port_init_common(port, &port_conf_default, mp); |
| 146 | } |
| 147 | |
| 148 | static int |
| 149 | init_port_rx_intr(int num_ports) |
no test coverage detected