Skip to content

Commit c997d68

Browse files
Chengming Zhoubrauner
authored andcommitted
vfs: remove SLAB_MEM_SPREAD flag usage
The SLAB_MEM_SPREAD flag used to be implemented in SLAB, which was removed as of v6.8-rc1 (see [1]), so it became a dead flag since the commit 16a1d96 ("mm/slab: remove mm/slab.c and slab_def.h"). And the series[1] went on to mark it obsolete explicitly to avoid confusion for users. Here we can just remove all its users, which has no any functional change. Signed-off-by: Chengming Zhou <zhouchengming@bytedance.com> Link: https://lore.kernel.org/all/20240223-slab-cleanup-flags-v2-1-02f1753e8303@suse.cz [1] Link: https://lore.kernel.org/r/20240224135315.830477-1-chengming.zhou@linux.dev Signed-off-by: Christian Brauner <brauner@kernel.org>
1 parent 5916f43 commit c997d68

4 files changed

Lines changed: 4 additions & 5 deletions

File tree

fs/buffer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3122,7 +3122,7 @@ void __init buffer_init(void)
31223122
int ret;
31233123

31243124
bh_cachep = KMEM_CACHE(buffer_head,
3125-
SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|SLAB_MEM_SPREAD);
3125+
SLAB_RECLAIM_ACCOUNT|SLAB_PANIC);
31263126
/*
31273127
* Limit the bh occupancy to 10% of ZONE_NORMAL
31283128
*/

fs/dcache.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3136,7 +3136,7 @@ static void __init dcache_init(void)
31363136
* of the dcache.
31373137
*/
31383138
dentry_cache = KMEM_CACHE_USERCOPY(dentry,
3139-
SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|SLAB_MEM_SPREAD|SLAB_ACCOUNT,
3139+
SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|SLAB_ACCOUNT,
31403140
d_iname);
31413141

31423142
/* Hash may have been set up in dcache_init_early */

fs/inode.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2286,7 +2286,7 @@ void __init inode_init(void)
22862286
sizeof(struct inode),
22872287
0,
22882288
(SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|
2289-
SLAB_MEM_SPREAD|SLAB_ACCOUNT),
2289+
SLAB_ACCOUNT),
22902290
init_once);
22912291

22922292
/* Hash may have been set up in inode_init_early */

fs/mbcache.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -426,8 +426,7 @@ EXPORT_SYMBOL(mb_cache_destroy);
426426

427427
static int __init mbcache_init(void)
428428
{
429-
mb_entry_cache = KMEM_CACHE(mb_cache_entry,
430-
SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD);
429+
mb_entry_cache = KMEM_CACHE(mb_cache_entry, SLAB_RECLAIM_ACCOUNT);
431430
if (!mb_entry_cache)
432431
return -ENOMEM;
433432
return 0;

0 commit comments

Comments
 (0)