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 BB3FEC6FA83 for ; Tue, 27 Sep 2022 15:27:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230334AbiI0P1G (ORCPT ); Tue, 27 Sep 2022 11:27:06 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59362 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229572AbiI0P1F (ORCPT ); Tue, 27 Sep 2022 11:27:05 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E4DAB15446B; Tue, 27 Sep 2022 08:27:04 -0700 (PDT) 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 6FBFCB81C5C; Tue, 27 Sep 2022 15:27:03 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 92867C433C1; Tue, 27 Sep 2022 15:27:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1664292422; bh=6v4Oqxr3Gg1DGJAp8ecODjIb6AxK0MJVn3dh8qzwnLI=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=uJ/+V7PMj+dFdJBOuPQkF/a+vAHpeWhq/NssAVChneZvNbBsXXHMRlT2wxqNcL7FU GyKU7JDD/uuN7WBWDMl5KQ2DqLKvDimdYhfsbUL+aVsYFn82zNxdFsJt0L8nI+cuUy KmJGhbEVeenAZzYL8PIys6dNlcALv5DJct/9Xt1s= Date: Tue, 27 Sep 2022 17:26:59 +0200 From: Greg Kroah-Hartman To: Miguel Ojeda Cc: Linus Torvalds , rust-for-linux@vger.kernel.org, linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, patches@lists.linux.dev, Jarkko Sakkinen , Daniel Xu , Kees Cook , Alex Gaynor , Wedson Almeida Filho , Boqun Feng , Gary Guo , =?iso-8859-1?Q?Bj=F6rn?= Roy Baron Subject: Re: [PATCH v10 21/27] scripts: add `is_rust_module.sh` Message-ID: References: <20220927131518.30000-1-ojeda@kernel.org> <20220927131518.30000-22-ojeda@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220927131518.30000-22-ojeda@kernel.org> Precedence: bulk List-ID: X-Mailing-List: rust-for-linux@vger.kernel.org On Tue, Sep 27, 2022 at 03:14:52PM +0200, Miguel Ojeda wrote: > From: Daniel Xu > > This script is used to detect whether a kernel module is written > in Rust. > > It will later be used to disable BTF generation on Rust modules as > BTF does not yet support Rust. > > Reviewed-by: Kees Cook > Co-developed-by: Alex Gaynor > Signed-off-by: Alex Gaynor > Co-developed-by: Wedson Almeida Filho > Signed-off-by: Wedson Almeida Filho > Signed-off-by: Daniel Xu > Co-developed-by: Miguel Ojeda > Signed-off-by: Miguel Ojeda > --- > scripts/is_rust_module.sh | 16 ++++++++++++++++ > 1 file changed, 16 insertions(+) > create mode 100755 scripts/is_rust_module.sh Reviewed-by: Greg Kroah-Hartman