From mboxrd@z Thu Jan 1 00:00:00 1970 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 E21D1C61DB3 for ; Tue, 10 Jan 2023 07:20:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231405AbjAJHUC (ORCPT ); Tue, 10 Jan 2023 02:20:02 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42136 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230446AbjAJHT6 (ORCPT ); Tue, 10 Jan 2023 02:19:58 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C149A1A066; Mon, 9 Jan 2023 23:19:57 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 75941B81126; Tue, 10 Jan 2023 07:19:56 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id BFC8EC433F0; Tue, 10 Jan 2023 07:19:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1673335195; bh=Vq616gbwymfsGxKmfDRsySN7+m4LEuQS7EzTcz4ZHkI=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=a/VEo/lCYP+p45d8/rYEc0sbVo2alyJDKrnmcKhyH1AeAYvPU3ycxgcVgKX1RunPO 4t9UxdujD0tZzGUYvZTOzwyf1plZh3R5GV25JMhetGZXVvU24CyahRcMay3YnNt0m7 yEfkGP2hlcyGEAYUAeIUSG6B/5rMzwuiBuDRkmiK3Qxpjx/nBghqpBMtjXdqH3dQUo T/NyFEnB1rn1LmRxSeQDZf3EMLc1P0mOddpWipv1iR2BQJcvyMqTr3TYz/iC5kVdRT lfbYNKasrzi58el/IUVluM1ATnZFtVbNHa5j6S6Tz22sK/IlCP8dPpkqKSchAYGX8i g9kTLqUCDhdaA== Message-ID: Date: Mon, 9 Jan 2023 23:19:53 -0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.4.2 Subject: Re: [PATCH] bit_spinlock: Include Content-Language: en-US To: Christophe JAILLET , Greg Kroah-Hartman , Vineet Gupta , Dan Carpenter Cc: linux-snps-arc@lists.infradead.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org References: <8b81101d59a31f4927016c17e49be96754a23380.1673204461.git.christophe.jaillet@wanadoo.fr> From: Vineet Gupta In-Reply-To: <8b81101d59a31f4927016c17e49be96754a23380.1673204461.git.christophe.jaillet@wanadoo.fr> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 1/8/23 11:04, Christophe JAILLET wrote: > 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. It its just ARC that broke, maybe we can do something there ? > Include in to fix the issue. > This will help remove some un-needed includes from . > > [1]: https://lore.kernel.org/all/202301082130.LXMj5qkD-lkp@intel.com/ > > Signed-off-by: Christophe JAILLET > --- > Not sure who to send this to. > get_maintainer.pl is of no help, and the file is untouched from a too long > time. > > Greg? Dan? Any pointer? > --- > include/linux/bit_spinlock.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/include/linux/bit_spinlock.h b/include/linux/bit_spinlock.h > index bbc4730a6505..d0fd2a7afca2 100644 > --- a/include/linux/bit_spinlock.h > +++ b/include/linux/bit_spinlock.h > @@ -2,6 +2,7 @@ > #ifndef __LINUX_BIT_SPINLOCK_H > #define __LINUX_BIT_SPINLOCK_H > > +#include > #include > #include > #include