Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751676AbcDUBJq (ORCPT ); Wed, 20 Apr 2016 21:09:46 -0400 Received: from mail-oi0-f68.google.com ([209.85.218.68]:33435 "EHLO mail-oi0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751428AbcDUBJo (ORCPT ); Wed, 20 Apr 2016 21:09:44 -0400 MIME-Version: 1.0 In-Reply-To: <57180293.1040809@intel.com> References: <1460958684-32105-1-git-send-email-wanpeng.li@hotmail.com> <6087716.bi8vDPiZNy@vostro.rjw.lan> <20160420140117.GZ3448@twins.programming.kicks-ass.net> <57180293.1040809@intel.com> Date: Thu, 21 Apr 2016 09:09:43 +0800 Message-ID: Subject: Re: [PATCH] sched/cpufreq: don't trigger cpufreq update w/o real rt/deadline tasks running From: Wanpeng Li To: "Rafael J. Wysocki" Cc: Peter Zijlstra , "Rafael J. Wysocki" , Ingo Molnar , "linux-kernel@vger.kernel.org" , Wanpeng Li , Linux PM list , Steve Muckle Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2687 Lines: 87 2016-04-21 6:28 GMT+08:00 Rafael J. Wysocki : > On 4/21/2016 12:24 AM, Wanpeng Li wrote: >> >> 2016-04-20 22:01 GMT+08:00 Peter Zijlstra : >>> >>> On Wed, Apr 20, 2016 at 02:32:35AM +0200, Rafael J. Wysocki wrote: >>>> >>>> On Monday, April 18, 2016 01:51:24 PM Wanpeng Li wrote: >>>>> >>>>> Sometimes update_curr() is called w/o tasks actually running, it is >>>>> captured by: >>>>> u64 delta_exec = rq_clock_task(rq) - curr->se.exec_start; >>>>> We should not trigger cpufreq update in this case for rt/deadline >>>>> classes, and this patch fix it. >>>>> >>>>> Signed-off-by: Wanpeng Li >>>> >>>> The signed-off-by tag should agree with the From: header. One way to >>>> achieve >>>> that is to add an extra From: line at the start of the changelog. >>>> >>>> That said, this looks like a good catch that should go into 4.6 to me. >>>> >>>> Peter, what do you think? >>> >>> I'm confused by the Changelog. *what* ? >> >> Sometimes .update_curr hook is called w/o tasks actually running, it is >> captured by: >> >> u64 delta_exec = rq_clock_task(rq) - curr->se.exec_start; >> >> We should not trigger cpufreq update in this case for rt/deadline >> classes, and this patch fix it. > > > That's what you wrote in the changelog, no need to repeat that. > > I guess Peter is asking for more details, though. I actually would like to > get some more details here too. Like an example of when the situation in > question actually happens. I add a print to print when delta_exec is zero for rt class, something like below: watchdog/5-48 [005] d... 568.449095: update_curr_rt: rt delta_exec is zero watchdog/5-48 [005] d... 568.449104: => pick_next_task_rt => __schedule => schedule => smpboot_thread_fn => kthread => ret_from_fork watchdog/5-48 [005] d... 568.449105: update_curr_rt: rt delta_exec is zero watchdog/5-48 [005] d... 568.449111: => put_prev_task_rt => pick_next_task_idle => __schedule => schedule => smpboot_thread_fn => kthread => ret_from_fork watchdog/6-56 [006] d... 568.510094: update_curr_rt: rt delta_exec is zero watchdog/6-56 [006] d... 568.510103: => pick_next_task_rt => __schedule => schedule => smpboot_thread_fn => kthread => ret_from_fork watchdog/6-56 [006] d... 568.510105: update_curr_rt: rt delta_exec is zero watchdog/6-56 [006] d... 568.510111: => put_prev_task_rt => pick_next_task_idle => __schedule => schedule => smpboot_thread_fn => kthread => ret_from_fork [...] Regards, Wanpeng Li