mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 04:10:18 +09:00
PCI: Ignore BAR updates on virtual functions
[ Upstream commit63880b230a] VF BARs are read-only zero, so updating VF BARs will not have any effect. See the SR-IOV spec r1.1, sec 3.4.1.11. We already ignore these updates because of70675e0b6a("PCI: Don't try to restore VF BARs"); this merely restructures it slightly to make it easier to split updates for standard and SR-IOV BARs. Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Reviewed-by: Gavin Shan <gwshan@linux.vnet.ibm.com> Signed-off-by: Sasha Levin <alexander.levin@verizon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
74cce811a4
commit
3d58444dea
@@ -564,10 +564,6 @@ static void pci_restore_bars(struct pci_dev *dev)
|
|||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
/* Per SR-IOV spec 3.4.1.11, VF BARs are RO zero */
|
|
||||||
if (dev->is_virtfn)
|
|
||||||
return;
|
|
||||||
|
|
||||||
for (i = 0; i < PCI_BRIDGE_RESOURCES; i++)
|
for (i = 0; i < PCI_BRIDGE_RESOURCES; i++)
|
||||||
pci_update_resource(dev, i);
|
pci_update_resource(dev, i);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -34,10 +34,9 @@ static void pci_std_update_resource(struct pci_dev *dev, int resno)
|
|||||||
int reg;
|
int reg;
|
||||||
struct resource *res = dev->resource + resno;
|
struct resource *res = dev->resource + resno;
|
||||||
|
|
||||||
if (dev->is_virtfn) {
|
/* Per SR-IOV spec 3.4.1.11, VF BARs are RO zero */
|
||||||
dev_warn(&dev->dev, "can't update VF BAR%d\n", resno);
|
if (dev->is_virtfn)
|
||||||
return;
|
return;
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Ignore resources for unimplemented BARs and unused resource slots
|
* Ignore resources for unimplemented BARs and unused resource slots
|
||||||
|
|||||||
Reference in New Issue
Block a user