mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-20 16:30:53 +00:00
GenWQE: Check return code of pci_sriov_enable
Forgetting to check this, can lead to problems on systems which do not support SRIOV. Signed-off-by: Frank Haverkamp <haver@linux.vnet.ibm.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2d880ccfa9
commit
bc407dd319
@ -1320,11 +1320,14 @@ static void genwqe_err_resume(struct pci_dev *pci_dev)
|
||||
|
||||
static int genwqe_sriov_configure(struct pci_dev *dev, int numvfs)
|
||||
{
|
||||
int rc;
|
||||
struct genwqe_dev *cd = dev_get_drvdata(&dev->dev);
|
||||
|
||||
if (numvfs > 0) {
|
||||
genwqe_setup_vf_jtimer(cd);
|
||||
pci_enable_sriov(dev, numvfs);
|
||||
rc = pci_enable_sriov(dev, numvfs);
|
||||
if (rc < 0)
|
||||
return rc;
|
||||
return numvfs;
|
||||
}
|
||||
if (numvfs == 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user