From 102ec7e2fc1c0290ed8207a78251ebba9157f8ce Mon Sep 17 00:00:00 2001 From: David Vrabel Date: Thu, 6 Sep 2012 16:39:01 +0200 Subject: [PATCH] timer: remove stray local_irq_enable() 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 Acked-by: Jan Beulich Acked-by: Keir Fraser Committed-by: Jan Beulich --- xen/common/timer.c | 1 - 1 file changed, 1 deletion(-) diff --git a/xen/common/timer.c b/xen/common/timer.c index 0dd2476483..39de52dc35 100644 --- a/xen/common/timer.c +++ b/xen/common/timer.c @@ -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); -- 2.30.2