From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 AC83430C147 for ; Mon, 25 May 2026 18:09:49 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779732590; cv=none; b=WDF/BXU8ARKLJIPi/APo4UVencnOSE4qzjIyI5Qbk3ByrTSBXbVv56reX4x34lIlb1JMhtLalcxAhuDCqCVZvDYnkWUJAR3wPFuj7CnPXOgEa8KyTpUMt++3Cx0L1Pa+wRRh3Q9/24V9RbXLCTS/uhm6uSyLSmTiwZDO0N5cZ0M= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779732590; c=relaxed/simple; bh=GID1MnSfMOeNre0Vd1zU1LywYAoL8kGmDRDEY5wohjk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=MM4UX5kWurlSYouPm0JGODXRLT0Fc0/N89cZHSScHYnu3+Si+kDQtUaZpegjItu+Xeoo21fL3YUw+hHxKY8biXWWRZWf1HKph2xQ5JnEAOUT4/frQBrsZzeqbaBmFLtgLj8KdggtRkQesWi9BR8PO+pLt+jGt93C6jwfnS/9aXo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=JtJJOZN2; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="JtJJOZN2" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B08271F000E9; Mon, 25 May 2026 18:09:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1779732589; bh=PpMthd8gTUDZyL33DeH4wJrwmtOZsOaKvCtxKkVZwgQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=JtJJOZN21trFlyq8L/nh0RkHh+g7D2zvCrH4m6uyKH139J9rarXu9blBbaH5A/9+Y wIJnmliuSeONQ8GV1ICI6So+DdbU15bvinzEIKba4W0saTXOkwiRTD30V2V/6MzwdW ncZATkoODUQ+nOQlDAfeNWwZ9TawOr6lwOewuCHA8TgsHicJxVYZqvGc8TiArE8mHk yfaOYyHKCDtV5bIJucCYtGcSHqxWb5XnIOFX1d3fzUeUXHdxeu7+oripqx8sCl/yor 6K6prawrG48tG1eeuP3vikfF+PI56El+LSJGjfRRzwQsKZmMveshdgd8A41cOwfuAA jV/fBrTR8rD1Q== From: SeongJae Park To: "Vlastimil Babka (SUSE)" Cc: SeongJae Park , Harry Yoo , Andrew Morton , linux-kernel@vger.kernel.org, Hao Li , Christoph Lameter , David Rientjes , Roman Gushchin , linux-mm@kvack.org Subject: Re: [PATCH slab] MAINTAINERS: add slab-related scripts and tools to SLAB ALLOCATOR Date: Mon, 25 May 2026 11:09:40 -0700 Message-ID: <20260525180940.10383-1-sj@kernel.org> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260525-maint-slab-tools-v1-1-d66b69f1412a@kernel.org> References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit On Mon, 25 May 2026 09:26:39 +0200 "Vlastimil Babka (SUSE)" wrote: > Make sure the maintainers and reviewers are CC'd on changes to the > scripts and tools that depend on slab internals. > > Signed-off-by: Vlastimil Babka (SUSE) Acked-by: SeongJae Park > --- > MAINTAINERS | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/MAINTAINERS b/MAINTAINERS > index 288866c32ade..9ee06cd35793 100644 > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@ -24555,6 +24555,12 @@ F: mm/mempool.c > F: mm/slab.h > F: mm/slab_common.c > F: mm/slub.c > +F: scripts/gdb/linux/slab.py > +F: tools/cgroup/memcg_slabinfo.py > +F: tools/include/linux/slab.h > +F: tools/lib/slab.c > +F: tools/mm/slabinfo-gnuplot.sh > +F: tools/mm/slabinfo.c > I found there is rust/helpers/slab.c file and it is not in this section. Is it intentional? I found commits for the file doesn't have Vlastimil's R-b or A-b tags, so it might be intentional for rust code, but I'm just curious if that's correct. Thanks, SJ [...]