* [PATCH] mm/slub: Simplify get_partial_node()
@ 2024-03-11 13:27 sxwjean
2024-03-12 6:21 ` Chengming Zhou
0 siblings, 1 reply; 3+ messages in thread
From: sxwjean @ 2024-03-11 13:27 UTC (permalink / raw)
To: Christoph Lameter, Pekka Enberg, David Rientjes, Joonsoo Kim,
Andrew Morton, Vlastimil Babka, Roman Gushchin, Hyeonggon Yoo
Cc: linux-mm, linux-kernel, Xiongwei Song
From: Xiongwei Song <xiongwei.song@windriver.com>
Remove the check of !kmem_cache_has_cpu_partial() because it is always
false, we've known this by calling kmem_cache_debug() before calling
remove_partial(), so we can remove the check.
Meanwhile, redo filling cpu partial and add comment to improve the
readability.
Signed-off-by: Xiongwei Song <xiongwei.song@windriver.com>
---
mm/slub.c | 22 ++++++++++++----------
1 file changed, 12 insertions(+), 10 deletions(-)
diff --git a/mm/slub.c b/mm/slub.c
index a3ab096c38c0..62388f2a0ac7 100644
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -2620,19 +2620,21 @@ static struct slab *get_partial_node(struct kmem_cache *s,
if (!partial) {
partial = slab;
stat(s, ALLOC_FROM_PARTIAL);
- } else {
+
+ /* Fill cpu partial if needed from next iteration, or break */
+ if (IS_ENABLED(CONFIG_SLUB_CPU_PARTIAL))
+ continue;
+ else
+ break;
+ }
+
+ if (IS_ENABLED(CONFIG_SLUB_CPU_PARTIAL)) {
put_cpu_partial(s, slab, 0);
stat(s, CPU_PARTIAL_NODE);
- partial_slabs++;
- }
-#ifdef CONFIG_SLUB_CPU_PARTIAL
- if (!kmem_cache_has_cpu_partial(s)
- || partial_slabs > s->cpu_partial_slabs / 2)
- break;
-#else
- break;
-#endif
+ if (++partial_slabs > s->cpu_partial_slabs/2)
+ break;
+ }
}
spin_unlock_irqrestore(&n->list_lock, flags);
return partial;
--
2.34.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] mm/slub: Simplify get_partial_node()
2024-03-11 13:27 [PATCH] mm/slub: Simplify get_partial_node() sxwjean
@ 2024-03-12 6:21 ` Chengming Zhou
2024-03-12 6:53 ` Song, Xiongwei
0 siblings, 1 reply; 3+ messages in thread
From: Chengming Zhou @ 2024-03-12 6:21 UTC (permalink / raw)
To: sxwjean, Christoph Lameter, Pekka Enberg, David Rientjes,
Joonsoo Kim, Andrew Morton, Vlastimil Babka, Roman Gushchin,
Hyeonggon Yoo
Cc: linux-mm, linux-kernel, Xiongwei Song
On 2024/3/11 21:27, sxwjean@me.com wrote:
> From: Xiongwei Song <xiongwei.song@windriver.com>
>
> Remove the check of !kmem_cache_has_cpu_partial() because it is always
> false, we've known this by calling kmem_cache_debug() before calling
> remove_partial(), so we can remove the check.
This is correct.
>
> Meanwhile, redo filling cpu partial and add comment to improve the
> readability.
>
> Signed-off-by: Xiongwei Song <xiongwei.song@windriver.com>
> ---
> mm/slub.c | 22 ++++++++++++----------
> 1 file changed, 12 insertions(+), 10 deletions(-)
>
> diff --git a/mm/slub.c b/mm/slub.c
> index a3ab096c38c0..62388f2a0ac7 100644
> --- a/mm/slub.c
> +++ b/mm/slub.c
> @@ -2620,19 +2620,21 @@ static struct slab *get_partial_node(struct kmem_cache *s,
> if (!partial) {
> partial = slab;
> stat(s, ALLOC_FROM_PARTIAL);
> - } else {
> +
> + /* Fill cpu partial if needed from next iteration, or break */
> + if (IS_ENABLED(CONFIG_SLUB_CPU_PARTIAL))
> + continue;
> + else
> + break;
> + }
> +
> + if (IS_ENABLED(CONFIG_SLUB_CPU_PARTIAL)) {
But this won't work since "s->cpu_partial_slabs" is defined under CONFIG_SLUB_CPU_PARTIAL,
you would get compiler error if building without CONFIG_SLUB_CPU_PARTIAL.
Thanks.
> put_cpu_partial(s, slab, 0);
> stat(s, CPU_PARTIAL_NODE);
> - partial_slabs++;
> - }
> -#ifdef CONFIG_SLUB_CPU_PARTIAL
> - if (!kmem_cache_has_cpu_partial(s)
> - || partial_slabs > s->cpu_partial_slabs / 2)
> - break;
> -#else
> - break;
> -#endif
>
> + if (++partial_slabs > s->cpu_partial_slabs/2)
> + break;
> + }
> }
> spin_unlock_irqrestore(&n->list_lock, flags);
> return partial;
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [PATCH] mm/slub: Simplify get_partial_node()
2024-03-12 6:21 ` Chengming Zhou
@ 2024-03-12 6:53 ` Song, Xiongwei
0 siblings, 0 replies; 3+ messages in thread
From: Song, Xiongwei @ 2024-03-12 6:53 UTC (permalink / raw)
To: Chengming Zhou, sxwjean, Christoph Lameter, Pekka Enberg,
David Rientjes, Joonsoo Kim, Andrew Morton, Vlastimil Babka,
Roman Gushchin, Hyeonggon Yoo
Cc: linux-mm, linux-kernel
> On 2024/3/11 21:27, sxwjean@me.com wrote:
> > From: Xiongwei Song <xiongwei.song@windriver.com>
> >
> > Remove the check of !kmem_cache_has_cpu_partial() because it is always
> > false, we've known this by calling kmem_cache_debug() before calling
> > remove_partial(), so we can remove the check.
>
> This is correct.
>
> >
> > Meanwhile, redo filling cpu partial and add comment to improve the
> > readability.
> >
> > Signed-off-by: Xiongwei Song <xiongwei.song@windriver.com>
> > ---
> > mm/slub.c | 22 ++++++++++++----------
> > 1 file changed, 12 insertions(+), 10 deletions(-)
> >
> > diff --git a/mm/slub.c b/mm/slub.c
> > index a3ab096c38c0..62388f2a0ac7 100644
> > --- a/mm/slub.c
> > +++ b/mm/slub.c
> > @@ -2620,19 +2620,21 @@ static struct slab *get_partial_node(struct
> kmem_cache *s,
> > if (!partial) {
> > partial = slab;
> > stat(s, ALLOC_FROM_PARTIAL);
> > - } else {
> > +
> > + /* Fill cpu partial if needed from next iteration, or break */
> > + if (IS_ENABLED(CONFIG_SLUB_CPU_PARTIAL))
> > + continue;
> > + else
> > + break;
> > + }
> > +
> > + if (IS_ENABLED(CONFIG_SLUB_CPU_PARTIAL)) {
>
> But this won't work since "s->cpu_partial_slabs" is defined under
> CONFIG_SLUB_CPU_PARTIAL,
> you would get compiler error if building without CONFIG_SLUB_CPU_PARTIAL.
Yes, maybe we can use "#if IS_ENABLED(CONFIG_SLUB_CPU_PARTIAL)" instead.
Regards,
Xiongwei
>
> Thanks.
>
> > put_cpu_partial(s, slab, 0);
> > stat(s, CPU_PARTIAL_NODE);
> > - partial_slabs++;
> > - }
> > -#ifdef CONFIG_SLUB_CPU_PARTIAL
> > - if (!kmem_cache_has_cpu_partial(s)
> > - || partial_slabs > s->cpu_partial_slabs / 2)
> > - break;
> > -#else
> > - break;
> > -#endif
> >
> > + if (++partial_slabs > s->cpu_partial_slabs/2)
> > + break;
> > + }
> > }
> > spin_unlock_irqrestore(&n->list_lock, flags);
> > return partial;
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-03-12 6:53 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-11 13:27 [PATCH] mm/slub: Simplify get_partial_node() sxwjean
2024-03-12 6:21 ` Chengming Zhou
2024-03-12 6:53 ` Song, Xiongwei
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox