linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: xiujianfeng <xiujianfeng@huawei.com>
To: "Song, Xiongwei" <Xiongwei.Song@windriver.com>,
	Xiu Jianfeng <xiujianfeng@huaweicloud.com>,
	"cl@linux.com" <cl@linux.com>,
	"penberg@kernel.org" <penberg@kernel.org>,
	"rientjes@google.com" <rientjes@google.com>,
	"iamjoonsoo.kim@lge.com" <iamjoonsoo.kim@lge.com>,
	"akpm@linux-foundation.org" <akpm@linux-foundation.org>,
	"vbabka@suse.cz" <vbabka@suse.cz>,
	"roman.gushchin@linux.dev" <roman.gushchin@linux.dev>,
	"42.hyeyoo@gmail.com" <42.hyeyoo@gmail.com>
Cc: "linux-mm@kvack.org" <linux-mm@kvack.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH -next] mm/slub: remove dummy slabinfo functions
Date: Thu, 21 Mar 2024 21:10:31 +0800	[thread overview]
Message-ID: <73ddccdf-9e4a-9fbd-893a-ab95a62fad44@huawei.com> (raw)
In-Reply-To: <PH0PR11MB51924AC8A58ABB22B8015296EC322@PH0PR11MB5192.namprd11.prod.outlook.com>

Hi,

On 2024/3/21 20:20, Song, Xiongwei wrote:
> 
> 
>> From: Xiu Jianfeng <xiujianfeng@huawei.com>
>>
>> Slab has been removed since 6.5, so there is no other versions of
> 
> Removed since 6.8. The changes looks good.

Yes, thanks for correcting!

> 
> Regards,
> Xiongwei
> 
>> slabinfo_show_stats() and slabinfo_write(), then we can remove these
>> two dummy functions.
>>
>> Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com>
>> ---
>>  mm/slab.h        |  3 ---
>>  mm/slab_common.c |  2 --
>>  mm/slub.c        | 10 ----------
>>  3 files changed, 15 deletions(-)
>>
>> diff --git a/mm/slab.h b/mm/slab.h
>> index d2bc9b191222..78e205b46e19 100644
>> --- a/mm/slab.h
>> +++ b/mm/slab.h
>> @@ -496,9 +496,6 @@ struct slabinfo {
>>  };
>>
>>  void get_slabinfo(struct kmem_cache *s, struct slabinfo *sinfo);
>> -void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *s);
>> -ssize_t slabinfo_write(struct file *file, const char __user *buffer,
>> -                      size_t count, loff_t *ppos);
>>
>>  #ifdef CONFIG_SLUB_DEBUG
>>  #ifdef CONFIG_SLUB_DEBUG_ON
>> diff --git a/mm/slab_common.c b/mm/slab_common.c
>> index f5234672f03c..67c03d6bd26c 100644
>> --- a/mm/slab_common.c
>> +++ b/mm/slab_common.c
>> @@ -1078,7 +1078,6 @@ static void cache_show(struct kmem_cache *s, struct seq_file *m)
>>                    sinfo.limit, sinfo.batchcount, sinfo.shared);
>>         seq_printf(m, " : slabdata %6lu %6lu %6lu",
>>                    sinfo.active_slabs, sinfo.num_slabs, sinfo.shared_avail);
>> -       slabinfo_show_stats(m, s);
>>         seq_putc(m, '\n');
>>  }
>>
>> @@ -1155,7 +1154,6 @@ static const struct proc_ops slabinfo_proc_ops = {
>>         .proc_flags     = PROC_ENTRY_PERMANENT,
>>         .proc_open      = slabinfo_open,
>>         .proc_read      = seq_read,
>> -       .proc_write     = slabinfo_write,
>>         .proc_lseek     = seq_lseek,
>>         .proc_release   = seq_release,
>>  };
>> diff --git a/mm/slub.c b/mm/slub.c
>> index 1bb2a93cf7b6..cc7e68fbdbba 100644
>> --- a/mm/slub.c
>> +++ b/mm/slub.c
>> @@ -7099,14 +7099,4 @@ void get_slabinfo(struct kmem_cache *s, struct slabinfo *sinfo)
>>         sinfo->objects_per_slab = oo_objects(s->oo);
>>         sinfo->cache_order = oo_order(s->oo);
>>  }
>> -
>> -void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *s)
>> -{
>> -}
>> -
>> -ssize_t slabinfo_write(struct file *file, const char __user *buffer,
>> -                      size_t count, loff_t *ppos)
>> -{
>> -       return -EIO;
>> -}
>>  #endif /* CONFIG_SLUB_DEBUG */
>> --
>> 2.34.1
>>
> 


      reply	other threads:[~2024-03-21 13:10 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-21  8:44 Xiu Jianfeng
2024-03-21 12:20 ` Song, Xiongwei
2024-03-21 13:10   ` xiujianfeng [this message]

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=73ddccdf-9e4a-9fbd-893a-ab95a62fad44@huawei.com \
    --to=xiujianfeng@huawei.com \
    --cc=42.hyeyoo@gmail.com \
    --cc=Xiongwei.Song@windriver.com \
    --cc=akpm@linux-foundation.org \
    --cc=cl@linux.com \
    --cc=iamjoonsoo.kim@lge.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=penberg@kernel.org \
    --cc=rientjes@google.com \
    --cc=roman.gushchin@linux.dev \
    --cc=vbabka@suse.cz \
    --cc=xiujianfeng@huaweicloud.com \
    /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