diff options
author | Sebastian Ott <sebott@linux.ibm.com> | 2018-12-21 15:14:20 +0100 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2019-01-01 19:06:48 -0600 |
commit | 7dc20ab1b9c431b792a6fe1e78baf36b63edc5e3 (patch) | |
tree | 82d63f1f98913ecfe74f46e4cf8ee3792146711c /arch/s390/pci | |
parent | aff68a5a621e2569d126b817d0d42f658df524bf (diff) | |
download | linux-7dc20ab1b9c431b792a6fe1e78baf36b63edc5e3.tar.bz2 |
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/pci')
-rw-r--r-- | arch/s390/pci/pci.c | 3 |
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); |