From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753858AbbDCI0p (ORCPT ); Fri, 3 Apr 2015 04:26:45 -0400 Received: from terminus.zytor.com ([198.137.202.10]:45005 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752556AbbDCI0i (ORCPT ); Fri, 3 Apr 2015 04:26:38 -0400 Date: Fri, 3 Apr 2015 01:26:08 -0700 From: tip-bot for Thomas Gleixner Message-ID: Cc: tglx@linutronix.de, hpa@zytor.com, mingo@kernel.org, rafael.j.wysocki@intel.com, peterz@infradead.org, linux-kernel@vger.kernel.org Reply-To: hpa@zytor.com, tglx@linutronix.de, linux-kernel@vger.kernel.org, peterz@infradead.org, mingo@kernel.org, rafael.j.wysocki@intel.com In-Reply-To: <6422336.RMm7oUHcXh@vostro.rjw.lan> References: <6422336.RMm7oUHcXh@vostro.rjw.lan> To: linux-tip-commits@vger.kernel.org Subject: [tip:timers/core] sched/idle: Use explicit broadcast oneshot control function Git-Commit-ID: 335f49196fd6011521f078cb44f445847e5aa183 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 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 335f49196fd6011521f078cb44f445847e5aa183 Gitweb: http://git.kernel.org/tip/335f49196fd6011521f078cb44f445847e5aa183 Author: Thomas Gleixner AuthorDate: Fri, 3 Apr 2015 02:34:49 +0200 Committer: Ingo Molnar CommitDate: Fri, 3 Apr 2015 08:44:36 +0200 sched/idle: Use explicit broadcast oneshot control function Replace the clockevents_notify() call with an explicit function call. Signed-off-by: Thomas Gleixner Signed-off-by: Rafael J. Wysocki Cc: Peter Zijlstra Link: http://lkml.kernel.org/r/6422336.RMm7oUHcXh@vostro.rjw.lan Signed-off-by: Ingo Molnar --- kernel/sched/idle.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/kernel/sched/idle.c b/kernel/sched/idle.c index 80014a1..4d207d2 100644 --- a/kernel/sched/idle.c +++ b/kernel/sched/idle.c @@ -158,8 +158,7 @@ static void cpuidle_idle_call(void) * is used from another cpu as a broadcast timer, this call may * fail if it is not available */ - if (broadcast && - clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &dev->cpu)) + if (broadcast && tick_broadcast_enter()) goto use_default; /* Take note of the planned idle state. */ @@ -176,7 +175,7 @@ static void cpuidle_idle_call(void) idle_set_state(this_rq(), NULL); if (broadcast) - clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &dev->cpu); + tick_broadcast_exit(); /* * Give the governor an opportunity to reflect on the outcome