From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753395Ab3C0RKY (ORCPT ); Wed, 27 Mar 2013 13:10:24 -0400 Received: from www.linutronix.de ([62.245.132.108]:36701 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752318Ab3C0RKV (ORCPT ); Wed, 27 Mar 2013 13:10:21 -0400 Date: Wed, 27 Mar 2013 18:10:15 +0100 (CET) From: Thomas Gleixner To: Jesper Nilsson cc: LKML , linux-arch@vger.kernel.org, Linus Torvalds , Andrew Morton , Rusty Russell , Paul McKenney , Ingo Molnar , Peter Zijlstra , "Srivatsa S. Bhat" , Magnus Damm Subject: Re: [patch 13/34] cris: Use generic idle loop In-Reply-To: <20130327150421.GV28422@axis.com> Message-ID: References: <20130321214930.752934102@linutronix.de> <20130321215234.148829489@linutronix.de> <20130327150421.GV28422@axis.com> User-Agent: Alpine 2.02 (LFD 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Linutronix-Spam-Score: -1.0 X-Linutronix-Spam-Level: - X-Linutronix-Spam-Status: No , -1.0 points, 5.0 required, ALL_TRUSTED=-1,SHORTCIRCUIT=-0.0001 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 27 Mar 2013, Jesper Nilsson wrote: > > On Thu, Mar 21, 2013 at 09:53:06PM -0000, Thomas Gleixner wrote: > [snip] > > Index: linux-2.6/arch/cris/arch-v32/kernel/process.c > > =================================================================== > > --- linux-2.6.orig/arch/cris/arch-v32/kernel/process.c > > +++ linux-2.6/arch/cris/arch-v32/kernel/process.c > > @@ -23,12 +23,10 @@ extern void stop_watchdog(void); > > /* We use this if we don't have any better idle routine. */ > > void default_idle(void) > > { > > - local_irq_disable(); > > - if (!need_resched()) { > > - /* Halt until exception. */ > > - __asm__ volatile("ei \n\t" > > - "halt "); > > - } > > + /* Halt until exception. */ > > + __asm__ volatile("ei \n\t" > > + "halt "); > > + /* CHECKME: Is this really needed ?? */ > > local_irq_enable(); > > No, that local_irq_enable() is redundant since we already enabled interrupts > in the assembler directive above. That's what I thought:) Will remove it. Thanks, tglx