From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from lindbergh.monkeyblade.net (lindbergh.monkeyblade.net [23.128.96.19]) (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 D54959CA47 for ; Thu, 21 Sep 2023 21:47:25 +0000 (UTC) Received: from gimli.kloenk.dev (gimli.kloenk.dev [49.12.72.200]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 80A5CA250; Thu, 21 Sep 2023 14:47:13 -0700 (PDT) From: Finn Behrens DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kloenk.dev; s=mail; t=1695332829; bh=dibhVPJvQaXwsPDV+JZyg3dOQIzNC4VBUKFGV6Vi5fM=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=G1RsT7gNdsmNaemGoEwV2kSzt8p0vWCPiuy+qGtD+EZPcIMj/1ANFF7GTY0xlEFPW +uhqBM6wYSFeGFknIPfYRWNdstQkAxasCJ7NazGfnqYLvpTICAUxr31dqV+6tcYTEG KOlu7+W9pNwkLLTy75iilAIowP1vvKBzdruucOE0= To: Wedson Almeida Filho Cc: rust-for-linux@vger.kernel.org, Miguel Ojeda , Alex Gaynor , Boqun Feng , Gary Guo , =?utf-8?q?Bj=C3=B6rn_Roy_Baron?= , Benno Lossin , Andreas Hindborg , Alice Ryhl , linux-kernel@vger.kernel.org, Wedson Almeida Filho Subject: Re: [PATCH 1/2] rust: arc: rename `ArcInner` to `WithRef` Date: Thu, 21 Sep 2023 23:47:07 +0200 Message-ID: <5B67E427-E65F-4DC3-9520-FBD8ADBBB6DC@kloenk.dev> In-Reply-To: <20230921213440.202017-2-wedsonaf@gmail.com> References: <20230921213440.202017-1-wedsonaf@gmail.com> <20230921213440.202017-2-wedsonaf@gmail.com> Precedence: bulk X-Mailing-List: rust-for-linux@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-2.1 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS, URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on lindbergh.monkeyblade.net On 21 Sep 2023, at 23:34, Wedson Almeida Filho wrote: > From: Wedson Almeida Filho > > This is in preparation for removing `ArcBorrow` and making `WithRef` > public. > > This is a pure name change with no functional changes intended. > > Suggested-by: Björn Roy Baron > Signed-off-by: Wedson Almeida Filho > --- Reviewed-by: Finn Behrens