aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390
diff options
context:
space:
mode:
authorSebastian Ott <sebott@linux.ibm.com>2018-12-21 15:14:20 +0100
committerBjorn Helgaas <bhelgaas@google.com>2019-01-01 19:06:48 -0600
commit7dc20ab1b9c431b792a6fe1e78baf36b63edc5e3 (patch)
tree82d63f1f98913ecfe74f46e4cf8ee3792146711c /arch/s390
parentPCI/IOV: Add flag so platforms can skip VF scanning (diff)
downloadlinux-dev-7dc20ab1b9c431b792a6fe1e78baf36b63edc5e3.tar.xz
linux-dev-7dc20ab1b9c431b792a6fe1e78baf36b63edc5e3.zip
s390/pci: skip VF scanning
Set the flag to skip scanning for VFs after SR-IOV enablement. VF creation will be triggered by the hotplug code. Signed-off-by: Sebastian Ott <sebott@linux.ibm.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'arch/s390')
-rw-r--r--arch/s390/pci/pci.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/s390/pci/pci.c b/arch/s390/pci/pci.c
index 9f6f392a4461..4266a4de3160 100644
--- a/arch/s390/pci/pci.c
+++ b/arch/s390/pci/pci.c
@@ -651,6 +651,9 @@ int pcibios_add_device(struct pci_dev *pdev)
struct resource *res;
int i;
+ if (pdev->is_physfn)
+ pdev->no_vf_scan = 1;
+
pdev->dev.groups = zpci_attr_groups;
pdev->dev.dma_ops = &s390_pci_dma_ops;
zpci_map_resources(pdev);