Received: by 2002:a05:6a10:9848:0:0:0:0 with SMTP id x8csp750493pxf; Thu, 1 Apr 2021 12:33:43 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyaRh5dvsQy9l5DCqGJ6LhZ62Lr0x5z2+gOsKgKPhLPeAtwQ3g8mBrVTRqUjX3rOEBY8ESQ X-Received: by 2002:a50:ee19:: with SMTP id g25mr11822345eds.351.1617305623153; Thu, 01 Apr 2021 12:33:43 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1617305623; cv=none; d=google.com; s=arc-20160816; b=soQu1Pk0rQqeMygbaojX5w+HEKFnkSEC5l7/seLMfFAQp2Kb9PIP8AIxXHQwpaJNIt kgJ6su4RX3xsOYcYRoaWMcJ86L9/315KOdDR6g3hRtlbchd2FL8elu2fbTDHhjRLMa4g f5DSEyqV5FdXMSVYKha64buXCdwwQsZ+3o0Waig3P5l/1qIV2kN21w6J6U6Ql4abjSst h9cKTvTtxql76im6paditedVaD9lAVb7m2cipTRbHM0JbSDiXy1P3z6na8LDT1LWxwir +A4lmsZP2VD/Cwu+Fo0UXrABLPgIrO2C1mgN3Hpy40dWU47NXW6foVX8vBvJObsd3AlV dk/Q== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=7kvVonfuLSNBd3hQXs/kdU4StRIWwbiycexeAvp+aJc=; b=HbCyRpjeIxPra4EAXGesRMUP4pNvuxoreBNogmUe14CmnyW0KrM4EiNBBPGgBDLEFu R8lbvmwOXbweZ7VLdKoNxqAw68wPKWL/ARa4F/WXXUwHlwQPIcekTo5FI4GMQLq8L8Wq MWOWtD7DDpSUMyfIfm5tJa4DrUKMWT82bxZwIyeQ2khVpaBvC1sYw3lF/MJRd8gScqGi mp2lHQqYdRu+qHapECSdVk5xMWyyhdfu/uoK+9bXiTgvhLD17W52KxyBOLLLBTmsdhvx gwA+OE9i49fk8k/tUioqbOFpi+6usDh3sE25xy6vms6gNb+rrbnTkiK0/VHcP/RMduua QVTA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=arm.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id o13si4495148ejr.741.2021.04.01.12.33.20; Thu, 01 Apr 2021 12:33:43 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=arm.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235104AbhDATah (ORCPT + 99 others); Thu, 1 Apr 2021 15:30:37 -0400 Received: from foss.arm.com ([217.140.110.172]:48192 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234606AbhDATa2 (ORCPT ); Thu, 1 Apr 2021 15:30:28 -0400 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 4DD1211D4; Thu, 1 Apr 2021 12:30:28 -0700 (PDT) Received: from e113632-lin.cambridge.arm.com (e113632-lin.cambridge.arm.com [10.1.194.46]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id BC4C23F719; Thu, 1 Apr 2021 12:30:26 -0700 (PDT) From: Valentin Schneider To: linux-kernel@vger.kernel.org Cc: Peter Zijlstra , Ingo Molnar , Vincent Guittot , Dietmar Eggemann , Morten Rasmussen , Qais Yousef , Quentin Perret , Pavan Kondeti , Rik van Riel , Lingutla Chandrasekhar Subject: [PATCH v4 2/3] sched/fair: Clean up active balance nr_balance_failed trickery Date: Thu, 1 Apr 2021 20:30:05 +0100 Message-Id: <20210401193006.3392788-3-valentin.schneider@arm.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210401193006.3392788-1-valentin.schneider@arm.com> References: <20210401193006.3392788-1-valentin.schneider@arm.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org When triggering an active load balance, sd->nr_balance_failed is set to such a value that any further can_migrate_task() using said sd will ignore the output of task_hot(). This behaviour makes sense, as active load balance intentionally preempts a rq's running task to migrate it right away, but this asynchronous write is a bit shoddy, as the stopper thread might run active_load_balance_cpu_stop before the sd->nr_balance_failed write either becomes visible to the stopper's CPU or even happens on the CPU that appended the stopper work. Add a struct lb_env flag to denote active balancing, and use it in can_migrate_task(). Remove the sd->nr_balance_failed write that served the same purpose. Cleanup the LBF_DST_PINNED active balance special case. Signed-off-by: Valentin Schneider --- kernel/sched/fair.c | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c index 04d5e14fa261..d8077f82a380 100644 --- a/kernel/sched/fair.c +++ b/kernel/sched/fair.c @@ -7422,6 +7422,7 @@ enum migration_type { #define LBF_NEED_BREAK 0x02 #define LBF_DST_PINNED 0x04 #define LBF_SOME_PINNED 0x08 +#define LBF_ACTIVE_LB 0x10 struct lb_env { struct sched_domain *sd; @@ -7583,10 +7584,13 @@ int can_migrate_task(struct task_struct *p, struct lb_env *env) * our sched_group. We may want to revisit it if we couldn't * meet load balance goals by pulling other tasks on src_cpu. * - * Avoid computing new_dst_cpu for NEWLY_IDLE or if we have - * already computed one in current iteration. + * Avoid computing new_dst_cpu + * - for NEWLY_IDLE + * - if we have already computed one in current iteration + * - if it's an active balance */ - if (env->idle == CPU_NEWLY_IDLE || (env->flags & LBF_DST_PINNED)) + if (env->idle == CPU_NEWLY_IDLE || + env->flags & (LBF_DST_PINNED | LBF_ACTIVE_LB)) return 0; /* Prevent to re-select dst_cpu via env's CPUs: */ @@ -7611,10 +7615,14 @@ int can_migrate_task(struct task_struct *p, struct lb_env *env) /* * Aggressive migration if: - * 1) destination numa is preferred - * 2) task is cache cold, or - * 3) too many balance attempts have failed. + * 1) active balance + * 2) destination numa is preferred + * 3) task is cache cold, or + * 4) too many balance attempts have failed. */ + if (env->flags & LBF_ACTIVE_LB) + return 1; + tsk_cache_hot = migrate_degrades_locality(p, env); if (tsk_cache_hot == -1) tsk_cache_hot = task_hot(p, env); @@ -9805,9 +9813,6 @@ static int load_balance(int this_cpu, struct rq *this_rq, active_load_balance_cpu_stop, busiest, &busiest->active_balance_work); } - - /* We've kicked active balancing, force task migration. */ - sd->nr_balance_failed = sd->cache_nice_tries+1; } } else { sd->nr_balance_failed = 0; @@ -9957,13 +9962,7 @@ static int active_load_balance_cpu_stop(void *data) .src_cpu = busiest_rq->cpu, .src_rq = busiest_rq, .idle = CPU_IDLE, - /* - * can_migrate_task() doesn't need to compute new_dst_cpu - * for active balancing. Since we have CPU_IDLE, but no - * @dst_grpmask we need to make that test go away with lying - * about DST_PINNED. - */ - .flags = LBF_DST_PINNED, + .flags = LBF_ACTIVE_LB, }; schedstat_inc(sd->alb_count); -- 2.25.1