[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] PCI/passthrough: don't discard Dom0 provided information
commit c5d981c5538284726ad75c852bb4f57ee8bae916 Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Wed Feb 7 16:30:24 2018 +0100 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Wed Feb 7 16:30:24 2018 +0100 PCI/passthrough: don't discard Dom0 provided information Instead of giving, to subsequent code, the appearance of there not having been any "info" data provided, adjust the conditional guarding SR-IOV handling. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Reviewed-by: Roger Pau Monné <roger.pau@xxxxxxxxxx> --- xen/drivers/passthrough/pci.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/xen/drivers/passthrough/pci.c b/xen/drivers/passthrough/pci.c index 469dfc6..2b976ad 100644 --- a/xen/drivers/passthrough/pci.c +++ b/xen/drivers/passthrough/pci.c @@ -629,10 +629,7 @@ int pci_add_device(u16 seg, u8 bus, u8 devfn, else if ( info->is_extfn ) pdev_type = "extended function"; else - { - info = NULL; pdev_type = "device"; - } ret = xsm_resource_plug_pci(XSM_PRIV, (seg << 16) | (bus << 8) | devfn); if ( ret ) @@ -660,7 +657,8 @@ int pci_add_device(u16 seg, u8 bus, u8 devfn, if ( pdev->info.is_virtfn ) pdev->info.is_extfn = pf_is_extfn; } - else if ( !pdev->vf_rlen[0] ) + + if ( !pdev->info.is_virtfn && !pdev->vf_rlen[0] ) { unsigned int pos = pci_find_ext_capability(seg, bus, devfn, PCI_EXT_CAP_ID_SRIOV); -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |