Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id B53E0C433F5 for ; Fri, 3 Dec 2021 12:35:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1380851AbhLCMiw (ORCPT ); Fri, 3 Dec 2021 07:38:52 -0500 Received: from foss.arm.com ([217.140.110.172]:48802 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229952AbhLCMiv (ORCPT ); Fri, 3 Dec 2021 07:38:51 -0500 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 90DE11396; Fri, 3 Dec 2021 04:35:27 -0800 (PST) Received: from e113632-lin (e113632-lin.cambridge.arm.com [10.1.196.57]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 6F4A83F5A1; Fri, 3 Dec 2021 04:35:26 -0800 (PST) From: Valentin Schneider To: Vincent Donnefort , peterz@infradead.org, mingo@redhat.com, vincent.guittot@linaro.org Cc: linux-kernel@vger.kernel.org, mgorman@techsingularity.net, dietmar.eggemann@arm.com, Vincent Donnefort Subject: Re: [PATCH v2] sched/fair: Fix detection of per-CPU kthreads waking a task In-Reply-To: <20211201143450.479472-1-vincent.donnefort@arm.com> References: <20211201143450.479472-1-vincent.donnefort@arm.com> Date: Fri, 03 Dec 2021 12:35:24 +0000 Message-ID: <87tufpamsz.mognet@arm.com> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 01/12/21 14:34, Vincent Donnefort wrote: > select_idle_sibling() has a special case for tasks woken up by a per-CPU > kthread, where the selected CPU is the previous one. However, the current > condition for this exit path is incomplete. A task can wake up from an > interrupt context (e.g. hrtimer), while a per-CPU kthread is running. A > such scenario would spuriously trigger the special case described above. > Also, a recent change made the idle task like a regular per-CPU kthread, > hence making that situation more likely to happen > (is_per_cpu_kthread(swapper) being true now). > > Checking for task context makes sure select_idle_sibling() will not > interpret a wake up from any other context as a wake up by a per-CPU > kthread. > > Fixes: 52262ee567ad ("sched/fair: Allow a per-CPU kthread waking a task to stack on the same CPU, to fix XFS performance regression") > Signed-off-by: Vincent Donnefort > Reviewed-by: Valentin Schneider > --- > v1 -> v2: > * is_idle_thread() -> in_task() to also include spurious detection when > current != swapper. (Vincent Guittot) > --- > > diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c > index 945d987246c5..56db4ae85995 100644 > --- a/kernel/sched/fair.c > +++ b/kernel/sched/fair.c > @@ -6399,6 +6399,7 @@ static int select_idle_sibling(struct task_struct *p, int prev, int target) > * pattern is IO completions. > */ > if (is_per_cpu_kthread(current) && > + in_task() && > prev == smp_processor_id() && > this_rq()->nr_running <= 1) { > return prev; > -- > 2.25.1