From: "Vlastimil Babka (SUSE)" <vbabka@kernel.org>
To: Harry Yoo <harry@kernel.org>
Cc: Hao Li <hao.li@linux.dev>, Christoph Lameter <cl@gentwo.org>,
David Rientjes <rientjes@google.com>,
Roman Gushchin <roman.gushchin@linux.dev>,
Geert Uytterhoeven <geert@linux-m68k.org>,
Conor Dooley <conor@kernel.org>,
Damien Le Moal <damien.lemoal@opensource.wdc.com>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH RFC 7/8] mm, slab: add slab_tiny boot param
Date: Thu, 24 Sep 2026 09:26:43 +0200 [thread overview]
Message-ID: <728a4a48-a2cc-4e0b-9c35-054ee0c31e78@kernel.org> (raw)
In-Reply-To: <20260923-slub_tiny_rework-v1-7-a0e66d536eb5@kernel.org>
On 9/23/26 17:45, Vlastimil Babka (SUSE) wrote:
> In order to deprecate the CONFIG_SLUB_TINY option, introduce an early
> boot param slab_tiny to control the value of slab_tiny_enabled.
>
> As long as CONFIG_SLUB_TINY is still around and enabled, this boot param
> can also override it to be disabled.
>
> Signed-off-by: Vlastimil Babka (SUSE) <vbabka@kernel.org>
> ---
> Documentation/admin-guide/kernel-parameters.txt | 4 ++++
> Documentation/admin-guide/mm/slab.rst | 5 +++++
> mm/slub.c | 7 +++++++
> 3 files changed, 16 insertions(+)
>
> diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt
> index 33cd30996e47..0100ab00388a 100644
> --- a/Documentation/admin-guide/kernel-parameters.txt
> +++ b/Documentation/admin-guide/kernel-parameters.txt
> @@ -7031,6 +7031,10 @@ Kernel parameters
> NUMA kernel object placement which helps with slow
> interconnects in NUMA systems.
>
> + slab_tiny= [MM, EARLY]
> + Minimize the slab allocator memory footprint at the
> + expense of SMP scalability.
> +
> slram= [HW,MTD]
>
> smart2= [HW]
> diff --git a/Documentation/admin-guide/mm/slab.rst b/Documentation/admin-guide/mm/slab.rst
> index 0beeae71d472..6c005d3de0b2 100644
> --- a/Documentation/admin-guide/mm/slab.rst
> +++ b/Documentation/admin-guide/mm/slab.rst
> @@ -94,6 +94,11 @@ kdump kernels where scalability is not a concern, but memory has to be
>
> slab_debug=N
>
> +Note that for this purpose you can instead use an option that can achieve
> +slightly better memory savings (by not creating separate kmalloc-rcl caches)::
> +
> + slab_tiny=1
> +
> You can apply different options to different list of slab names, using blocks
> of options. This will enable red zoning for dentry and user tracking for
> kmalloc. All other slabs will not get any debugging enabled::
> diff --git a/mm/slub.c b/mm/slub.c
> index 4814f025fde5..d672809fa2f6 100644
> --- a/mm/slub.c
> +++ b/mm/slub.c
> @@ -8726,6 +8726,13 @@ void __init kmem_cache_init_late(void)
> #endif
> }
>
> +static int __init early_slab_tiny(char *buf)
> +{
> + return kstrtobool(buf, &slub_tiny_enabled);
^ slab_tiny_enabled
missed a place on a last-minute rename.
The version in git is fixed:
https://git.kernel.org/pub/scm/linux/kernel/git/vbabka/linux.git/log/?h=b4/slub_tiny_rework
> +}
> +
> +early_param("slab_tiny", early_slab_tiny);
> +
> int do_kmem_cache_create(struct kmem_cache *s, const char *name,
> unsigned int size, struct kmem_cache_args *args,
> slab_flags_t flags)
>
next prev parent reply other threads:[~2026-09-24 7:26 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-23 15:45 [PATCH RFC 0/8] replace CONFIG_SLUB_TINY with a slab_tiny boot parameter Vlastimil Babka (SUSE)
2026-09-23 15:45 ` [PATCH RFC 1/8] mm, slab: refactor slab_min/max_order handling Vlastimil Babka (SUSE)
2026-09-23 15:45 ` [PATCH RFC 2/8] mm, slab: introduce slab_debug=N Vlastimil Babka (SUSE)
2026-09-23 15:45 ` [PATCH RFC 3/8] mm, slab: rework KMALLOC_RECLAIM handling of SLUB_TINY Vlastimil Babka (SUSE)
2026-09-23 15:45 ` [PATCH RFC 4/8] mm, slab: make SLUB_TINY handling dynamic for sizing decisions Vlastimil Babka (SUSE)
2026-09-23 15:45 ` [PATCH RFC 5/8] mm, slab: convert CONFIG_SLUB_TINY checks to kmem_cache_debug() Vlastimil Babka (SUSE)
2026-09-23 15:45 ` [PATCH RFC 6/8] mm, slab: remove remaining compile-time checks for CONFIG_SLUB_TINY Vlastimil Babka (SUSE)
2026-09-23 15:45 ` [PATCH RFC 7/8] mm, slab: add slab_tiny boot param Vlastimil Babka (SUSE)
2026-09-24 7:26 ` Vlastimil Babka (SUSE) [this message]
2026-09-23 15:45 ` [PATCH RFC 8/8] mm, slab: deprecate CONFIG_SLUB_TINY and reduce its Kconfig effects Vlastimil Babka (SUSE)
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=728a4a48-a2cc-4e0b-9c35-054ee0c31e78@kernel.org \
--to=vbabka@kernel.org \
--cc=cl@gentwo.org \
--cc=conor@kernel.org \
--cc=damien.lemoal@opensource.wdc.com \
--cc=geert@linux-m68k.org \
--cc=hao.li@linux.dev \
--cc=harry@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=rientjes@google.com \
--cc=roman.gushchin@linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®