[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20240224134925.829677-1-chengming.zhou@linux.dev>
Date: Sat, 24 Feb 2024 13:49:25 +0000
From: chengming.zhou@...ux.dev
To: shaggy@...nel.org,
jack@...e.cz,
jlayton@...nel.org,
brauner@...nel.org,
chuck.lever@...cle.com,
zhouchengming@...edance.com
Cc: amir73il@...il.com,
jfs-discussion@...ts.sourceforge.net,
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] jfs: 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/jfs/super.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/jfs/super.c b/fs/jfs/super.c
index ff135a43b5b7..e1be21ca5d6e 100644
--- a/fs/jfs/super.c
+++ b/fs/jfs/super.c
@@ -932,7 +932,7 @@ static int __init init_jfs_fs(void)
jfs_inode_cachep =
kmem_cache_create_usercopy("jfs_ip", sizeof(struct jfs_inode_info),
- 0, SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD|SLAB_ACCOUNT,
+ 0, SLAB_RECLAIM_ACCOUNT|SLAB_ACCOUNT,
offsetof(struct jfs_inode_info, i_inline_all),
sizeof_field(struct jfs_inode_info, i_inline_all),
init_once);
--
2.40.1
Powered by blists - more mailing lists