aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2024-03-12 12:35:42 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2024-03-12 12:35:42 -0700
commitcbcb9b5bc9804c2e803f00a460c212f9a0bbdb0d (patch)
tree1e511d021883a63d476d68959f7d70a6eee55309
parent43a7548e28a6df12a6170421d9d016c576010baa (diff)
parentf7c79a40b575f2b6c156c8bee9a652401bf715b6 (diff)
downloadtip-cbcb9b5bc9804c2e803f00a460c212f9a0bbdb0d.tar.gz
Merge tag 'affs-for-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux
Pull affs update from David Sterba: "One change to AFFS that removes use of SLAB_MEM_SPREAD, which is going to be removed from MM code" * tag 'affs-for-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux: affs: remove SLAB_MEM_SPREAD flag usage
-rw-r--r--fs/affs/super.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/affs/super.c b/fs/affs/super.c
index b56a95cf414a44..3c5821339609c5 100644
--- a/fs/affs/super.c
+++ b/fs/affs/super.c
@@ -130,8 +130,7 @@ static int __init init_inodecache(void)
{
affs_inode_cachep = kmem_cache_create("affs_inode_cache",
sizeof(struct affs_inode_info),
- 0, (SLAB_RECLAIM_ACCOUNT|
- SLAB_MEM_SPREAD|SLAB_ACCOUNT),
+ 0, (SLAB_RECLAIM_ACCOUNT | SLAB_ACCOUNT),
init_once);
if (affs_inode_cachep == NULL)
return -ENOMEM;