From nobody Mon Jun 22 23:58:27 2026 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 EE591C433F5 for ; Tue, 15 Mar 2022 08:31:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1345952AbiCOIcK (ORCPT ); Tue, 15 Mar 2022 04:32:10 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54606 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1345920AbiCOIcH (ORCPT ); Tue, 15 Mar 2022 04:32:07 -0400 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4869E4BFFD; Tue, 15 Mar 2022 01:30:56 -0700 (PDT) Date: Tue, 15 Mar 2022 08:30:53 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1647333054; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=Ag1W6+9J8xVYw7LflH0CBagDTzTojDHM624mxPFtLgw=; b=mrVWMOyfEtxOPaMjwgpSjw93ouDVdbXVfwQMMxLOEADwzh+u68xAaxqcrCmrhRaedGBXhI O3KcPUnvyFLRARQnYvqrjLotsTHom1/WDFnKVmeHXMTo9LcSaaqt76WdGjhPTJih1u9Be1 qhUE6YqzFzgVnF4M+DtbidRJ/GBYUnPKGPTdF9C27HlZ/3FE1rz3MX3BK3PZM0/rwMjpJV a9geIwC0XvxzjXZFN7UardHWzRUCbVe3OqY/+BIM8omROdXFbnyNyP/i39eDBIJZ2obhy1 xf1ekohrTM10H7ZAGCwwXBzUfZDbfDPlZrjZX3SQVd2/ZshYS7CkUlLpGfr2ZQ== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1647333054; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=Ag1W6+9J8xVYw7LflH0CBagDTzTojDHM624mxPFtLgw=; b=i6/WsknGHgzckL4XHlbEhlET0qa6FG8fbjXQ4U/SKLyWICK8311TpHbkPXnpLOxCngR5dz dPLTzj//eaUfvmBQ== From: "tip-bot2 for Ingo Molnar" Sender: tip-bot2@linutronix.de Reply-to: linux-kernel@vger.kernel.org To: linux-tip-commits@vger.kernel.org Subject: [tip: sched/core] sched/headers: Reorganize, clean up and optimize kernel/sched/build_utility.c dependencies Cc: Ingo Molnar , Peter Zijlstra , x86@kernel.org, linux-kernel@vger.kernel.org MIME-Version: 1.0 Message-ID: <164733305308.16921.6532434311471223117.tip-bot2@tip-bot2> Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following commit has been merged into the sched/core branch of tip: Commit-ID: e81daa7b6489e9810fa699c5104c6fd500e64fb8 Gitweb: https://git.kernel.org/tip/e81daa7b6489e9810fa699c5104c6fd50= 0e64fb8 Author: Ingo Molnar AuthorDate: Mon, 19 Jul 2021 12:43:51 +02:00 Committer: Ingo Molnar CommitterDate: Wed, 23 Feb 2022 10:58:34 +01:00 sched/headers: Reorganize, clean up and optimize kernel/sched/build_utility= .c dependencies Use all generic headers from kernel/sched/sched.h that are required for it to build. Sort the sections alphabetically. Signed-off-by: Ingo Molnar Reviewed-by: Peter Zijlstra --- kernel/sched/build_utility.c | 43 +++++++++++++++++++++++++++++++++-- 1 file changed, 41 insertions(+), 2 deletions(-) diff --git a/kernel/sched/build_utility.c b/kernel/sched/build_utility.c index 8b2b199..bc2f4d6 100644 --- a/kernel/sched/build_utility.c +++ b/kernel/sched/build_utility.c @@ -9,14 +9,53 @@ * coalescing source files to amortize header inclusion * cost. ) */ +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#ifdef CONFIG_PARAVIRT +# include +#endif + +#include +#include =20 #include "sched.h" #include "sched-pelt.h" #include "stats.h" #include "autogroup.h" =20 -#include - #include "clock.c" =20 #ifdef CONFIG_CGROUP_CPUACCT