mirror of https://gitee.com/openkylin/linux.git
be2net: Rework PCIe error report log messaging
Currently we log a message whenever pcie_enable_error_reporting fails. The message clutters up logs, especially when we don't support it for VFs. Instead enable this only for PFs and log a message when the call succeeds. Signed-off-by: Ajit Khaparde <ajit.khaparde@emulex.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c1b1203d65
commit
ea58c18062
|
@ -4459,9 +4459,11 @@ static int be_probe(struct pci_dev *pdev, const struct pci_device_id *pdev_id)
|
|||
}
|
||||
}
|
||||
|
||||
if (be_physfn(adapter)) {
|
||||
status = pci_enable_pcie_error_reporting(pdev);
|
||||
if (status)
|
||||
dev_info(&pdev->dev, "Could not use PCIe error reporting\n");
|
||||
if (!status)
|
||||
dev_info(&pdev->dev, "PCIe error reporting enabled\n");
|
||||
}
|
||||
|
||||
status = be_ctrl_init(adapter);
|
||||
if (status)
|
||||
|
|
Loading…
Reference in New Issue