From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 6F0AA2596 for ; Tue, 27 Sep 2022 14:59:32 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8B93DC433D6; Tue, 27 Sep 2022 14:59:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1664290772; bh=ZZcSyerdIup6Pus5MkLELGylYpuuK8q173DpTiQjHzM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ccBzcbfZ4XVyGFDDJBaqahpBYuSjwnfr/jFOd7HcDeEHPf8DMPYgOwetvM+pjqlcy eZJoZJ/lVLowyGDkXDhlXflejxSae+6R4umCG4fF9XH122F80NrGUkZsF/Pmy2hDiW XIzUHZy2qLyQ0bOa4HKKdOVDyQ9IhtAiHsSe4+Zw= Date: Tue, 27 Sep 2022 16:59:29 +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 , Alex Gaynor , Geoffrey Thomas , Wedson Almeida Filho , Sven Van Asbroeck , Gary Guo , Boqun Feng , Maciej Falkowski , Wei Liu , =?iso-8859-1?Q?Bj=F6rn?= Roy Baron Subject: Re: [PATCH v10 06/27] rust: add C helpers Message-ID: References: <20220927131518.30000-1-ojeda@kernel.org> <20220927131518.30000-7-ojeda@kernel.org> Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220927131518.30000-7-ojeda@kernel.org> On Tue, Sep 27, 2022 at 03:14:37PM +0200, Miguel Ojeda wrote: > Introduces the source file that will contain forwarders to C macros > and inlined functions. > > Initially this only contains a single helper, but will gain more as > more functionality is added to the `kernel` crate in the future. > > Co-developed-by: Alex Gaynor > Signed-off-by: Alex Gaynor > Co-developed-by: Geoffrey Thomas > Signed-off-by: Geoffrey Thomas > Co-developed-by: Wedson Almeida Filho > Signed-off-by: Wedson Almeida Filho > Co-developed-by: Sven Van Asbroeck > Signed-off-by: Sven Van Asbroeck > Co-developed-by: Gary Guo > Signed-off-by: Gary Guo > Co-developed-by: Boqun Feng > Signed-off-by: Boqun Feng > Co-developed-by: Maciej Falkowski > Signed-off-by: Maciej Falkowski > Co-developed-by: Wei Liu > Signed-off-by: Wei Liu > Signed-off-by: Miguel Ojeda > --- > rust/helpers.c | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 51 insertions(+) > create mode 100644 rust/helpers.c Reviewed-by: Greg Kroah-Hartman