| 488 | } |
| 489 | |
| 490 | int |
| 491 | ionic_dev_allmulticast_enable(struct rte_eth_dev *eth_dev) |
| 492 | { |
| 493 | struct ionic_lif *lif = IONIC_ETH_DEV_TO_LIF(eth_dev); |
| 494 | uint32_t rx_mode = lif->rx_mode; |
| 495 | |
| 496 | rx_mode |= IONIC_RX_MODE_F_ALLMULTI; |
| 497 | |
| 498 | ionic_set_rx_mode(lif, rx_mode); |
| 499 | |
| 500 | return 0; |
| 501 | } |
| 502 | |
| 503 | int |
| 504 | ionic_dev_allmulticast_disable(struct rte_eth_dev *eth_dev) |
nothing calls this directly
no test coverage detected