[PATCH] affs: remove SLAB_MEM_SPREAD flag usage

chengming.zhou@linux.dev posted 1 patch 1 year, 9 months ago
fs/affs/super.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] affs: remove SLAB_MEM_SPREAD flag usage
Posted by chengming.zhou@linux.dev 1 year, 9 months ago
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/affs/super.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/affs/super.c b/fs/affs/super.c
index 58b391446ae1..dcccad2a2b32 100644
--- a/fs/affs/super.c
+++ b/fs/affs/super.c
@@ -131,7 +131,7 @@ static int __init init_inodecache(void)
 	affs_inode_cachep = kmem_cache_create("affs_inode_cache",
 					     sizeof(struct affs_inode_info),
 					     0, (SLAB_RECLAIM_ACCOUNT|
-						SLAB_MEM_SPREAD|SLAB_ACCOUNT),
+						SLAB_ACCOUNT),
 					     init_once);
 	if (affs_inode_cachep == NULL)
 		return -ENOMEM;
-- 
2.40.1
Re: [PATCH] affs: remove SLAB_MEM_SPREAD flag usage
Posted by David Sterba 1 year, 9 months ago
On Sat, Feb 24, 2024 at 01:46:37PM +0000, chengming.zhou@linux.dev wrote:
> 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>

Thanks, I'll pick it for the next merge window.