All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] jfs: remove SLAB_MEM_SPREAD flag usage
@ 2024-02-24 13:49 chengming.zhou
  2024-02-27 10:52 ` Christian Brauner
  0 siblings, 1 reply; 3+ messages in thread
From: chengming.zhou @ 2024-02-24 13:49 UTC (permalink / raw)
  To: shaggy, jack, jlayton, brauner, chuck.lever, zhouchengming
  Cc: amir73il, jfs-discussion, linux-kernel, linux-mm, vbabka,
	roman.gushchin, Xiongwei.Song, chengming.zhou

From: Chengming Zhou <zhouchengming@bytedance.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@bytedance.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



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-02-27 14:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-24 13:49 [PATCH] jfs: remove SLAB_MEM_SPREAD flag usage chengming.zhou
2024-02-27 10:52 ` Christian Brauner
2024-02-27 14:22   ` Dave Kleikamp

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.