[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20240224134742.829325-1-chengming.zhou@linux.dev>
Date: Sat, 24 Feb 2024 13:47:42 +0000
From: chengming.zhou@...ux.dev
To: brauner@...nel.org,
bodonnel@...hat.com,
jack@...e.cz,
zhouchengming@...edance.com,
chuck.lever@...cle.com,
amir73il@...il.com
Cc: linux-kernel@...r.kernel.org,
linux-mm@...ck.org,
vbabka@...e.cz,
roman.gushchin@...ux.dev,
Xiongwei.Song@...driver.com,
chengming.zhou@...ux.dev
Subject: [PATCH] efs: remove SLAB_MEM_SPREAD flag usage
From: Chengming Zhou <zhouchengming@...edance.com>
The SLAB_MEM_SPREAD flag is already a no-op as of 6.8-rc1, remove
its usage so we can delete it from slab. No functional change.
Signed-off-by: Chengming Zhou <zhouchengming@...edance.com>
---
fs/efs/super.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/efs/super.c b/fs/efs/super.c
index c837ac89b384..e4421c10caeb 100644
--- a/fs/efs/super.c
+++ b/fs/efs/super.c
@@ -98,8 +98,8 @@ static int __init init_inodecache(void)
{
efs_inode_cachep = kmem_cache_create("efs_inode_cache",
sizeof(struct efs_inode_info), 0,
- SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD|
- SLAB_ACCOUNT, init_once);
+ SLAB_RECLAIM_ACCOUNT|SLAB_ACCOUNT,
+ init_once);
if (efs_inode_cachep == NULL)
return -ENOMEM;
return 0;
--
2.40.1
Powered by blists - more mailing lists