[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen staging] vpci/msi: fix unbind loop
commit a65179dedd6415134029de00a17c218af647fb1a Author: Roger Pau Monné <roger.pau@xxxxxxxxxx> AuthorDate: Wed May 16 16:28:46 2018 +0200 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Wed May 16 16:28:46 2018 +0200 vpci/msi: fix unbind loop The current unbind loop on failure in vpci_msi_enable is wrong and will only work correctly if the initial pirq is 0. Fix this by adding a proper bound. Reported-by: Jan Beulich <jbeulich@xxxxxxxx> Signed-off-by: Roger Pau Monné <roger.pau@xxxxxxxxxx> Reviewed-by: Jan Beulich <jbeulich@xxxxxxxx> Release-acked-by: Juergen Gross <jgross@xxxxxxxx> --- xen/arch/x86/hvm/vmsi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/x86/hvm/vmsi.c b/xen/arch/x86/hvm/vmsi.c index 900d4f67d4..5ab7387d78 100644 --- a/xen/arch/x86/hvm/vmsi.c +++ b/xen/arch/x86/hvm/vmsi.c @@ -710,7 +710,7 @@ static int vpci_msi_enable(const struct pci_dev *pdev, uint32_t data, "%04x:%02x:%02x.%u: failed to bind PIRQ %u: %d\n", pdev->seg, pdev->bus, PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn), pirq + i, rc); - while ( bind.machine_irq-- ) + while ( bind.machine_irq-- > pirq ) pt_irq_destroy_bind(pdev->domain, &bind); spin_lock(&pdev->domain->event_lock); unmap_domain_pirq(pdev->domain, pirq); -- generated by git-patchbot for /home/xen/git/xen.git#staging _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |