aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/irq.c
diff options
context:
space:
mode:
Diffstat (limited to 'xen/arch/x86/irq.c')
-rw-r--r--xen/arch/x86/irq.c43
1 files changed, 20 insertions, 23 deletions
diff --git a/xen/arch/x86/irq.c b/xen/arch/x86/irq.c
index b0b0c655bd..699221ae99 100644
--- a/xen/arch/x86/irq.c
+++ b/xen/arch/x86/irq.c
@@ -197,12 +197,24 @@ int create_irq(int node)
return irq;
}
-static void dynamic_irq_cleanup(unsigned int irq)
+void destroy_irq(unsigned int irq)
{
struct irq_desc *desc = irq_to_desc(irq);
unsigned long flags;
struct irqaction *action;
+ BUG_ON(!MSI_IRQ(irq));
+
+ if ( dom0 )
+ {
+ int err = irq_deny_access(dom0, irq);
+
+ if ( err )
+ printk(XENLOG_G_ERR
+ "Could not revoke Dom0 access to IRQ%u (error %d)\n",
+ irq, err);
+ }
+
spin_lock_irqsave(&desc->lock, flags);
desc->status |= IRQ_DISABLED;
desc->status &= ~IRQ_GUEST;
@@ -210,16 +222,19 @@ static void dynamic_irq_cleanup(unsigned int irq)
action = desc->action;
desc->action = NULL;
desc->msi_desc = NULL;
- desc->handler = &no_irq_type;
- desc->arch.used_vectors = NULL;
cpumask_setall(desc->affinity);
spin_unlock_irqrestore(&desc->lock, flags);
/* Wait to make sure it's not being used on another CPU */
do { smp_mb(); } while ( desc->status & IRQ_INPROGRESS );
- if (action)
- xfree(action);
+ spin_lock_irqsave(&desc->lock, flags);
+ desc->handler = &no_irq_type;
+ clear_irq_vector(irq);
+ desc->arch.used_vectors = NULL;
+ spin_unlock_irqrestore(&desc->lock, flags);
+
+ xfree(action);
}
static void __clear_irq_vector(int irq)
@@ -286,24 +301,6 @@ void clear_irq_vector(int irq)
spin_unlock_irqrestore(&vector_lock, flags);
}
-void destroy_irq(unsigned int irq)
-{
- BUG_ON(!MSI_IRQ(irq));
-
- if ( dom0 )
- {
- int err = irq_deny_access(dom0, irq);
-
- if ( err )
- printk(XENLOG_G_ERR
- "Could not revoke Dom0 access to IRQ%u (error %d)\n",
- irq, err);
- }
-
- dynamic_irq_cleanup(irq);
- clear_irq_vector(irq);
-}
-
int irq_to_vector(int irq)
{
int vector = -1;