diff options
author | Andrea Righi <andrea.righi@canonical.com> | 2023-05-21 10:28:12 +0200 |
---|---|---|
committer | Amir Goldstein <amir73il@gmail.com> | 2023-08-12 19:02:54 +0300 |
commit | f01d08899fd7fa808ff9b8d33ca4882ab44d42fa (patch) | |
tree | 3fc90806f5d20236a373b42cbedfeb105b6d36f0 /fs/overlayfs/copy_up.c | |
parent | 36295542969dcfe7443f8cc5247863ed06a936d5 (diff) | |
download | lwn-f01d08899fd7fa808ff9b8d33ca4882ab44d42fa.tar.gz lwn-f01d08899fd7fa808ff9b8d33ca4882ab44d42fa.zip |
ovl: make consistent use of OVL_FS()
Always use OVL_FS() to retrieve the corresponding struct ovl_fs from a
struct super_block.
Reviewed-by: Amir Goldstein <amir73il@gmail.com>
Signed-off-by: Andrea Righi <andrea.righi@canonical.com>
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
Diffstat (limited to 'fs/overlayfs/copy_up.c')
-rw-r--r-- | fs/overlayfs/copy_up.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/overlayfs/copy_up.c b/fs/overlayfs/copy_up.c index 618651b54818..bae404a1bad4 100644 --- a/fs/overlayfs/copy_up.c +++ b/fs/overlayfs/copy_up.c @@ -932,7 +932,7 @@ out: static bool ovl_need_meta_copy_up(struct dentry *dentry, umode_t mode, int flags) { - struct ovl_fs *ofs = dentry->d_sb->s_fs_info; + struct ovl_fs *ofs = OVL_FS(dentry->d_sb); if (!ofs->config.metacopy) return false; |