Message ID | 20181218101650.23089-2-sebott@linux.ibm.com (mailing list archive) |
---|---|
State | New, archived |
Delegated to: | Bjorn Helgaas |
Headers | show |
Series | [1/2] PCI/IOV: provide flag to skip VF scanning | expand |
On Tue, Dec 18, 2018 at 11:16:50AM +0100, Sebastian Ott wrote: > Set the flag to skip scanning for VFs after SRIOV enablement. > VF creation will be triggered by the hotplug code. > > Signed-off-by: Sebastian Ott <sebott@linux.ibm.com> Looks good, Reviewed-by: Christoph Hellwig <hch@lst.de>
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);
Set the flag to skip scanning for VFs after SRIOV enablement. VF creation will be triggered by the hotplug code. Signed-off-by: Sebastian Ott <sebott@linux.ibm.com> --- arch/s390/pci/pci.c | 3 +++ 1 file changed, 3 insertions(+)