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 0572528689B; Tue, 26 Aug 2025 11:37:28 +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=1756208249; cv=none; b=droIAfB3CREyzG4j+iU9kBFYpF/Nvlb4silSHiaHBn0SBYf9f96/ZaHqAnrqjWO6GT+XAqnxevRsSRqWJOrS5dadnXZ6nfz136Yodsni5OfWuDFRcuuEHHaZIS5tJtH6nvcD+p3y4fAzNShjqnVECnhG33SZyoVfloJ69FDB0O4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756208249; c=relaxed/simple; bh=vhWjhyKOSmj/KSb4vVuq3nWGsNJx3May1+qso60gS6s=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=P3P+EP6b4iYahCK1Gc8yKkahUZiUQSIRmwgSo2EUcVb4GaoOWTsdvltnf56HYfIswu7UpwZrFk5j6N+D1I303MD961xVWJJqYlp3r+38XOpvbrREOcul54Gok616ZhXLdv4bnyvtvWLQlGYLAyft1QL8kJavJs7IMtHeE73DcZc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=I8fCMfel; 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="I8fCMfel" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E2E71C4CEF4; Tue, 26 Aug 2025 11:37:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1756208248; bh=vhWjhyKOSmj/KSb4vVuq3nWGsNJx3May1+qso60gS6s=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=I8fCMfelHs9mSQNbu4YTz9BqD96m9DiXDcbKvk7FTw9tQfzL9C0S2WSqEkz4a2PWd mt9YODmsey6WwpBL19wz6uXG52cRDDh7iAl7jfup7oWYAETN35SiNa51evaRbGzBGA T8NbZC+yDDlVQ7NYi6ybEo6qFjiRT9kGUep3g7Osj5DL0XrlDGrS1yJy7xtUpYeRhH Vtuk+fW45WPtxweHlWV50b3eZ/y+5JJaQ/xi+d6SbqUbVy2IzAWoUrzgftvyTXsBUH adeJc58LogdlkKGJjXSlXZ9G9hjguNwWvP8guQ9tH+DhYE0OwmXn1FtkAtUzkGPYuO StSPKIVP+gh6w== Message-ID: <9179276d-275a-49fd-8697-82283fea4bfb@kernel.org> Date: Tue, 26 Aug 2025 13:37:22 +0200 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v4 0/2] rust: zpool: add abstraction for zpool drivers To: Miguel Ojeda Cc: Vitaly Wool , rust-for-linux@vger.kernel.org, linux-kernel@vger.kernel.org, Uladzislau Rezki , Alice Ryhl , Vlastimil Babka , Lorenzo Stoakes , "Liam R . Howlett" , Miguel Ojeda , Alex Gaynor , Boqun Feng , Gary Guo , Bjorn Roy Baron , Benno Lossin , Andreas Hindborg , Trevor Gross , Johannes Weiner , Yosry Ahmed , Nhat Pham , linux-mm@kvack.org References: <20250823130420.867133-1-vitaly.wool@konsulko.se> From: Danilo Krummrich Content-Language: en-US In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit On 8/26/25 12:43 PM, Miguel Ojeda wrote: > On Sat, Aug 23, 2025 at 3:04 PM Vitaly Wool wrote: >> >> This patch provides the interface to use Zpool in Rust kernel code, >> thus enabling Rust implementations of Zpool allocators for Zswap. > > In v1 the usual use case question was asked -- could we get some more > details in the cover letter or ideally in the patch itself? > >> bindings/bindings_helper.h | 1 >> helpers/helpers.c | 1 >> helpers/zpool.c | 6 + >> kernel/alloc.rs | 5 >> kernel/lib.rs | 2 >> kernel/zpool.rs | 338 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > > Should a `MAINTAINERS` change be added? Was maintenance in general discussed? @Alice: I assume this should go under the Rust MM entry?