Skip to content

Commit e29dd52

Browse files
Chengming Zhoujankara
authored andcommitted
quota: 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 <zhouchengming@bytedance.com> Signed-off-by: Jan Kara <jack@suse.cz> Link: https://lore.kernel.org/all/20240223-slab-cleanup-flags-v2-1-02f1753e8303@suse.cz/ Message-Id: <20240224135118.830073-1-chengming.zhou@linux.dev>
1 parent bbff9dc commit e29dd52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/quota/dquot.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3008,7 +3008,7 @@ static int __init dquot_init(void)
30083008
dquot_cachep = kmem_cache_create("dquot",
30093009
sizeof(struct dquot), sizeof(unsigned long) * 4,
30103010
(SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
3011-
SLAB_MEM_SPREAD|SLAB_PANIC),
3011+
SLAB_PANIC),
30123012
NULL);
30133013

30143014
order = 0;

0 commit comments

Comments
 (0)