diff options
author | Gabriel Krisman Bertazi <krisman@suse.de> | 2024-02-21 20:14:11 +0300 |
---|---|---|
committer | Gabriel Krisman Bertazi <krisman@suse.de> | 2024-02-28 00:55:35 +0300 |
commit | bc401c2900c128d3d69482769f1300502a9f0598 (patch) | |
tree | cdb5a1e69bd50809cb8dee06da47156fd1df818f /fs/ubifs/super.c | |
parent | be2760a703e6554c2b5784e2fec804284cdcbe4d (diff) | |
download | linux-bc401c2900c128d3d69482769f1300502a9f0598.tar.xz |
ubifs: Configure dentry operations at dentry-creation time
fscrypt now supports configuring dentry operations at dentry-creation
time through the preset sb->s_d_op, instead of at lookup time.
Enable this in ubifs, since the lookup-time mechanism is going away.
Reviewed-by: Eric Biggers <ebiggers@google.com>
Link: https://lore.kernel.org/r/20240221171412.10710-10-krisman@suse.de
Signed-off-by: Gabriel Krisman Bertazi <krisman@suse.de>
Diffstat (limited to 'fs/ubifs/super.c')
-rw-r--r-- | fs/ubifs/super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c index 09e270d6ed02..304646b03e99 100644 --- a/fs/ubifs/super.c +++ b/fs/ubifs/super.c @@ -2239,6 +2239,7 @@ static int ubifs_fill_super(struct super_block *sb, void *data, int silent) goto out_umount; } + generic_set_sb_d_ops(sb); sb->s_root = d_make_root(root); if (!sb->s_root) { err = -ENOMEM; |