| 1000 | } |
| 1001 | |
| 1002 | static int |
| 1003 | eth_igbvf_dev_uninit(struct rte_eth_dev *eth_dev) |
| 1004 | { |
| 1005 | PMD_INIT_FUNC_TRACE(); |
| 1006 | |
| 1007 | if (rte_eal_process_type() != RTE_PROC_PRIMARY) |
| 1008 | return 0; |
| 1009 | |
| 1010 | igbvf_dev_close(eth_dev); |
| 1011 | |
| 1012 | return 0; |
| 1013 | } |
| 1014 | |
| 1015 | static int eth_igb_pci_probe(struct rte_pci_driver *pci_drv __rte_unused, |
| 1016 | struct rte_pci_device *pci_dev) |
nothing calls this directly
no test coverage detected