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 9A2F71E0B9C; Mon, 18 Aug 2025 22:16:49 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755555409; cv=none; b=pAA5b7Yp9Wd8ornSou/7biYd/zwIScduAHg8NoE3RPusGFlOozPnCgrM5NLjVj2W1z/u9aXUGB+SPdKSRkA+7tKzj7NDu2Y60gBtC/EfKvYvCFD6rJv0CsYBmcC1VeRhyQkjufr/pGWcm/2Fboye8Zqnfd96sN965FPl4WsxbKE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755555409; c=relaxed/simple; bh=aar4KTOME9V0w9cBkGFvAg6tf9ZINGNl76ydQC+q7N0=; h=Mime-Version:Content-Type:Date:Message-Id:Cc:Subject:From:To: References:In-Reply-To; b=Q9cdWEqu2QoDeqkaYBZ1E/R4NrwyCecdFPI1X0OtQ9dyVmdn8p8dzKfSd00MYt6vkw8VvlR2Ue9e8ZgQOBqAimg+3pckgrkKtlSIkstSVAUGjjJyqpBcQhmdxKgxNnoWBZsNApYBQ/W1pDrtPZfFGdEVPhBpPLpwH0a53qGCnWA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=u1NVH3wR; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="u1NVH3wR" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E17DBC4CEEB; Mon, 18 Aug 2025 22:16:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1755555409; bh=aar4KTOME9V0w9cBkGFvAg6tf9ZINGNl76ydQC+q7N0=; h=Date:Cc:Subject:From:To:References:In-Reply-To:From; b=u1NVH3wRnfmBGLq7UR8UtLFXQS8iTRrTCozoNq1NDOBDxZHzhRapoMmi27aERp/GE y8C7id7HHYQKcuhnd3EvX7BwPUuxj2vBydVhu36Bo8nwSo3F9tXWYBeGn3wUc2Kr7q qdDa9b2A7Cqcu+jvQJ1JrvRgy6XOhkFv2a5BcKXWiVzeD/g/pLFEMsXytWTIMKD/Uc 9+8sffcZWyfWNXlqo5jJ89k48FzUsB5MV1sGd99ScbHNLaS4hbwjERVMdgWRY3TaMy G6i6YjrteokhLLS+RWQDNHl9qbzVX0IzXqhCjNLGvp0XgExZ5zyAsWW93gzRDPghhn XLb+FLCQmsWyw== Precedence: bulk X-Mailing-List: rust-for-linux@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Tue, 19 Aug 2025 00:16:45 +0200 Message-Id: Cc: "Boqun Feng" , "Gary Guo" , =?utf-8?q?Bj=C3=B6rn_Roy_Baron?= , "Andreas Hindborg" , "Alice Ryhl" , "Trevor Gross" , "Danilo Krummrich" , , Subject: Re: [PATCH] rust: sync: Update ARef and AlwaysRefCounted imports from sync::aref From: "Benno Lossin" To: "Shankari Anand" , "Miguel Ojeda" , "Alex Gaynor" X-Mailer: aerc 0.20.1 References: <20250818191034.523381-1-shankari.ak0208@gmail.com> In-Reply-To: <20250818191034.523381-1-shankari.ak0208@gmail.com> On Mon Aug 18, 2025 at 9:10 PM CEST, Shankari Anand wrote: > Update the in-file reference of sync/aref.rs to import `ARef` and > `AlwaysRefCounted` 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 > Fixes: 07dad44aa9a93 ("rust: kernel: move ARef and AlwaysRefCounted to sy= nc::aref") > Signed-off-by: Shankari Anand > --- > This follows the commit [1] which moves ARef and AlwaysRefCounted modules= to sync/aref.rs. > > Apologies, I had missed out on changing the in-file reference call for th= e modules. This should fix that. > > [1] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/co= mmit/?id=3D07dad44aa9a93b16af19e8609a10b241c352b440 > --- > rust/kernel/sync/aref.rs | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Reviewed-by: Benno Lossin --- Cheers, Benno