Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754718AbbLLCBt (ORCPT ); Fri, 11 Dec 2015 21:01:49 -0500 Received: from mail-pa0-f48.google.com ([209.85.220.48]:33060 "EHLO mail-pa0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753177AbbLLCBs (ORCPT ); Fri, 11 Dec 2015 21:01:48 -0500 From: Steve Muckle Subject: PELT initial task load and wake_up_new_task() X-Enigmail-Draft-Status: N1110 To: "yuyang.du@intel.com" , Peter Zijlstra , Ingo Molnar , Morten Rasmussen , Dietmar Eggemann , Patrick Bellasi , Juri Lelli , Vincent Guittot Cc: "linux-kernel@vger.kernel.org" Message-ID: <566B8009.2090006@linaro.org> Date: Fri, 11 Dec 2015 18:01:45 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1296 Lines: 29 In init_entity_runnable_average() the last_update_time is initialized to zero. The task is given max load and utilization as a pessimistic initial estimate. But if in wake_up_new_task() the task is placed on a CPU other than where it was created, __update_load_avg() will be called via set_task_cpu() -> migrate_task_rq_fair() -> remove_entity_load_avg(). Since last_update_time is zero the delta will be huge and the task's load will be entirely decayed away before it is enqueued at the destination CPU. If last_update_time is initialized to cfs_rq_clock_task() the load will not go away, but it will also then be subtracted from the original CPU in remove_entity_load_avg() if the task is placed on a different CPU, which is bad since it was never added there before. Thinking about this more it seemed questionable to treat the assignment of a task to a new CPU in wake_up_new_task() as a migration given that the task has never executed previously. Would it make sense to call __set_task_cpu() there instead of set_task_cpu()? thanks, Steve -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/