diff options
author | Chengming Zhou <zhouchengming@bytedance.com> | 2024-02-24 13:49:01 +0000 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2024-03-05 15:15:43 +0100 |
commit | bbff9dc7d821183ef13a8fd7b7d95ca8fc325941 (patch) | |
tree | ee771663f1c047bca96f4e9aff7630415fa6e51e /fs/isofs | |
parent | 0d5fb7720b636578957a1a2409a397eea581be4d (diff) | |
download | linux-stable-bbff9dc7d821183ef13a8fd7b7d95ca8fc325941.tar.gz linux-stable-bbff9dc7d821183ef13a8fd7b7d95ca8fc325941.tar.bz2 linux-stable-bbff9dc7d821183ef13a8fd7b7d95ca8fc325941.zip |
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 <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: <20240224134901.829591-1-chengming.zhou@linux.dev>
Diffstat (limited to 'fs/isofs')
-rw-r--r-- | fs/isofs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/isofs/inode.c b/fs/isofs/inode.c index 379c9edc907c..2a616a9f289d 100644 --- a/fs/isofs/inode.c +++ b/fs/isofs/inode.c @@ -93,7 +93,7 @@ static int __init init_inodecache(void) isofs_inode_cachep = kmem_cache_create("isofs_inode_cache", sizeof(struct iso_inode_info), 0, (SLAB_RECLAIM_ACCOUNT| - SLAB_MEM_SPREAD|SLAB_ACCOUNT), + SLAB_ACCOUNT), init_once); if (!isofs_inode_cachep) return -ENOMEM; |