]> Git Repo - J-linux.git/commitdiff
xen: Remove unnecessary BUG_ON from __unbind_from_irq()
authorBoris Ostrovsky <[email protected]>
Thu, 21 Jun 2018 17:29:44 +0000 (13:29 -0400)
committerJuergen Gross <[email protected]>
Fri, 22 Jun 2018 06:32:52 +0000 (08:32 +0200)
Commit 910f8befdf5b ("xen/pirq: fix error path cleanup when binding
MSIs") fixed a couple of errors in error cleanup path of
xen_bind_pirq_msi_to_irq(). This cleanup allowed a call to
__unbind_from_irq() with an unbound irq, which would result in
triggering the BUG_ON there.

Since there is really no reason for the BUG_ON (xen_free_irq() can
operate on unbound irqs) we can remove it.

Reported-by: Ben Hutchings <[email protected]>
Signed-off-by: Boris Ostrovsky <[email protected]>
Cc: [email protected]
Reviewed-by: Juergen Gross <[email protected]>
Signed-off-by: Juergen Gross <[email protected]>
drivers/xen/events/events_base.c

index 762378f1811cc9069dc6171edb55aaa3610b82fa..08e4af04d6f2c32850a049a83721933a82883b8c 100644 (file)
@@ -628,8 +628,6 @@ static void __unbind_from_irq(unsigned int irq)
                xen_irq_info_cleanup(info);
        }
 
-       BUG_ON(info_for_irq(irq)->type == IRQT_UNBOUND);
-
        xen_free_irq(irq);
 }
 
This page took 0.051519 seconds and 4 git commands to generate.