From nobody Fri Apr 17 15:39:28 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 A6566C3A5A7 for ; Sun, 4 Dec 2022 11:41:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230018AbiLDLls (ORCPT ); Sun, 4 Dec 2022 06:41:48 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42446 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229928AbiLDLlH (ORCPT ); Sun, 4 Dec 2022 06:41:07 -0500 Received: from smtp.smtpout.orange.fr (smtp-12.smtpout.orange.fr [80.12.242.12]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4FA1C186C5 for ; Sun, 4 Dec 2022 03:39:51 -0800 (PST) Received: from pop-os.home ([86.243.100.34]) by smtp.orange.fr with ESMTPA id 1nLYpvyXGap0Y1nLYp173T; Sun, 04 Dec 2022 12:39:49 +0100 X-ME-Helo: pop-os.home X-ME-Auth: Y2hyaXN0b3BoZS5qYWlsbGV0QHdhbmFkb28uZnI= X-ME-Date: Sun, 04 Dec 2022 12:39:49 +0100 X-ME-IP: 86.243.100.34 From: Christophe JAILLET To: paulmck@kernel.org, elver@google.com, mark.rutland@arm.com Cc: linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org, Christophe JAILLET Subject: [PATCH] init_task: Include in the right file Date: Sun, 4 Dec 2022 12:39:47 +0100 Message-Id: X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" There is no need to include in init_task.h. Move it to the right place, in kernel/cred.c which uses RB_ROOT_CACHED. This is a follow-up of commit 4e7e3adbba52 ("Expand various INIT_* macros and remove") which moved things from init_task.h to init_task.c Signed-off-by: Christophe JAILLET --- Let see if build-bots agree with me! This patch depends on [1] and [2]. All these patches are related to init_task.h simplification. They are unrelated and can be applied separately, but as they modify more or less the same place in the same file, there may be some merge conflict. [1]: https://lore.kernel.org/all/1a3d5bd51b7807471a913f8fa621e5a4ecd08e6a.1= 670100520.git.christophe.jaillet@wanadoo.fr/ [2]: https://lore.kernel.org/all/94c8f2123a8833b61d84a662ec35f9c070cdf4dd.1= 670147823.git.christophe.jaillet@wanadoo.fr/ --- include/linux/init_task.h | 1 - init/init_task.c | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/init_task.h b/include/linux/init_task.h index 6d2c4ea4c97a..e18a6c6f6fd9 100644 --- a/include/linux/init_task.h +++ b/include/linux/init_task.h @@ -9,7 +9,6 @@ #include #include #include -#include #include #include #include diff --git a/init/init_task.c b/init/init_task.c index ff6c4b9bfe6b..2392c0a67fb7 100644 --- a/init/init_task.c +++ b/init/init_task.c @@ -2,6 +2,7 @@ #include #include #include +#include #include #include #include --=20 2.34.1