[PATCH v5 06/10] tmpfs: Always set simple_dentry_operations as dentry ops

From: André Almeida
Date: Wed Oct 02 2024 - 19:46:52 EST


Set simple_dentry_operations as the superblock dentry ops, so all tmpfs
dentries can inherit it.

Signed-off-by: André Almeida <andrealmeid@xxxxxxxxxx>
---
mm/shmem.c | 2 ++
1 file changed, 2 insertions(+)

diff --git a/mm/shmem.c b/mm/shmem.c
index 4f11b5506363..162d68784309 100644
--- a/mm/shmem.c
+++ b/mm/shmem.c
@@ -4662,6 +4662,8 @@ static int shmem_fill_super(struct super_block *sb, struct fs_context *fc)
}
sb->s_export_op = &shmem_export_ops;
sb->s_flags |= SB_NOSEC | SB_I_VERSION;
+
+ sb->s_d_op = &simple_dentry_operations;
#else
sb->s_flags |= SB_NOUSER;
#endif
--
2.46.0