* Reset VF device */
| 5662 | * Reset VF device |
| 5663 | */ |
| 5664 | static int |
| 5665 | ixgbevf_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 | |
| 5678 | static void ixgbevf_set_vfta_all(struct rte_eth_dev *dev, bool on) |
| 5679 | { |
nothing calls this directly
no test coverage detected