Skip to content

Commit bbff9dc

Browse files
Chengming Zhoujankara
authored andcommitted
isofs: remove SLAB_MEM_SPREAD flag usage
The SLAB_MEM_SPREAD flag is already a no-op after removal of SLAB allocator and in [1] it was fully deprecated. Remove its usage so we can delete it from slab. No functional change. Signed-off-by: Chengming Zhou <[email protected]> Signed-off-by: Jan Kara <[email protected]> Link: https://lore.kernel.org/all/[email protected]/ Message-Id: <[email protected]>
1 parent 0d5fb77 commit bbff9dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/isofs/inode.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ static int __init init_inodecache(void)
9393
isofs_inode_cachep = kmem_cache_create("isofs_inode_cache",
9494
sizeof(struct iso_inode_info),
9595
0, (SLAB_RECLAIM_ACCOUNT|
96-
SLAB_MEM_SPREAD|SLAB_ACCOUNT),
96+
SLAB_ACCOUNT),
9797
init_once);
9898
if (!isofs_inode_cachep)
9999
return -ENOMEM;

0 commit comments

Comments
 (0)