| 592 | } |
| 593 | |
| 594 | static int |
| 595 | eth_dev_configure_mp(uint16_t port_id, uint16_t nb_rx_q, uint16_t nb_tx_q, |
| 596 | const struct rte_eth_conf *dev_conf) |
| 597 | { |
| 598 | if (is_proc_primary()) |
| 599 | return rte_eth_dev_configure(port_id, nb_rx_q, nb_tx_q, |
| 600 | dev_conf); |
| 601 | return 0; |
| 602 | } |
| 603 | |
| 604 | static int |
| 605 | change_bonding_member_port_status(portid_t bond_pid, bool is_stop) |
no test coverage detected