* Reset VF device */
| 800 | * Reset VF device |
| 801 | */ |
| 802 | static int |
| 803 | txgbevf_dev_reset(struct rte_eth_dev *dev) |
| 804 | { |
| 805 | int ret; |
| 806 | |
| 807 | ret = eth_txgbevf_dev_uninit(dev); |
| 808 | if (ret) |
| 809 | return ret; |
| 810 | |
| 811 | ret = eth_txgbevf_dev_init(dev); |
| 812 | |
| 813 | return ret; |
| 814 | } |
| 815 | |
| 816 | static void txgbevf_set_vfta_all(struct rte_eth_dev *dev, bool on) |
| 817 | { |
nothing calls this directly
no test coverage detected