| 460 | } |
| 461 | |
| 462 | int |
| 463 | ionic_dev_promiscuous_enable(struct rte_eth_dev *eth_dev) |
| 464 | { |
| 465 | struct ionic_lif *lif = IONIC_ETH_DEV_TO_LIF(eth_dev); |
| 466 | uint32_t rx_mode = lif->rx_mode; |
| 467 | |
| 468 | IONIC_PRINT_CALL(); |
| 469 | |
| 470 | rx_mode |= IONIC_RX_MODE_F_PROMISC; |
| 471 | |
| 472 | ionic_set_rx_mode(lif, rx_mode); |
| 473 | |
| 474 | return 0; |
| 475 | } |
| 476 | |
| 477 | int |
| 478 | ionic_dev_promiscuous_disable(struct rte_eth_dev *eth_dev) |
nothing calls this directly
no test coverage detected