/* Find eth dev allocated */
eth_dev = rte_eth_dev_allocated(pci_dev->device.name);
- if (!eth_dev)
+ if (!eth_dev) {
+ /* Ignore if ethdev is in mid of detach state in secondary */
+ if (rte_eal_process_type() != RTE_PROC_PRIMARY)
+ return 0;
return -ENOENT;
+ }
if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
/* Setup callbacks for secondary process */
/* Find eth dev allocated */
eth_dev = rte_eth_dev_allocated(pci_dev->device.name);
- if (!eth_dev)
+ if (!eth_dev) {
+ /* Ignore if ethdev is in mid of detach state in secondary */
+ if (rte_eal_process_type() != RTE_PROC_PRIMARY)
+ return 0;
return -ENOENT;
+ }
if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
/* Setup callbacks for secondary process */
struct rte_eth_fc_conf fc_conf;
int rc, i;
- /* Disable switch hdr pkind */
- roc_nix_switch_hdr_set(&dev->nix, 0, 0, 0, 0);
-
plt_free(eth_dev->security_ctx);
eth_dev->security_ctx = NULL;
if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;
+ /* Disable switch hdr pkind */
+ roc_nix_switch_hdr_set(&dev->nix, 0, 0, 0, 0);
+
/* Clear the flag since we are closing down */
dev->configured = 0;
/* Check if this device is hosting common resource */
nix = roc_idev_npa_nix_get();
- if (nix->pci_dev != pci_dev)
+ if (!nix || nix->pci_dev != pci_dev)
return 0;
/* Try nix fini now */