| 689 | } |
| 690 | |
| 691 | static int |
| 692 | eth_dev_set_mtu_mp(uint16_t port_id, uint16_t mtu) |
| 693 | { |
| 694 | if (is_proc_primary()) |
| 695 | return rte_eth_dev_set_mtu(port_id, mtu); |
| 696 | |
| 697 | return 0; |
| 698 | } |
| 699 | |
| 700 | /* Forward function declarations */ |
| 701 | static void setup_attached_port(portid_t pi); |
no test coverage detected