Received: by 2002:a05:6a10:17d3:0:0:0:0 with SMTP id hz19csp2109363pxb; Sun, 18 Apr 2021 19:18:58 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyISTQxalrDbEqm4J1mMbXXDgPFiV3GQ034fWuqeuIhZEG1fonDvsSEQ7At2Wq81bAW96gi X-Received: by 2002:a63:c60a:: with SMTP id w10mr9467401pgg.421.1618798738077; Sun, 18 Apr 2021 19:18:58 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1618798738; cv=none; d=google.com; s=arc-20160816; b=AnlH6JXreB17JYQ33aydxnPrrcorOMr73usMeJD5ywLIUKL78QhhpqEuemXSkEXLvw nn+aMYlZcwdOtjpg/5K+13l52doxFLvLLIvBbgSiAaO3hBAwtFvwtrudzCdScstlyTxr maLhm9LxsKGwNDBm6xUROKdfaXft57V0Og1yCzD2WXLBkPDxgYfv8VpZ4m7MxGx3gNHy nYo/Y9VSjgcHRWbIo/hThBVrYa4Y5QbPicdZ+pK3PVxpb1YeZbY8brlAQCI8ctwwbxmD lUgWERWOMQEoN5IH7YkoXcOBJm1Y9PPi8dKI1zSTcPcgyV49dmjeL6gmdZZlTEE75fPg kYyA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :message-id:subject:cc:to:from:date; bh=MpYWLnudG6DPcnaWiDFIc4Q+XEVGaj7OsL5OB5+R3Sk=; b=VHpzLrnUQwXcQtqGAauF8zGObUD16B6Icec3Azs06jBDnfhoAwyQrnoMO6zgTbix+C wG3Vh3qCV0pDZwSlDeIoc5FqMvomzxz50R9By0vjawxaO4GVo9anp8+x80JMY/iZtThu ixlskXZE2xra3JFcpeyJqENdPLKLJ+Jf8WSJClHfQuhW4kNYhE3qY5PVC5G6ouyQYIu2 LS7/4RG+oFyJNLrFYWnOEn8KKddmhmjunOZboXH3tiF0H+vOkh5mz+OxFWT83uY5BzXc iF0zPopWf1Uz0otRETLZk51r7t6cy19t5/K/MQjcMcy6TSrfzLV7GPb8v1EOePcnncpB iubQ== 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 Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id o3si8060634plk.295.2021.04.18.19.18.46; Sun, 18 Apr 2021 19:18:58 -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 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233193AbhDSCSb (ORCPT + 99 others); Sun, 18 Apr 2021 22:18:31 -0400 Received: from shelob.surriel.com ([96.67.55.147]:55336 "EHLO shelob.surriel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233084AbhDSCSa (ORCPT ); Sun, 18 Apr 2021 22:18:30 -0400 Received: from [2603:3005:d05:2b00:6e0b:84ff:fee2:98bb] (helo=imladris.surriel.com) by shelob.surriel.com with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1lYJU3-0001eJ-PD; Sun, 18 Apr 2021 22:17:55 -0400 Date: Sun, 18 Apr 2021 22:17:51 -0400 From: Rik van Riel To: linux-kernel@vger.kernel.org Cc: kernel-team@fb.com, Peter Zijlstra , Ingo Molnar , Vincent Guittot , Dietmar Eggemann , Mel Gorman Subject: [PATCH] sched,fair: skip newidle_balance if a wakeup is pending Message-ID: <20210418221751.7edfc03b@imladris.surriel.com> X-Mailer: Claws Mail 3.17.6 (GTK+ 2.24.32; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: riel@shelob.surriel.com Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The try_to_wake_up function has an optimization where it can queue a task for wakeup on its previous CPU, if the task is still in the middle of going to sleep inside schedule(). Once schedule() re-enables IRQs, the task will be woken up with an IPI, and placed back on the runqueue. If we have such a wakeup pending, there is no need to search other CPUs for runnable tasks. Just skip (or bail out early from) newidle balancing, and run the just woken up task. For a memcache like workload test, this reduces total CPU use by about 2%, proportionally split between user and system time, and p99 and p95 application response time by 2-3% on average. The schedstats run_delay number shows a similar improvement. Signed-off-by: Rik van Riel --- kernel/sched/fair.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c index 69680158963f..19a92c48939f 100644 --- a/kernel/sched/fair.c +++ b/kernel/sched/fair.c @@ -7163,6 +7163,14 @@ done: __maybe_unused; if (!rf) return NULL; + /* + * We have a woken up task pending here. No need to search for ones + * elsewhere. This task will be enqueued the moment we unblock irqs + * upon exiting the scheduler. + */ + if (rq->ttwu_pending) + return NULL; + new_tasks = newidle_balance(rq, rf); /* @@ -10661,7 +10669,8 @@ static int newidle_balance(struct rq *this_rq, struct rq_flags *rf) * Stop searching for tasks to pull if there are * now runnable tasks on this rq. */ - if (pulled_task || this_rq->nr_running > 0) + if (pulled_task || this_rq->nr_running > 0 || + this_rq->ttwu_pending) break; } rcu_read_unlock(); -- 2.25.4