aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChengming Zhou <zhouchengming@bytedance.com>2024-02-24 13:52:29 +0000
committerJan Kara <jack@suse.cz>2024-03-05 15:16:15 +0100
commita78e41a67bef099ca3ffee78c7eda8d43b693f27 (patch)
tree5168d332894b5513c98e9c9378d661f9f5b3f563
parente29dd522c1d1f1d5dc59ab300a77889d80e80995 (diff)
downloadlinux-fs-for_linus.tar.gz
udf: remove SLAB_MEM_SPREAD flag usagefs_for_v6.9-rc1for_linus
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: <20240224135229.830356-1-chengming.zhou@linux.dev>
-rw-r--r--fs/udf/super.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/udf/super.c b/fs/udf/super.c
index adb39e08b2f22..2217f7ed7a495 100644
--- a/fs/udf/super.c
+++ b/fs/udf/super.c
@@ -188,7 +188,6 @@ static int __init init_inodecache(void)
udf_inode_cachep = kmem_cache_create("udf_inode_cache",
sizeof(struct udf_inode_info),
0, (SLAB_RECLAIM_ACCOUNT |
- SLAB_MEM_SPREAD |
SLAB_ACCOUNT),
init_once);
if (!udf_inode_cachep)