]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
fs: rename show_mnt_opts -> show_vfsmnt_opts
authorJosef Bacik <josef@toxicpanda.com>
Mon, 24 Jun 2024 19:40:50 +0000 (15:40 -0400)
committerChristian Brauner <brauner@kernel.org>
Fri, 28 Jun 2024 12:36:43 +0000 (14:36 +0200)
This name is more consistent with what the helper does, which is to just
show the vfsmount options.

Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Link: https://lore.kernel.org/r/fb363c62ffbf78a18095d596a19b8412aa991251.1719257716.git.josef@toxicpanda.com
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Christian Brauner <brauner@kernel.org>
fs/proc_namespace.c

index 0a808951b7d3709bf659974d8389342265c6ad5c..e133b507ddf3941525c1a2b70cd82846569dfa20 100644 (file)
@@ -61,7 +61,7 @@ static int show_sb_opts(struct seq_file *m, struct super_block *sb)
        return security_sb_show_options(m, sb);
 }
 
-static void show_mnt_opts(struct seq_file *m, struct vfsmount *mnt)
+static void show_vfsmnt_opts(struct seq_file *m, struct vfsmount *mnt)
 {
        static const struct proc_fs_opts mnt_opts[] = {
                { MNT_NOSUID, ",nosuid" },
@@ -124,7 +124,7 @@ static int show_vfsmnt(struct seq_file *m, struct vfsmount *mnt)
        err = show_sb_opts(m, sb);
        if (err)
                goto out;
-       show_mnt_opts(m, mnt);
+       show_vfsmnt_opts(m, mnt);
        if (sb->s_op->show_options)
                err = sb->s_op->show_options(m, mnt_path.dentry);
        seq_puts(m, " 0 0\n");
@@ -153,7 +153,7 @@ static int show_mountinfo(struct seq_file *m, struct vfsmount *mnt)
                goto out;
 
        seq_puts(m, mnt->mnt_flags & MNT_READONLY ? " ro" : " rw");
-       show_mnt_opts(m, mnt);
+       show_vfsmnt_opts(m, mnt);
 
        /* Tagged fields ("foo:X" or "bar") */
        if (IS_MNT_SHARED(r))