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 7AD642DE702; Wed, 20 Aug 2025 23:38:48 +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=1755733128; cv=none; b=NyTocBucg8cxTiYXj/6L3mLzsG0hTAtpLVDim55CaHDEkTSVJCNdqLNXCVA0z8lVr7Ifnuh4b470j0XABHW751IfKn/xY5i0HBdHGtEpZK9qW4WV+AjJYWovMud+/2rJA+lrOijTw68AY8cC1zDuLkD92MXeNp3HN9e/9VQIGr4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755733128; c=relaxed/simple; bh=XjKLPIJpPl8XNfbf0L8f2m+lNzBLHaWsnTNgo9GwnVE=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=fjgenLhOrW9TXo6PW0a8SDF/Uj3As7MHoYN1vaSjEVzWSBK/Nh/g5ylSWSVsuOpD0qskK7BGludFp+Tk1mpV5AtTET4Qmz38FMC/KVbe6RFmi+ymMjAENj7jd9uOaLjN48ue99PYcCmRrkXsY64DRXjmwReiGcJVj0PrrwPgA3U= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=BZxPOTpZ; 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="BZxPOTpZ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id EC9F2C4CEE7; Wed, 20 Aug 2025 23:38:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1755733128; bh=XjKLPIJpPl8XNfbf0L8f2m+lNzBLHaWsnTNgo9GwnVE=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=BZxPOTpZJxvSFocTM9w9CIuObkM0bYYsWS2CYPaNUfIdG/Nd4Wl83e2ZR0kkxFnTi c7uydLc9kmaKJEjtXr7XDmtoyQvgvdq85Cg/1+JJLBrmrQpkYApdgUq/zYXKwlqIt3 IDtxr17v74sWirsYaxBQD/Mn3mPcR4G6sTd5YStRpcTDEM96R7n8hEtKmePi49Wm+6 niLG1HW6pYuMQpjdprMHzF349b6YN1QTUdWZtEBYpIFLQHQL5xxLw1jLBZ2wFzyz8+ DuKKYLT/OglbAp6R0R4yVFQb1BOTyNBlGjkQ9pQVdCsJ7Wou2EhhHhjoFEE0tzKFh4 QyOkYh4V8KykA== Message-ID: Date: Thu, 21 Aug 2025 01:38:43 +0200 Precedence: bulk X-Mailing-List: rust-for-linux@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH 3/7] rust: mm: update ARef and AlwaysRefCounted imports from sync::aref To: Andrew Morton Cc: Alice Ryhl , Shankari Anand , Miguel Ojeda , Alex Gaynor , linux-mm@kvack.org, rust-for-linux@vger.kernel.org, linux-kernel@vger.kernel.org, Lorenzo Stoakes , "Liam R . Howlett" , Boqun Feng , Gary Guo , =?UTF-8?Q?Bj=C3=B6rn_Roy_Baron?= , Benno Lossin , Andreas Hindborg , Trevor Gross References: <20250716091158.812860-1-shankari.ak0208@gmail.com> <20250820162518.7dd218ef331618bea11e9c2b@linux-foundation.org> From: Danilo Krummrich Content-Language: en-US In-Reply-To: <20250820162518.7dd218ef331618bea11e9c2b@linux-foundation.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit On 8/21/25 1:25 AM, Andrew Morton wrote: > On Fri, 15 Aug 2025 15:51:31 +0200 Alice Ryhl wrote: > >> On Wed, Jul 16, 2025 at 11:16 AM Shankari Anand >> wrote: >>> >>> Update call sites in the mm subsystem 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 >>> Signed-off-by: Shankari Anand >> >> Andrew, would you be able to pick up this patch? Thanks! > > I prefer not to grab a single patch from the middle of a series, so > please add > > Acked-by: Andrew Morton > > and merge this alongside the remainder of that series, thanks. This patch was sent standalone. The reason for the "3/7" suffix is that the author wasn't aware that this should be avoided for independent patches. It was previously part of a treewide series, where the treewide changes have been decided to do in multiple cycles instead, such that each subsystem can pick up the corresponding patches.