On 02/26/2018 12:36 PM, Amit Shah wrote:
> When an MSI descriptor was not available, the error path would try to
> unbind an irq that was never acquired - potentially unbinding an
> unrelated irq.
>
> Fixes: 4892c9b4ada9f9 ("xen: add support for MSI message groups")
> Reported-by: Hooman Mirhadi <mirha...@amazon.com>
> CC: <sta...@vger.kernel.org>
> CC: Roger Pau Monné <roger....@citrix.com>
> CC: David Vrabel <david.vra...@citrix.com>
> CC: Boris Ostrovsky <boris.ostrov...@oracle.com>
> CC: Eduardo Valentin <edu...@amazon.com>
> CC: Juergen Gross <jgr...@suse.com>
> CC: Thomas Gleixner <t...@linutronix.de>
> CC: "K. Y. Srinivasan" <k...@microsoft.com>
> CC: Liu Shuo <shuo.a....@intel.com>
> CC: Anoob Soman <anoob.so...@citrix.com>
> Signed-off-by: Amit Shah <a...@amazon.com>
> ---
>  drivers/xen/events/events_base.c | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/drivers/xen/events/events_base.c 
> b/drivers/xen/events/events_base.c
> index 1ab4bd1..b6b8b29 100644
> --- a/drivers/xen/events/events_base.c
> +++ b/drivers/xen/events/events_base.c
> @@ -749,6 +749,7 @@ int xen_bind_pirq_msi_to_irq(struct pci_dev *dev, struct 
> msi_desc *msidesc,
>       }
>  
>       ret = irq_set_msi_desc(irq, msidesc);
> +     i--;
>       if (ret < 0)
>               goto error_irq;

We really only need to do this in case of an error.

(And this patch needs to go to stable trees as well.)

Thanks
-boris


Reply via email to