diff options
author | Chengming Zhou <[email protected]> | 2024-02-24 13:52:29 +0000 |
---|---|---|
committer | Jan Kara <[email protected]> | 2024-03-05 15:16:15 +0100 |
commit | a78e41a67bef099ca3ffee78c7eda8d43b693f27 (patch) | |
tree | 5168d332894b5513c98e9c9378d661f9f5b3f563 | |
parent | e29dd522c1d1f1d5dc59ab300a77889d80e80995 (diff) |
udf: 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]>
-rw-r--r-- | fs/udf/super.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/udf/super.c b/fs/udf/super.c index adb39e08b2f2..2217f7ed7a49 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) |