| 501 | } |
| 502 | |
| 503 | int |
| 504 | ionic_dev_allmulticast_disable(struct rte_eth_dev *eth_dev) |
| 505 | { |
| 506 | struct ionic_lif *lif = IONIC_ETH_DEV_TO_LIF(eth_dev); |
| 507 | uint32_t rx_mode = lif->rx_mode; |
| 508 | |
| 509 | rx_mode &= ~IONIC_RX_MODE_F_ALLMULTI; |
| 510 | |
| 511 | ionic_set_rx_mode(lif, rx_mode); |
| 512 | |
| 513 | return 0; |
| 514 | } |
| 515 | |
| 516 | int |
| 517 | ionic_lif_change_mtu(struct ionic_lif *lif, uint32_t new_mtu) |
nothing calls this directly
no test coverage detected