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

Function ixgbevf_dev_reset

dpdk/drivers/net/ixgbe/ixgbe_ethdev.c:5664–5676  ·  view source on GitHub ↗

* Reset VF device */

Source from the content-addressed store, hash-verified

5662 * Reset VF device
5663 */
5664static int
5665ixgbevf_dev_reset(struct rte_eth_dev *dev)
5666{
5667 int ret;
5668
5669 ret = eth_ixgbevf_dev_uninit(dev);
5670 if (ret)
5671 return ret;
5672
5673 ret = eth_ixgbevf_dev_init(dev);
5674
5675 return ret;
5676}
5677
5678static void ixgbevf_set_vfta_all(struct rte_eth_dev *dev, bool on)
5679{

Callers

nothing calls this directly

Calls 2

eth_ixgbevf_dev_uninitFunction · 0.85
eth_ixgbevf_dev_initFunction · 0.85

Tested by

no test coverage detected