From nobody Mon Jun 22 15:45:03 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 EC5E6C433F5 for ; Mon, 21 Mar 2022 10:20:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1345566AbiCUKVx (ORCPT ); Mon, 21 Mar 2022 06:21:53 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39804 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234446AbiCUKVu (ORCPT ); Mon, 21 Mar 2022 06:21:50 -0400 Received: from galois.linutronix.de (Galois.linutronix.de [IPv6:2a0a:51c0:0:12e:550::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C74F72DA83; Mon, 21 Mar 2022 03:20:25 -0700 (PDT) Date: Mon, 21 Mar 2022 10:20:23 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1647858024; 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=Eopz/MQCZ+Z8E/7sU2FMr5+ZT81Yw3113vHKndsiWBs=; b=HoduWKmzLVHPFL7Pf/ZXQk8JlQVKbUhABrqVvFI9WS/q667t+30OxWBff7iJVL6yLkSgGI qFL4LTmSia9ZH+S4I4kzg75yuKodxfBdY7e13FdpOd+/I74/GWdvI8oYsLCByLk+coKkEe HqkP3yhAkJiVa5AkPgMsNlp4XIgnA10cT1WTC58n+HnOKBp0WsfuTQojLsEFixjriY5N7X 8qlrao/JFREsPnaLe0hCSxMBe7WXZfgWsJS1LjhhphFzq+8BbFwZQJWToMflzquW9FDse7 PGL6OmVs1BVSP1PpRXeD+QNdbtIsaLLdlqFHWSI/DNB/PbZNgVnpIsrVE2QfRw== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1647858024; 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=Eopz/MQCZ+Z8E/7sU2FMr5+ZT81Yw3113vHKndsiWBs=; b=D0b6EWo913iAW+B08snFFckA5Br94FJMUnmuhv1wijqzMeMTDDy6bP6hmNAKq81BOaU7Ej Ui+BnK84ahymlmDQ== 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] headers/prep: Fix header to build standalone: Cc: Peter Zijlstra , Linus Torvalds , Sachin Sant , Andrew Morton , Borislav Petkov , Ingo Molnar , x86@kernel.org, linux-kernel@vger.kernel.org MIME-Version: 1.0 Message-ID: <164785802309.389.16437260063378101886.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: 3387ce4d8a5f2956fab827edf499fe6780e83faa Gitweb: https://git.kernel.org/tip/3387ce4d8a5f2956fab827edf499fe678= 0e83faa Author: Ingo Molnar AuthorDate: Mon, 21 Mar 2022 11:05:50 +01:00 Committer: Ingo Molnar CommitterDate: Mon, 21 Mar 2022 11:13:49 +01:00 headers/prep: Fix header to build standalone: Add the dependency to , because cgroup_move_task() will dereference 'struct css_set'. ( Only older toolchains are affected, due to variations in the implementation of rcu_assign_pointer() et al. ) Cc: Peter Zijlstra Cc: Linus Torvalds Reported-by: Sachin Sant Reported-by: Andrew Morton Reported-by: Borislav Petkov Signed-off-by: Ingo Molnar --- include/linux/psi.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/psi.h b/include/linux/psi.h index 7f7d1d8..8978476 100644 --- a/include/linux/psi.h +++ b/include/linux/psi.h @@ -6,6 +6,7 @@ #include #include #include +#include =20 struct seq_file; struct css_set;