MCPcopy Create free account
hub / github.com/F-Stack/f-stack / ionic_dev_promiscuous_disable

Function ionic_dev_promiscuous_disable

dpdk/drivers/net/ionic/ionic_lif.c:477–488  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

475}
476
477int
478ionic_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
490int
491ionic_dev_allmulticast_enable(struct rte_eth_dev *eth_dev)

Callers

nothing calls this directly

Calls 1

ionic_set_rx_modeFunction · 0.85

Tested by

no test coverage detected