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 07FD61E51FA; Mon, 29 Sep 2025 20:32:09 +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=1759177930; cv=none; b=qzqM3QcLxEfT/BsphVqVSw9jd1EyHLImw973703yVMcBizdlV9TLh2kwwBPBDhaPSwJY204a0d9VqNsT1eIZyWh0GeR2iXUGUNszvZTu9YOt+LmXuWpnNZXRqlq97WSp7UWxv8xr5OUHStZdjdXhmEtQ34YMtu6g2nYWSh+pgwA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1759177930; c=relaxed/simple; bh=ne+Iy9QthEM/h4gXruzj9mfQSwF9p/v7sj7AC4pgo+4=; h=Mime-Version:Content-Type:Date:Message-Id:Subject:Cc:To:From: References:In-Reply-To; b=LrrFAuJMh9QzGddcbcMcAd8ANCTbOXnYEPOJzNlHUuXMAQaJ67w99CsWTonA3YVe5xF/Zl3RS2GMQxWGPEN2s+caa/mg0RY8SrhI33lK2NdLAgrJGciBSqWxBJHYB6m9eeiUjDjoP4I+drNaywyvD0qiYfzMY7qwCOmanNqufQI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=pCf0Bpat; 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="pCf0Bpat" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 70F22C4CEF4; Mon, 29 Sep 2025 20:32:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1759177929; bh=ne+Iy9QthEM/h4gXruzj9mfQSwF9p/v7sj7AC4pgo+4=; h=Date:Subject:Cc:To:From:References:In-Reply-To:From; b=pCf0Bpat2e/6sMP9BFpxqNCX9HDxD7wCA+PJNzyMTERWbxQdoFdEdM2+/EEtYn74X EdNov68tcVMXnqIAXK9doBhbKr5ITjnbwMArPdHPIgGGt2HFtGS7NtfKrTJ8nAUEic FmAE/3WFAzT3yWpnYWPEz4KGEmsONMYO89oMQmepWiXjoAzIDN4ffpy8Qn20yJQP4x xxjZbNA1w3ygRq6hz5zKd2ubTjxrZ4vtVzrZyFGq+6hUzuh3dkNA4zF6PVYDuhYiRB y1FbPSpr3y0oYgZDy6xr32bf26H5leMleyVti8M41q/DNNqktBsI2IihLdrKzc4Ku6 KtRQdBZNjYPpA== 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: Mon, 29 Sep 2025 22:32:04 +0200 Message-Id: Subject: Re: [PATCH] rust: slab: add basic slab module Cc: "Elijah Wright" , "Miguel Ojeda" , "Alex Gaynor" , "Boqun Feng" , "Gary Guo" , =?utf-8?q?Bj=C3=B6rn_Roy_Baron?= , "Benno Lossin" , "Andreas Hindborg" , "Alice Ryhl" , "Trevor Gross" , , , "Lorenzo Stoakes" , "Vlastimil Babka" , "Liam R. Howlett" , "Uladzislau Rezki" , To: "Elijah" From: "Danilo Krummrich" References: <20250924193643.4001-1-git@elijahs.space> In-Reply-To: On Mon Sep 29, 2025 at 4:11 PM CEST, Elijah wrote: > On 9/28/2025 7:47 AM, Danilo Krummrich wrote: >> On Thu Sep 25, 2025 at 11:54 AM CEST, Danilo Krummrich wrote: >>> (3) Implement a macro to generate a custom KmemCache Allocator trait >>> implementation for every KmemCache instance with a static lifeti= me. >>=20 >> Thinking about it a bit more, I think we should go with option (3) for n= ow. > > do you want me to implement that now? if so I can take a look in a few ho= urs I think it is what we settle with, so if you want to work on that, that'd b= e great! :)