Received: by 2002:a05:6a10:f347:0:0:0:0 with SMTP id d7csp3172516pxu; Tue, 8 Dec 2020 05:33:12 -0800 (PST) X-Google-Smtp-Source: ABdhPJxL4tY6uDR7319MlUCxr4sz8NHQIcB0Wa1fYwLGBiIj5bJwSfuJU7Hxk6AiUtB3G1NH0nH/ X-Received: by 2002:a17:907:1010:: with SMTP id ox16mr21102851ejb.439.1607434392689; Tue, 08 Dec 2020 05:33:12 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1607434392; cv=none; d=google.com; s=arc-20160816; b=w3KOPoOvn0SQOznT6N9tmJKoJqLZLIZoM3KEPCt+kqRDfDdbZ/mZIpYjTmoYufWYEx GMNrkpUekZlFWerfnGtqkCDdCOnVfvgFoFGbEINSUJf26vCqTva1RJSNuDshYriimcQ9 635RefxCYol7xTmp9JGQArr56x4XvHhBBe/Bfeqk+DyNttcGXXWSVB6NMXV6LmhGWzAI P5L3cyAGaNr9X5FNDirIMIDhMYtBZn0jAVvEYyK2hFb136R4ykaHrVErrMXz7ybs5vp+ Ffp34HDW/tHrX7pVj2IeJgb6jDUFwVEKYOhayqfuWfukCKdJ8b3ogWFQtLHfuuPyqU67 WtJA== 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=ge5DWqTtSQK7FUSJly6u7QwVMEAfRhCIc8KSLwrbzQg=; b=veg1DZ8cvzdOSDjq88UuMk20hlYpBpoxRkh3L1h1MZTXsxYaQaXDSZmiYhGSVCPdud wheLQfY0IE+5deFyeTW24+qQKDAYtXyCqyQPW4ngWURTSo7j05pti20qXtyQviCSJSsj MG+3sDTd7Gw/LtGDhL+QA/tm8WXlAy7kPhC4DERfsMI7iPNBPm08L7yeLqkcninMuIlZ jo6TYctPArXwEJ3XGwlMI5CNmm5I8npJJkaY1WLiVg9J1x0AQ63sFRRvsPDG7YSICA/p l1V57gJ6E/SDF3QAiahA6qcYd4bV2lvk+Ad9PisLNdB9+Rdk1O7fK3KJ9NNXQNCUPL9I jXbg== 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=pass (p=NONE sp=NONE dis=NONE) header.from=kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id q4si2740410eji.447.2020.12.08.05.32.49; Tue, 08 Dec 2020 05:33:12 -0800 (PST) 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=pass (p=NONE sp=NONE dis=NONE) header.from=kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729408AbgLHNaK (ORCPT + 99 others); Tue, 8 Dec 2020 08:30:10 -0500 Received: from mail.kernel.org ([198.145.29.99]:48590 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728786AbgLHNaK (ORCPT ); Tue, 8 Dec 2020 08:30:10 -0500 From: Will Deacon Authentication-Results: mail.kernel.org; dkim=permerror (bad message/signature format) To: linux-arm-kernel@lists.infradead.org Cc: linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org, Will Deacon , Catalin Marinas , Marc Zyngier , Greg Kroah-Hartman , Peter Zijlstra , Morten Rasmussen , Qais Yousef , Suren Baghdasaryan , Quentin Perret , Tejun Heo , Li Zefan , Johannes Weiner , Ingo Molnar , Juri Lelli , Vincent Guittot , kernel-team@android.com Subject: [PATCH v5 06/15] sched: Introduce task_cpu_possible_mask() to limit fallback rq selection Date: Tue, 8 Dec 2020 13:28:26 +0000 Message-Id: <20201208132835.6151-7-will@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20201208132835.6151-1-will@kernel.org> References: <20201208132835.6151-1-will@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Asymmetric systems may not offer the same level of userspace ISA support across all CPUs, meaning that some applications cannot be executed by some CPUs. As a concrete example, upcoming arm64 big.LITTLE designs do not feature support for 32-bit applications on both clusters. On such a system, we must take care not to migrate a task to an unsupported CPU when forcefully moving tasks in select_fallback_rq() in response to a CPU hot-unplug operation. Introduce a task_cpu_possible_mask() hook which, given a task argument, allows an architecture to return a cpumask of CPUs that are capable of executing that task. The default implementation returns the cpu_possible_mask, since sane machines do not suffer from per-cpu ISA limitations that affect scheduling. The new mask is used when selecting the fallback runqueue as a last resort before forcing a migration to the first active CPU. Reviewed-by: Quentin Perret Signed-off-by: Will Deacon --- include/linux/mmu_context.h | 8 ++++++++ kernel/sched/core.c | 8 +++++--- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/include/linux/mmu_context.h b/include/linux/mmu_context.h index 03dee12d2b61..bc4ac3c525e6 100644 --- a/include/linux/mmu_context.h +++ b/include/linux/mmu_context.h @@ -14,4 +14,12 @@ static inline void leave_mm(int cpu) { } #endif +/* + * CPUs that are capable of running task @p. By default, we assume a sane, + * homogeneous system. Must contain at least one active CPU. + */ +#ifndef task_cpu_possible_mask +# define task_cpu_possible_mask(p) cpu_possible_mask +#endif + #endif diff --git a/kernel/sched/core.c b/kernel/sched/core.c index e7e453492cff..58474569a2ea 100644 --- a/kernel/sched/core.c +++ b/kernel/sched/core.c @@ -1708,7 +1708,10 @@ static inline bool is_cpu_allowed(struct task_struct *p, int cpu) if (is_per_cpu_kthread(p)) return cpu_online(cpu); - return cpu_active(cpu); + if (!cpu_active(cpu)) + return false; + + return cpumask_test_cpu(cpu, task_cpu_possible_mask(p)); } /* @@ -2318,10 +2321,9 @@ static int select_fallback_rq(int cpu, struct task_struct *p) } fallthrough; case possible: - do_set_cpus_allowed(p, cpu_possible_mask); + do_set_cpus_allowed(p, task_cpu_possible_mask(p)); state = fail; break; - case fail: BUG(); break; -- 2.29.2.576.ga3fc446d84-goog