From nobody Mon Sep 15 18:08:56 2025 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 C83EBC54EBE for ; Tue, 10 Jan 2023 20:21:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232512AbjAJUVg (ORCPT ); Tue, 10 Jan 2023 15:21:36 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36084 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231948AbjAJUVc (ORCPT ); Tue, 10 Jan 2023 15:21:32 -0500 Received: from smtp.smtpout.orange.fr (smtp-24.smtpout.orange.fr [80.12.242.24]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 59CC795BB for ; Tue, 10 Jan 2023 12:21:29 -0800 (PST) Received: from pop-os.home ([86.243.100.34]) by smtp.orange.fr with ESMTPA id FL7cpSMgVPNsNFL7dpVOK1; Tue, 10 Jan 2023 21:21:27 +0100 X-ME-Helo: pop-os.home X-ME-Auth: Y2hyaXN0b3BoZS5qYWlsbGV0QHdhbmFkb28uZnI= X-ME-Date: Tue, 10 Jan 2023 21:21:27 +0100 X-ME-IP: 86.243.100.34 From: Christophe JAILLET To: Andrew Morton , Vineet Gupta , Greg Kroah-Hartman , Dan Carpenter Cc: linux-snps-arc@lists.infradead.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org, Christophe JAILLET Subject: [PATCH v2] bit_spinlock: Include Date: Tue, 10 Jan 2023 21:21:13 +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" In an attempt to simplify some includes in , it appeared, when compiling fs/ecryptfs/dentry.c, that was relying on other includes to get the definition of cpu_relax(). (see [1]) It broke on ARC. Include in to fix the issue. This will help to remove some un-needed includes from . [1]: https://lore.kernel.org/all/202301082130.LXMj5qkD-lkp@intel.com/ Signed-off-by: Christophe JAILLET --- Change in v2: - include instead of (Andrew Mort= on) =20 v1: https://lore.kernel.org/all/8b81101d59a31f4927016c17e49be96754a23380.167320= 4461.git.christophe.jaillet@wanadoo.fr/ --- include/linux/bit_spinlock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/bit_spinlock.h b/include/linux/bit_spinlock.h index bbc4730a6505..4e3b407963f6 100644 --- a/include/linux/bit_spinlock.h +++ b/include/linux/bit_spinlock.h @@ -4,9 +4,9 @@ =20 #include #include +#include #include #include - /* * bit-based spin_lock() * --=20 2.34.1