| 1357 | } |
| 1358 | |
| 1359 | static int |
| 1360 | eth_ixgbe_dev_uninit(struct rte_eth_dev *eth_dev) |
| 1361 | { |
| 1362 | PMD_INIT_FUNC_TRACE(); |
| 1363 | |
| 1364 | if (rte_eal_process_type() != RTE_PROC_PRIMARY) |
| 1365 | return 0; |
| 1366 | |
| 1367 | ixgbe_dev_close(eth_dev); |
| 1368 | |
| 1369 | return 0; |
| 1370 | } |
| 1371 | |
| 1372 | static int ixgbe_ntuple_filter_uninit(struct rte_eth_dev *eth_dev) |
| 1373 | { |
no test coverage detected