linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Vlastimil Babka <vbabka@suse.cz>
To: Harry Yoo <harry.yoo@oracle.com>, Hao Li <hao.li@linux.dev>
Cc: akpm@linux-foundation.org, cl@gentwo.org, rientjes@google.com,
	roman.gushchin@linux.dev, linux-mm@kvack.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] slub: let need_slab_obj_exts() return false if SLAB_NO_OBJ_EXT is set
Date: Fri, 6 Feb 2026 10:40:54 +0100	[thread overview]
Message-ID: <67ebb9f2-b383-4b68-949e-239d8c7b18f0@suse.cz> (raw)
In-Reply-To: <aYU7l6P2ikKvnrWT@hyeyoo>

On 2/6/26 01:53, Harry Yoo wrote:
> On Thu, Feb 05, 2026 at 08:07:23PM +0800, Hao Li wrote:
>> SLAB_NO_OBJ_EXT is set for boot caches, but need_slab_obj_exts() doesn't
>> check this flag. We should return false unconditionally when
>> SLAB_NO_OBJ_EXT is set.
>> 
>> Signed-off-by: Hao Li <hao.li@linux.dev>
>> ---
> 
> Looks reasonable to me,
> Acked-by: Harry Yoo <harry.yoo@oracle.com>

Thanks, added to slab/for-7.0/obj_metadata
I think it doesn't change anything at the moment? But a correct thing to do.

> Thanks!
> 
>>  mm/slub.c | 3 +++
>>  1 file changed, 3 insertions(+)
>> 
>> diff --git a/mm/slub.c b/mm/slub.c
>> index 865047eaf02b..3b1402e1c39d 100644
>> --- a/mm/slub.c
>> +++ b/mm/slub.c
>> @@ -901,6 +901,9 @@ static inline unsigned long get_orig_size(struct kmem_cache *s, void *object)
>>   */
>>  static inline bool need_slab_obj_exts(struct kmem_cache *s)
>>  {
>> +	if (s->flags & SLAB_NO_OBJ_EXT)
>> +		return false;
>> +
>>  	if (memcg_kmem_online() && (s->flags & SLAB_ACCOUNT))
>>  		return true;
>>  
> 



  reply	other threads:[~2026-02-06  9:41 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-02-05 12:07 Hao Li
2026-02-06  0:53 ` Harry Yoo
2026-02-06  9:40   ` Vlastimil Babka [this message]
2026-02-06 10:01     ` Harry Yoo
2026-02-06 10:03       ` Vlastimil Babka
2026-02-06 10:21         ` Harry Yoo
2026-02-06 11:35           ` Hao Li

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=67ebb9f2-b383-4b68-949e-239d8c7b18f0@suse.cz \
    --to=vbabka@suse.cz \
    --cc=akpm@linux-foundation.org \
    --cc=cl@gentwo.org \
    --cc=hao.li@linux.dev \
    --cc=harry.yoo@oracle.com \
    --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