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 F266BC636CC for ; Fri, 3 Feb 2023 05:16:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231819AbjBCFQb (ORCPT ); Fri, 3 Feb 2023 00:16:31 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34060 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229602AbjBCFQ3 (ORCPT ); Fri, 3 Feb 2023 00:16:29 -0500 Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 34239627B5 for ; Thu, 2 Feb 2023 21:16:27 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1675401388; x=1706937388; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=REB7igcH2i+0/TBYuBeMBlpE6R0Wo3ddM0PLoqKMSrI=; b=LCdLYOX8aC1tRCop8ftqEOZKdfYXqSM9kjD/8Rx9b++mBY9pqqCAE8xE NSde2UIxair7YjrbVF2o30oXG90W1l/nN1dHNdmHEcaQXI4YL8hr/2IiI OsCurGigB6dtsFhbpRRwxRqNhPzTYTvn+uk7Ei0Bzu+wIPcL5IhQ0U6pD Xh+DEN3Mj7vWeIg0F/HByD8SzDaBIXQtvbxvih1yVdDllkRWOcUze5Oi2 5mO0LPN1BL0khkIzKhf/DFeMn8nPpBM3NhCKw7xmHmr0nGNG4KFmJCyxY NYZDTithx2awH5CG+0dDcizUCwbwXr3O+mUtzTz5/9C1w2skQ5ePaM3bq Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10609"; a="308997090" X-IronPort-AV: E=Sophos;i="5.97,269,1669104000"; d="scan'208";a="308997090" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Feb 2023 21:16:27 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10609"; a="774174221" X-IronPort-AV: E=Sophos;i="5.97,269,1669104000"; d="scan'208";a="774174221" Received: from chenyu-dev.sh.intel.com ([10.239.158.170]) by fmsmga002.fm.intel.com with ESMTP; 02 Feb 2023 21:16:22 -0800 From: Chen Yu To: Peter Zijlstra , Vincent Guittot , Ingo Molnar , Juri Lelli Cc: Mel Gorman , Tim Chen , Dietmar Eggemann , Steven Rostedt , Ben Segall , K Prateek Nayak , Abel Wu , Yicong Yang , "Gautham R . Shenoy" , Honglei Wang , Len Brown , Chen Yu , Tianchen Ding , Joel Fernandes , Josh Don , Hillf Danton , linux-kernel@vger.kernel.org, Chen Yu Subject: [PATCH v5 0/2] sched/fair: Wake short task on current CPU Date: Fri, 3 Feb 2023 13:17:25 +0800 Message-Id: X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The main purpose is to avoid too many cross CPU wake up when it is unnecessary. The frequent cross CPU wake up brings significant damage to some workloads, especially on high core count systems. Inhibits the cross CPU wake-up by placing the wakee on waking CPU, if both the waker and wakee are short-duration tasks. The short duration task could become a trouble maker on high-load system, because it could bring frequent context switch. So this strategy only takes effect when the system is busy. Besides, it is unreasonable to inhibit the idle CPU scan when there are still idle CPUs. First, introduce the definition of a short-duration task. Then leverages the first patch to choose a local CPU for wakee. Overall there is significant performance improvement on Intel 2 x 56C/112T platform. Such as will-it-scale (1200+%), netperf(600+%) in some cases. And no noticeable impact on schbench, hackbench, tbench and a OLTP workload with a commercial RDBMS. Seeking for test results on other platforms, such as Zen3 and Kunpeng Arm64. Appreciated Prateek and Yicong if you can have a try on this version. Changes since v4: 1. Dietmar has commented on the task duration calculation. So refined the commit log to reduce confusion. 2. Change [PATCH 1/2] to only record the average duration of a task. So this change could benefit UTIL_EST_FASTER[1]. 3. As v4 reported regression on Zen3 and Kunpeng Arm64, add back the system average utilization restriction that, if the system is not busy, do not enable the short wake up. Above logic has shown improvment on Zen3[2]. 4. Restrict the wakeup target to be current CPU, rather than both current CPU and task's previous CPU. This could also benefit wakeup optimization from interrupt in the future, which is suggested by Yicong. Changes since v3: 1. Honglei and Josh have concern that the threshold of short task duration could be too long. Decreased the threshold from sysctl_sched_min_granularity to (sysctl_sched_min_granularity / 8), and the '8' comes from get_update_sysctl_factor(). 2. Export p->se.dur_avg to /proc/{pid}/sched per Yicong's suggestion. 3. Move the calculation of average duration from put_prev_task_fair() to dequeue_task_fair(). Because there is an issue in v3 that, put_prev_task_fair() will not be invoked by pick_next_task_fair() in fast path, thus the dur_avg could not be updated timely. 4. Fix the comment in PATCH 2/2, that "WRITE_ONCE(CPU1->ttwu_pending, 1);" on CPU0 is earlier than CPU1 getting "ttwu_list->p0", per Tianchen. 5. Move the scan for CPU with short duration task from select_idle_cpu() to select_idle_siblings(), because there is no CPU scan involved, per Yicong. Changes since v2: 1. Peter suggested comparing the duration of waker and the cost to scan for an idle CPU: If the cost is higher than the task duration, do not waste time finding an idle CPU, choose the local or previous CPU directly. A prototype was created based on this suggestion. However, according to the test result, this prototype does not inhibit the cross CPU wakeup and did not bring improvement. Because the cost to find an idle CPU is small in the problematic scenario. The root cause of the problem is a race condition between scanning for an idle CPU and task enqueue(please refer to the commit log in PATCH 2/2). So v3 does not change the core logic of v2, with some refinement based on Peter's suggestion. 2. Simplify the logic to record the task duration per Peter and Abel's suggestion. [1] https://lore.kernel.org/lkml/c56855a7-14fd-4737-fc8b-8ea21487c5f6@arm.com/ [2] https://lore.kernel.org/all/cover.1666531576.git.yu.c.chen@intel.com/ v4: https://lore.kernel.org/lkml/cover.1671158588.git.yu.c.chen@intel.com/ v3: https://lore.kernel.org/lkml/cover.1669862147.git.yu.c.chen@intel.com/ v2: https://lore.kernel.org/all/cover.1666531576.git.yu.c.chen@intel.com/ v1: https://lore.kernel.org/lkml/20220915165407.1776363-1-yu.c.chen@intel.com/ Chen Yu (2): sched/fair: Record the average duration of a task sched/fair: Introduce SIS_SHORT to wake up short task on current CPU include/linux/sched.h | 3 +++ kernel/sched/core.c | 2 ++ kernel/sched/debug.c | 1 + kernel/sched/fair.c | 39 +++++++++++++++++++++++++++++++++++++++ kernel/sched/features.h | 1 + 5 files changed, 46 insertions(+) -- 2.25.1