diff options
author | Hariprasad Shenai <hariprasad@chelsio.com> | 2014-08-06 07:40:59 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-08-06 16:47:16 -0400 |
commit | 8e1e605902d07c0ce1c3331a8d0a12a6c9e5d7fb (patch) | |
tree | 1daed2897c52636011b350769c5a89686bec0e84 /drivers/net | |
parent | 140c55d4b59581680dc8963612bdc79d19f7bef6 (diff) |
cxgb4: Fix for SR-IOV VF initialization
Commit 35b1de5 ("rdma/cxgb4: Fixes cxgb4 probe failure in VM when PF is exposed
through PCI Passthrough") introduced a regression, where VF failed to
initialize for Physical function 0 to Physical Function 3. In the above
commit, we removed the code which used to enable sriov for PF0 to PF3. Now
adding it back to get sriov working.
V2:
Removed SRIOV loop for PF[0..3] to instantiate the VF's as per David Miller's
comment
Signed-off-by: Hariprasad Shenai <hariprasad@chelsio.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c b/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c index 4247356c16ff..1a162d21d8ac 100644 --- a/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c +++ b/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c | |||
@@ -6527,11 +6527,9 @@ static int init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
6527 | 6527 | ||
6528 | /* We control everything through one PF */ | 6528 | /* We control everything through one PF */ |
6529 | func = SOURCEPF_GET(readl(adapter->regs + PL_WHOAMI)); | 6529 | func = SOURCEPF_GET(readl(adapter->regs + PL_WHOAMI)); |
6530 | if ((pdev->device == 0xa000 && func != 0) || | 6530 | if (func != ent->driver_data) { |
6531 | func != ent->driver_data) { | ||
6532 | pci_save_state(pdev); /* to restore SR-IOV later */ | 6531 | pci_save_state(pdev); /* to restore SR-IOV later */ |
6533 | err = 0; | 6532 | goto sriov; |
6534 | goto out_unmap_bar0; | ||
6535 | } | 6533 | } |
6536 | 6534 | ||
6537 | adapter->pdev = pdev; | 6535 | adapter->pdev = pdev; |
@@ -6697,6 +6695,7 @@ static int init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
6697 | if (is_offload(adapter)) | 6695 | if (is_offload(adapter)) |
6698 | attach_ulds(adapter); | 6696 | attach_ulds(adapter); |
6699 | 6697 | ||
6698 | sriov: | ||
6700 | #ifdef CONFIG_PCI_IOV | 6699 | #ifdef CONFIG_PCI_IOV |
6701 | if (func < ARRAY_SIZE(num_vf) && num_vf[func] > 0) | 6700 | if (func < ARRAY_SIZE(num_vf) && num_vf[func] > 0) |
6702 | if (pci_enable_sriov(pdev, num_vf[func]) == 0) | 6701 | if (pci_enable_sriov(pdev, num_vf[func]) == 0) |