timer: remove stray local_irq_enable()
authorDavid Vrabel <david.vrabel@citrix.com>
Thu, 6 Sep 2012 14:39:01 +0000 (16:39 +0200)
committerDavid Vrabel <david.vrabel@citrix.com>
Thu, 6 Sep 2012 14:39:01 +0000 (16:39 +0200)
migrate_timers_from_cpu() has a stray local_irq_enable() that does
nothing (it's immediately after a spin_unlock_irq()) and has no
matching local_irq_disable().

Signed-off-by: David Vrabel <david.vrabel@citrix.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Keir Fraser <keir@xen.org>
Committed-by: Jan Beulich <jbeulich@suse.com>
xen/common/timer.c

index 0dd24764834eeb1ef37dacdc139aa0d644b4e29c..39de52dc359022d1d9f34473a69f47dd704d330c 100644 (file)
@@ -587,7 +587,6 @@ static void migrate_timers_from_cpu(unsigned int old_cpu)
 
     spin_unlock(&old_ts->lock);
     spin_unlock_irq(&new_ts->lock);
-    local_irq_enable();
 
     if ( notify )
         cpu_raise_softirq(new_cpu, TIMER_SOFTIRQ);