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 gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 16A3CCA0EE4 for ; Wed, 20 Aug 2025 13:32:29 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 58A8410E262; Wed, 20 Aug 2025 13:32:28 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="S+3+ymXp"; dkim-atps=neutral Received: from sea.source.kernel.org (sea.source.kernel.org [172.234.252.31]) by gabe.freedesktop.org (Postfix) with ESMTPS id ADB7E10E262 for ; Wed, 20 Aug 2025 13:32:26 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by sea.source.kernel.org (Postfix) with ESMTP id 767BF4172C; Wed, 20 Aug 2025 13:32:26 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2D681C4CEEB; Wed, 20 Aug 2025 13:32:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1755696746; bh=Khr+sh1I/ZX+wHTb1vmBfEArOF9CiW/g/noN8NNg++Y=; h=Date:Cc:Subject:From:To:References:In-Reply-To:From; b=S+3+ymXpP6zsx3TQOzIrq+Y9zvNbh/jytkhuEnMjKH6CVcHk95oiNE8eRpEw2cDCU +PJyFjSLs/jd1/hrERRCPsrXz/VNhmigYN+beJdO1gBEo5VxoWOAiIxDm8H/kRa33w OsdoI4Qbfn4u08wgOln2N6f5lVQvBkL69/yF1SaqPPJplE055qGjncnyYrf0TUyzeV lGW+HgiJZtoPg6Gx3RFYgTzqa4s64IQaS8bv2liRp4QZ5kl7oGm0TeTX7lGBG2HSON v1x5cuhiLclZshZkrdlNWswl+VP06uOUpVBLoz4j20nFNmV2CcKpuUXeHN/r+2LRpW HcoW7MAASryMg== Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Wed, 20 Aug 2025 15:32:21 +0200 Message-Id: Cc: "Boqun Feng" , "Gary Guo" , =?utf-8?q?Bj=C3=B6rn_Roy_Baron?= , "Andreas Hindborg" , "Alice Ryhl" , "Trevor Gross" , , , Subject: Re: [PATCH] rust: nova-core: Update ARef imports from sync::aref From: "Benno Lossin" To: "Shankari Anand" , "Danilo Krummrich" , "Alexandre Courbot" , "David Airlie" , "Simona Vetter" , "Miguel Ojeda" , "Alex Gaynor" X-Mailer: aerc 0.20.1 References: <20250820112846.9665-1-shankari.ak0208@gmail.com> In-Reply-To: <20250820112846.9665-1-shankari.ak0208@gmail.com> X-BeenThere: nouveau@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Nouveau development list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: nouveau-bounces@lists.freedesktop.org Sender: "Nouveau" On Wed Aug 20, 2025 at 1:28 PM CEST, Shankari Anand wrote: > Update call sites in nova-core to import `ARef` > from `sync::aref` instead of `types`. > > This aligns with the ongoing effort to move `ARef` and > `AlwaysRefCounted` to sync. > > Suggested-by: Benno Lossin > Link: https://github.com/Rust-for-Linux/linux/issues/1173 > Signed-off-by: Shankari Anand Reviewed-by: Benno Lossin --- Cheers, Benno > --- > It part of a subsystem-wise split series, as suggested in: > https://lore.kernel.org/rust-for-linux/CANiq72=3DNSRMV_6UxXVgkebmWmbgN4i= =3DsfRszr-G+x3W5A4DYOg@mail.gmail.com/T/#u > This split series is intended to ease review and subsystem-level maintena= nce. > > The original moving patch is here: (commit 07dad44aa9a93) > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit= /?id=3D07dad44aa9a93b16af19e8609a10b241c352b440 > > Gradually the re-export from types.rs will be eliminated in the > future cycle. > --- > drivers/gpu/nova-core/falcon.rs | 2 +- > drivers/gpu/nova-core/fb.rs | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-)