2024-02-24 13:47:06

by Chengming Zhou

[permalink] [raw]
Subject: [PATCH] affs: remove SLAB_MEM_SPREAD flag usage

From: Chengming Zhou <[email protected]>

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 <[email protected]>
---
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



2024-02-26 11:18:33

by David Sterba

[permalink] [raw]
Subject: Re: [PATCH] affs: remove SLAB_MEM_SPREAD flag usage

On Sat, Feb 24, 2024 at 01:46:37PM +0000, [email protected] wrote:
> From: Chengming Zhou <[email protected]>
>
> 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 <[email protected]>

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