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 46E1419CCEB; Mon, 12 Aug 2024 18:26: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=1723487189; cv=none; b=BcEEV1jVVA1PIzMqaMc1YD/daQbRfAxNqNRCQop4az7DFJwtw6tdSG8Zz1JtO6OpzJTVrr6PdNGP1YTPNPvt9aEUjXgR1V8oB6/ZgVWmN7LI66AixKylKhsBUhoHSfdRNtxmITWeQIWqTdIq9mFLYdyBj3pUHn4idwvaBf+XpWA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1723487189; c=relaxed/simple; bh=pq9p+3MKfusrm9d+dkS4M59Yq++w7zxN0VRikqPFNQM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ZR4+YSX6jdjbbLRgQCRSasIes2TVrXpQJlvjnwwpywXjQv6U0/NMqQ6Jqo7KZctYDa8XhSIwEsZZOpENU7RzwqsphAizXFdLgiFO7ME3dhS8FqImu8h8wnfxDRik0w36AaoEohpnrue9wKeex5jwwxwG2Zh5KAyeOYrIFgg7OYE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=IrewnQXR; 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="IrewnQXR" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D9884C4AF15; Mon, 12 Aug 2024 18:26:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1723487188; bh=pq9p+3MKfusrm9d+dkS4M59Yq++w7zxN0VRikqPFNQM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=IrewnQXRBh0PBYuwXSIQzmoElmSkGlvcMIqqYkJoje+DqQVUvmpLyAjNKgHZj2XyC bLeNJWuUkdDY83SrJNoBjfbUX/5YEjdHOr2qvbI08G7Y8m/JJ9C9PWI7gEj7NEdg56 QMfJavksWPUfcD+0yrlxQqeXCHHsLY//EgheijRgeFWVjkW8fiAINf04QtccJXnICd zX4WVPUZ6XkHAB9nTETApAZM7kDsvWEMYZW0Ds5g9QfWDJtXvff/bLThXq6pF6eTdN eHpJ9utvJFX4N4z0b7ivpkyafVprJqj/0uvR1l/Hd/U+aH/x++mqll/JMs5mbzrMTI ImMXMjHnkjaeQ== From: Danilo Krummrich To: ojeda@kernel.org, alex.gaynor@gmail.com, wedsonaf@gmail.com, boqun.feng@gmail.com, gary@garyguo.net, bjorn3_gh@protonmail.com, benno.lossin@proton.me, a.hindborg@samsung.com, aliceryhl@google.com, akpm@linux-foundation.org Cc: daniel.almeida@collabora.com, faith.ekstrand@collabora.com, boris.brezillon@collabora.com, lina@asahilina.net, mcanal@igalia.com, zhiw@nvidia.com, cjia@nvidia.com, jhubbard@nvidia.com, airlied@redhat.com, ajanulgu@redhat.com, lyude@redhat.com, linux-kernel@vger.kernel.org, rust-for-linux@vger.kernel.org, linux-mm@kvack.org, Danilo Krummrich Subject: [PATCH v5 26/26] MAINTAINERS: add entry for the Rust `alloc` module Date: Mon, 12 Aug 2024 20:23:12 +0200 Message-ID: <20240812182355.11641-27-dakr@kernel.org> X-Mailer: git-send-email 2.45.2 In-Reply-To: <20240812182355.11641-1-dakr@kernel.org> References: <20240812182355.11641-1-dakr@kernel.org> Precedence: bulk X-Mailing-List: rust-for-linux@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Add maintainers entry for the Rust `alloc` module. Currently, this includes the `Allocator` API itself, `Allocator` implementations, such as `Kmalloc` or `Vmalloc`, as well as the kernel's implementation of the primary memory allocation data structures, `Box` and `Vec`. Signed-off-by: Danilo Krummrich --- MAINTAINERS | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 42decde38320..560516b3aaf4 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -19925,6 +19925,13 @@ F: scripts/*rust* F: tools/testing/selftests/rust/ K: \b(?i:rust)\b +RUST [ALLOC] +M: Danilo Krummrich +L: rust-for-linux@vger.kernel.org +S: Maintained +F: rust/kernel/alloc.rs +F: rust/kernel/alloc/ + RXRPC SOCKETS (AF_RXRPC) M: David Howells M: Marc Dionne -- 2.45.2