diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2017-11-27 16:05:09 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-11-27 16:05:09 -0500 |
commit | 1751e8a6cb935e555fcdbcb9ab4f0446e322ca3e (patch) | |
tree | 83c57e4aeda0665cb131de862364b7a5cfd7dd66 /fs/overlayfs/super.c | |
parent | 141cbfba1d0502006463aa80f57c64086226af1a (diff) |
Rename superblock flags (MS_xyz -> SB_xyz)
This is a pure automated search-and-replace of the internal kernel
superblock flags.
The s_flags are now called SB_*, with the names and the values for the
moment mirroring the MS_* flags that they're equivalent to.
Note how the MS_xyz flags are the ones passed to the mount system call,
while the SB_xyz flags are what we then use in sb->s_flags.
The script to do this was:
# places to look in; re security/*: it generally should *not* be
# touched (that stuff parses mount(2) arguments directly), but
# there are two places where we really deal with superblock flags.
FILES="drivers/mtd drivers/staging/lustre fs ipc mm \
include/linux/fs.h include/uapi/linux/bfs_fs.h \
security/apparmor/apparmorfs.c security/apparmor/include/lib.h"
# the list of MS_... constants
SYMS="RDONLY NOSUID NODEV NOEXEC SYNCHRONOUS REMOUNT MANDLOCK \
DIRSYNC NOATIME NODIRATIME BIND MOVE REC VERBOSE SILENT \
POSIXACL UNBINDABLE PRIVATE SLAVE SHARED RELATIME KERNMOUNT \
I_VERSION STRICTATIME LAZYTIME SUBMOUNT NOREMOTELOCK NOSEC BORN \
ACTIVE NOUSER"
SED_PROG=
for i in $SYMS; do SED_PROG="$SED_PROG -e s/MS_$i/SB_$i/g"; done
# we want files that contain at least one of MS_...,
# with fs/namespace.c and fs/pnode.c excluded.
L=$(for i in $SYMS; do git grep -w -l MS_$i $FILES; done| sort|uniq|grep -v '^fs/namespace.c'|grep -v '^fs/pnode.c')
for f in $L; do sed -i $f $SED_PROG; done
Requested-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/overlayfs/super.c')
-rw-r--r-- | fs/overlayfs/super.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/overlayfs/super.c b/fs/overlayfs/super.c index be03578181d2..288d20f9a55a 100644 --- a/fs/overlayfs/super.c +++ b/fs/overlayfs/super.c | |||
@@ -326,7 +326,7 @@ static int ovl_remount(struct super_block *sb, int *flags, char *data) | |||
326 | { | 326 | { |
327 | struct ovl_fs *ofs = sb->s_fs_info; | 327 | struct ovl_fs *ofs = sb->s_fs_info; |
328 | 328 | ||
329 | if (!(*flags & MS_RDONLY) && ovl_force_readonly(ofs)) | 329 | if (!(*flags & SB_RDONLY) && ovl_force_readonly(ofs)) |
330 | return -EROFS; | 330 | return -EROFS; |
331 | 331 | ||
332 | return 0; | 332 | return 0; |
@@ -1190,7 +1190,7 @@ static int ovl_fill_super(struct super_block *sb, void *data, int silent) | |||
1190 | goto out_err; | 1190 | goto out_err; |
1191 | 1191 | ||
1192 | if (!ofs->workdir) | 1192 | if (!ofs->workdir) |
1193 | sb->s_flags |= MS_RDONLY; | 1193 | sb->s_flags |= SB_RDONLY; |
1194 | 1194 | ||
1195 | sb->s_stack_depth = ofs->upper_mnt->mnt_sb->s_stack_depth; | 1195 | sb->s_stack_depth = ofs->upper_mnt->mnt_sb->s_stack_depth; |
1196 | sb->s_time_gran = ofs->upper_mnt->mnt_sb->s_time_gran; | 1196 | sb->s_time_gran = ofs->upper_mnt->mnt_sb->s_time_gran; |
@@ -1203,7 +1203,7 @@ static int ovl_fill_super(struct super_block *sb, void *data, int silent) | |||
1203 | 1203 | ||
1204 | /* If the upper fs is nonexistent, we mark overlayfs r/o too */ | 1204 | /* If the upper fs is nonexistent, we mark overlayfs r/o too */ |
1205 | if (!ofs->upper_mnt) | 1205 | if (!ofs->upper_mnt) |
1206 | sb->s_flags |= MS_RDONLY; | 1206 | sb->s_flags |= SB_RDONLY; |
1207 | else if (ofs->upper_mnt->mnt_sb != ofs->same_sb) | 1207 | else if (ofs->upper_mnt->mnt_sb != ofs->same_sb) |
1208 | ofs->same_sb = NULL; | 1208 | ofs->same_sb = NULL; |
1209 | 1209 | ||
@@ -1213,7 +1213,7 @@ static int ovl_fill_super(struct super_block *sb, void *data, int silent) | |||
1213 | goto out_free_oe; | 1213 | goto out_free_oe; |
1214 | 1214 | ||
1215 | if (!ofs->indexdir) | 1215 | if (!ofs->indexdir) |
1216 | sb->s_flags |= MS_RDONLY; | 1216 | sb->s_flags |= SB_RDONLY; |
1217 | } | 1217 | } |
1218 | 1218 | ||
1219 | /* Show index=off/on in /proc/mounts for any of the reasons above */ | 1219 | /* Show index=off/on in /proc/mounts for any of the reasons above */ |
@@ -1227,7 +1227,7 @@ static int ovl_fill_super(struct super_block *sb, void *data, int silent) | |||
1227 | sb->s_op = &ovl_super_operations; | 1227 | sb->s_op = &ovl_super_operations; |
1228 | sb->s_xattr = ovl_xattr_handlers; | 1228 | sb->s_xattr = ovl_xattr_handlers; |
1229 | sb->s_fs_info = ofs; | 1229 | sb->s_fs_info = ofs; |
1230 | sb->s_flags |= MS_POSIXACL | MS_NOREMOTELOCK; | 1230 | sb->s_flags |= SB_POSIXACL | SB_NOREMOTELOCK; |
1231 | 1231 | ||
1232 | err = -ENOMEM; | 1232 | err = -ENOMEM; |
1233 | root_dentry = d_make_root(ovl_new_inode(sb, S_IFDIR, 0)); | 1233 | root_dentry = d_make_root(ovl_new_inode(sb, S_IFDIR, 0)); |