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 1B1A9C6FD18 for ; Wed, 19 Apr 2023 08:07:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232127AbjDSIHI (ORCPT ); Wed, 19 Apr 2023 04:07:08 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49764 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231654AbjDSIHD (ORCPT ); Wed, 19 Apr 2023 04:07:03 -0400 Received: from mail-40131.protonmail.ch (mail-40131.protonmail.ch [185.70.40.131]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 47186A5C7; Wed, 19 Apr 2023 01:06:55 -0700 (PDT) Date: Wed, 19 Apr 2023 08:06:48 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=proton.me; s=protonmail; t=1681891613; x=1682150813; bh=yDcINe1SSrAuEgU0eu40vrPrEWNwzjnrBuhCZcpXXBs=; h=Date:To:From:Cc:Subject:Message-ID:In-Reply-To:References: Feedback-ID:From:To:Cc:Date:Subject:Reply-To:Feedback-ID: Message-ID:BIMI-Selector; b=BhU/Z8WyZmwQMdSHDFz2vgO3Qz7wqusgLY+W616pPHAqVLEgPWdvoryP/1glt08BF zGBocVP2O77p7OAc4F0U9m5qSFqj6vnRONGTCu1DnlwRIHgw4auiLAKvxuqBXdzr1h pyjH5MJjzNplMpQnmGZd5J9kNZqR2qY3tUMTggzLWbQ6+btgJBKfW067K4sWMqkeV3 FBPzfrq+/e6swskgoBd0HWYstakK+lQ2UB36nRg0X4eVlyxh5vTKOwdqKR/kBuMVu8 5vqP425LM6IC4LzZzBJmALn1N40yRUR0NzvhIbw7hQjm7itslZt3dSBGXjYMJvZo7d MzMnuwgjMQj4Q== To: Miguel Ojeda From: Benno Lossin Cc: Wedson Almeida Filho , Alex Gaynor , Boqun Feng , Gary Guo , =?utf-8?Q?Bj=C3=B6rn_Roy_Baron?= , Josh Stone , William Brown , Georgy Yakovlev , Jan Alexander Steffens , rust-for-linux@vger.kernel.org, linux-kernel@vger.kernel.org, patches@lists.linux.dev Subject: Re: [PATCH 1/3] rust: alloc: clarify what is the upstream version Message-ID: In-Reply-To: <20230418214347.324156-2-ojeda@kernel.org> References: <20230418214347.324156-1-ojeda@kernel.org> <20230418214347.324156-2-ojeda@kernel.org> Feedback-ID: 71780778:user:proton MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: rust-for-linux@vger.kernel.org On 18.04.23 23:43, Miguel Ojeda wrote: > It may be unclear for readers which upstream Rust version these files > are based on. They may be unaware that they are intended to match the > minimum (and only, so far) supported version of Rust in the kernel. >=20 > Thus clarify it. >=20 > Signed-off-by: Miguel Ojeda Reviewed-by: Benno Lossin > --- > rust/alloc/README.md | 3 +++ > 1 file changed, 3 insertions(+) >=20 > diff --git a/rust/alloc/README.md b/rust/alloc/README.md > index c89c753720b5..eb6f22e94ebf 100644 > --- a/rust/alloc/README.md > +++ b/rust/alloc/README.md > @@ -10,6 +10,9 @@ upstream. In general, only additions should be performe= d (e.g. new > methods). Eventually, changes should make it into upstream so that, > at some point, this fork can be dropped from the kernel tree. >=20 > +The Rust upstream version on top of which these files are based matches > +the output of `scripts/min-tool-version.sh rustc`. > + >=20 > ## Rationale >=20 > -- > 2.40.0 >