drivers/net: fix device configuration
dev_flags is wrongly overwritten with RTE_ETH_DEV_DETACHABLE value in drivers after rte_eth_copy_pci_info(). Previous values of the dev_flags set in rte_eth_copy_pci_info(), like RTE_ETH_DEV_INTR_LSC, are get lost. That will fail the device configuration. Fix by preventing dev_flags overwritten. Fixes: 22dda618c00c ("pci: separate detaching ethernet ports from PCI devices") Signed-off-by: Qi Zhang <qi.z.zhang@intel.com> Signed-off-by: Jeff Guo <jia.guo@intel.com>
This commit is contained in:
parent
47c6782344
commit
45f4dd1adc
@ -1087,7 +1087,8 @@ bnxt_dev_init(struct rte_eth_dev *eth_dev)
|
|||||||
RTE_LOG(INFO, PMD, "%s", bnxt_version);
|
RTE_LOG(INFO, PMD, "%s", bnxt_version);
|
||||||
|
|
||||||
rte_eth_copy_pci_info(eth_dev, pci_dev);
|
rte_eth_copy_pci_info(eth_dev, pci_dev);
|
||||||
eth_dev->data->dev_flags = RTE_ETH_DEV_DETACHABLE;
|
eth_dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
|
||||||
|
|
||||||
bp = eth_dev->data->dev_private;
|
bp = eth_dev->data->dev_private;
|
||||||
|
|
||||||
if (bnxt_vf_pciid(pci_dev->id.device_id))
|
if (bnxt_vf_pciid(pci_dev->id.device_id))
|
||||||
|
@ -339,7 +339,7 @@ eth_em_dev_init(struct rte_eth_dev *eth_dev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
rte_eth_copy_pci_info(eth_dev, pci_dev);
|
rte_eth_copy_pci_info(eth_dev, pci_dev);
|
||||||
eth_dev->data->dev_flags = RTE_ETH_DEV_DETACHABLE;
|
eth_dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
|
||||||
|
|
||||||
hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
|
hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
|
||||||
hw->device_id = pci_dev->id.device_id;
|
hw->device_id = pci_dev->id.device_id;
|
||||||
|
@ -777,7 +777,7 @@ eth_igb_dev_init(struct rte_eth_dev *eth_dev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
rte_eth_copy_pci_info(eth_dev, pci_dev);
|
rte_eth_copy_pci_info(eth_dev, pci_dev);
|
||||||
eth_dev->data->dev_flags = RTE_ETH_DEV_DETACHABLE;
|
eth_dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
|
||||||
|
|
||||||
hw->hw_addr= (void *)pci_dev->mem_resource[0].addr;
|
hw->hw_addr= (void *)pci_dev->mem_resource[0].addr;
|
||||||
|
|
||||||
@ -986,7 +986,7 @@ eth_igbvf_dev_init(struct rte_eth_dev *eth_dev)
|
|||||||
|
|
||||||
pci_dev = E1000_DEV_TO_PCI(eth_dev);
|
pci_dev = E1000_DEV_TO_PCI(eth_dev);
|
||||||
rte_eth_copy_pci_info(eth_dev, pci_dev);
|
rte_eth_copy_pci_info(eth_dev, pci_dev);
|
||||||
eth_dev->data->dev_flags = RTE_ETH_DEV_DETACHABLE;
|
eth_dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
|
||||||
|
|
||||||
hw->device_id = pci_dev->id.device_id;
|
hw->device_id = pci_dev->id.device_id;
|
||||||
hw->vendor_id = pci_dev->id.vendor_id;
|
hw->vendor_id = pci_dev->id.vendor_id;
|
||||||
|
@ -2858,7 +2858,7 @@ eth_fm10k_dev_init(struct rte_eth_dev *dev)
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
rte_eth_copy_pci_info(dev, pdev);
|
rte_eth_copy_pci_info(dev, pdev);
|
||||||
dev->data->dev_flags = RTE_ETH_DEV_DETACHABLE;
|
dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
|
||||||
|
|
||||||
macvlan = FM10K_DEV_PRIVATE_TO_MACVLAN(dev->data->dev_private);
|
macvlan = FM10K_DEV_PRIVATE_TO_MACVLAN(dev->data->dev_private);
|
||||||
memset(macvlan, 0, sizeof(*macvlan));
|
memset(macvlan, 0, sizeof(*macvlan));
|
||||||
|
@ -1045,7 +1045,7 @@ eth_i40e_dev_init(struct rte_eth_dev *dev)
|
|||||||
intr_handle = &pci_dev->intr_handle;
|
intr_handle = &pci_dev->intr_handle;
|
||||||
|
|
||||||
rte_eth_copy_pci_info(dev, pci_dev);
|
rte_eth_copy_pci_info(dev, pci_dev);
|
||||||
dev->data->dev_flags = RTE_ETH_DEV_DETACHABLE;
|
dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
|
||||||
|
|
||||||
pf->adapter = I40E_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
|
pf->adapter = I40E_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
|
||||||
pf->adapter->eth_dev = dev;
|
pf->adapter->eth_dev = dev;
|
||||||
|
@ -1478,7 +1478,7 @@ i40evf_dev_init(struct rte_eth_dev *eth_dev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
rte_eth_copy_pci_info(eth_dev, pci_dev);
|
rte_eth_copy_pci_info(eth_dev, pci_dev);
|
||||||
eth_dev->data->dev_flags = RTE_ETH_DEV_DETACHABLE;
|
eth_dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
|
||||||
|
|
||||||
hw->vendor_id = pci_dev->id.vendor_id;
|
hw->vendor_id = pci_dev->id.vendor_id;
|
||||||
hw->device_id = pci_dev->id.device_id;
|
hw->device_id = pci_dev->id.device_id;
|
||||||
|
@ -1173,7 +1173,7 @@ eth_ixgbe_dev_init(struct rte_eth_dev *eth_dev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
rte_eth_copy_pci_info(eth_dev, pci_dev);
|
rte_eth_copy_pci_info(eth_dev, pci_dev);
|
||||||
eth_dev->data->dev_flags = RTE_ETH_DEV_DETACHABLE;
|
eth_dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
|
||||||
|
|
||||||
/* Vendor and Device ID need to be set before init of shared code */
|
/* Vendor and Device ID need to be set before init of shared code */
|
||||||
hw->device_id = pci_dev->id.device_id;
|
hw->device_id = pci_dev->id.device_id;
|
||||||
@ -1627,7 +1627,7 @@ eth_ixgbevf_dev_init(struct rte_eth_dev *eth_dev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
rte_eth_copy_pci_info(eth_dev, pci_dev);
|
rte_eth_copy_pci_info(eth_dev, pci_dev);
|
||||||
eth_dev->data->dev_flags = RTE_ETH_DEV_DETACHABLE;
|
eth_dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
|
||||||
|
|
||||||
hw->device_id = pci_dev->id.device_id;
|
hw->device_id = pci_dev->id.device_id;
|
||||||
hw->vendor_id = pci_dev->id.vendor_id;
|
hw->vendor_id = pci_dev->id.vendor_id;
|
||||||
|
@ -2465,7 +2465,7 @@ nfp_net_init(struct rte_eth_dev *eth_dev)
|
|||||||
|
|
||||||
pci_dev = RTE_DEV_TO_PCI(eth_dev->device);
|
pci_dev = RTE_DEV_TO_PCI(eth_dev->device);
|
||||||
rte_eth_copy_pci_info(eth_dev, pci_dev);
|
rte_eth_copy_pci_info(eth_dev, pci_dev);
|
||||||
eth_dev->data->dev_flags = RTE_ETH_DEV_DETACHABLE;
|
eth_dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
|
||||||
|
|
||||||
hw->device_id = pci_dev->id.device_id;
|
hw->device_id = pci_dev->id.device_id;
|
||||||
hw->vendor_id = pci_dev->id.vendor_id;
|
hw->vendor_id = pci_dev->id.vendor_id;
|
||||||
|
@ -250,7 +250,7 @@ eth_vmxnet3_dev_init(struct rte_eth_dev *eth_dev)
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
rte_eth_copy_pci_info(eth_dev, pci_dev);
|
rte_eth_copy_pci_info(eth_dev, pci_dev);
|
||||||
eth_dev->data->dev_flags = RTE_ETH_DEV_DETACHABLE;
|
eth_dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
|
||||||
|
|
||||||
/* Vendor and Device ID need to be set before init of shared code */
|
/* Vendor and Device ID need to be set before init of shared code */
|
||||||
hw->device_id = pci_dev->id.device_id;
|
hw->device_id = pci_dev->id.device_id;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user