OSDN Git Service

nfp: fix error return code in nfp_pci_probe()
authorWei Yongjun <weiyongjun1@huawei.com>
Tue, 23 Jan 2018 02:10:27 +0000 (02:10 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 23 Jan 2018 15:43:28 +0000 (10:43 -0500)
Fix to return error code -EINVAL instead of 0 when num_vfs above
limit_vfs, as done elsewhere in this function.

Fixes: 0dc786219186 ("nfp: handle SR-IOV already enabled when driver is probing")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Acked-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/netronome/nfp/nfp_main.c

index c5b9104..cc570bb 100644 (file)
@@ -518,6 +518,7 @@ static int nfp_pci_probe(struct pci_dev *pdev,
                dev_err(&pdev->dev,
                        "Error: %d VFs already enabled, but loaded FW can only support %d\n",
                        pf->num_vfs, pf->limit_vfs);
+               err = -EINVAL;
                goto err_fw_unload;
        }