[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] x86/IRQ: consolidate IRQ disabling when acquiring vector lock
# HG changeset patch # User Jan Beulich <jbeulich@xxxxxxxx> # Date 1320337721 -3600 # Node ID 801ca6c0fbfa07e12c10c3079fc60cfb47dd0e3b # Parent 6928172f7ded3c417ecba396b764ce322ecb4b92 x86/IRQ: consolidate IRQ disabling when acquiring vector lock __assign_irq_vector() doesn't need to disable interrupts (its callers are required to when acquiring the lock), and set_desc_affinity() can use the normal spin lock primitives. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Acked-by: Keir Fraser <keir@xxxxxxx> Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- diff -r 6928172f7ded -r 801ca6c0fbfa xen/arch/x86/irq.c --- a/xen/arch/x86/irq.c Thu Nov 03 17:27:38 2011 +0100 +++ b/xen/arch/x86/irq.c Thu Nov 03 17:28:41 2011 +0100 @@ -429,7 +429,6 @@ static int current_vector = FIRST_DYNAMIC_VECTOR, current_offset = 0; unsigned int old_vector; int cpu, err; - unsigned long flags; cpumask_t tmp_mask; vmask_t *irq_used_vectors = NULL; @@ -493,7 +492,6 @@ /* Found one! */ current_vector = vector; current_offset = offset; - local_irq_save(flags); if (old_vector) { desc->arch.move_in_progress = 1; cpumask_copy(desc->arch.old_cpu_mask, desc->arch.cpu_mask); @@ -521,7 +519,6 @@ } err = 0; - local_irq_restore(flags); break; } return err; @@ -720,11 +717,9 @@ irq = desc->irq; - local_irq_save(flags); - lock_vector_lock(); + spin_lock_irqsave(&vector_lock, flags); ret = __assign_irq_vector(irq, desc, mask); - unlock_vector_lock(); - local_irq_restore(flags); + spin_unlock_irqrestore(&vector_lock, flags); if (ret < 0) return BAD_APICID; _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |