From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Vrabel Subject: [PATCH] timer: remove stray local_irq_enable() Date: Thu, 6 Sep 2012 13:05:18 +0100 Message-ID: <1346933118-28928-1-git-send-email-david.vrabel@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xensource.com Cc: David Vrabel List-Id: xen-devel@lists.xenproject.org From: David Vrabel 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 --- xen/common/timer.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/xen/common/timer.c b/xen/common/timer.c index 0dd2476..39de52d 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); -- 1.7.2.5