From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752549AbaBKMUW (ORCPT ); Tue, 11 Feb 2014 07:20:22 -0500 Received: from terminus.zytor.com ([198.137.202.10]:46667 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751014AbaBKMUQ (ORCPT ); Tue, 11 Feb 2014 07:20:16 -0500 Date: Tue, 11 Feb 2014 04:18:32 -0800 From: tip-bot for Nicolas Pitre Message-ID: Cc: linux-kernel@vger.kernel.org, hpa@zytor.com, mingo@kernel.org, torvalds@linux-foundation.org, peterz@infradead.org, nicolas.pitre@linaro.org, lethal@linux-sh.org, benh@kernel.crashing.org, linux@arm.linux.org.uk, preeti@linux.vnet.ibm.com, nico@linaro.org, rjw@rjwysocki.net, tglx@linutronix.de, daniel.lezcano@linaro.org Reply-To: mingo@kernel.org, hpa@zytor.com, linux-kernel@vger.kernel.org, torvalds@linux-foundation.org, peterz@infradead.org, nicolas.pitre@linaro.org, lethal@linux-sh.org, benh@kernel.crashing.org, preeti@linux.vnet.ibm.com, linux@arm.linux.org.uk, nico@linaro.org, tglx@linutronix.de, rjw@rjwysocki.net, daniel.lezcano@linaro.org To: linux-tip-commits@vger.kernel.org Subject: [tip:sched/core] sched/idle, x86: Remove redundant cpuidle_idle_call() Git-Commit-ID: 16f8b05abe33575b5fc0833cab1286bd6227f255 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.1 (terminus.zytor.com [127.0.0.1]); Tue, 11 Feb 2014 04:18:38 -0800 (PST) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 16f8b05abe33575b5fc0833cab1286bd6227f255 Gitweb: http://git.kernel.org/tip/16f8b05abe33575b5fc0833cab1286bd6227f255 Author: Nicolas Pitre AuthorDate: Wed, 29 Jan 2014 12:45:12 -0500 Committer: Ingo Molnar CommitDate: Tue, 11 Feb 2014 09:58:28 +0100 sched/idle, x86: Remove redundant cpuidle_idle_call() The core idle loop now takes care of it. Signed-off-by: Nicolas Pitre Acked-by: Daniel Lezcano Cc: Preeti U Murthy Cc: Paul Mundt Cc: "Rafael J. Wysocki" Cc: linux-arm-kernel@lists.infradead.org Cc: linuxppc-dev@lists.ozlabs.org Cc: linux-sh@vger.kernel.org Cc: linux-pm@vger.kernel.org Cc: Russell King Cc: linaro-kernel@lists.linaro.org Cc: Benjamin Herrenschmidt Cc: Linus Torvalds Signed-off-by: Peter Zijlstra Link: http://lkml.kernel.org/n/tip-3ioazimg4j5iq6kdefks04i8@git.kernel.org Signed-off-by: Ingo Molnar --- arch/x86/kernel/process.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/arch/x86/kernel/process.c b/arch/x86/kernel/process.c index 3fb8d95..4505e2a 100644 --- a/arch/x86/kernel/process.c +++ b/arch/x86/kernel/process.c @@ -298,10 +298,7 @@ void arch_cpu_idle_dead(void) */ void arch_cpu_idle(void) { - if (cpuidle_idle_call()) - x86_idle(); - else - local_irq_enable(); + x86_idle(); } /*