| 475 | } |
| 476 | |
| 477 | int |
| 478 | ionic_dev_promiscuous_disable(struct rte_eth_dev *eth_dev) |
| 479 | { |
| 480 | struct ionic_lif *lif = IONIC_ETH_DEV_TO_LIF(eth_dev); |
| 481 | uint32_t rx_mode = lif->rx_mode; |
| 482 | |
| 483 | rx_mode &= ~IONIC_RX_MODE_F_PROMISC; |
| 484 | |
| 485 | ionic_set_rx_mode(lif, rx_mode); |
| 486 | |
| 487 | return 0; |
| 488 | } |
| 489 | |
| 490 | int |
| 491 | ionic_dev_allmulticast_enable(struct rte_eth_dev *eth_dev) |
nothing calls this directly
no test coverage detected