diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2010-09-23 13:41:42 +0100 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2010-09-23 13:41:42 +0100 |
commit | f57a024ed2ee00d62515ffd4040f5ded3e0eb853 (patch) | |
tree | 7f253cd03070d5b6d8af2330cecd2f0f70ac6870 /fs/gfs2/super.c | |
parent | 8d1235852b462cfb66aa036bd4a2686763c69ed4 (diff) | |
download | op-kernel-dev-f57a024ed2ee00d62515ffd4040f5ded3e0eb853.zip op-kernel-dev-f57a024ed2ee00d62515ffd4040f5ded3e0eb853.tar.gz |
GFS2: Remove ignore_local_fs mount argument
This is been a no-op for a very long time now. I'm pretty sure
nobody uses it, but just in case we'll still accept it on the
command line, but ignore it.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/super.c')
-rw-r--r-- | fs/gfs2/super.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/fs/gfs2/super.c b/fs/gfs2/super.c index e031fa4..06a4a7e 100644 --- a/fs/gfs2/super.c +++ b/fs/gfs2/super.c @@ -159,7 +159,7 @@ int gfs2_mount_args(struct gfs2_args *args, char *options) args->ar_spectator = 1; break; case Opt_ignore_local_fs: - args->ar_ignore_local_fs = 1; + /* Retained for backwards compat only */ break; case Opt_localflocks: args->ar_localflocks = 1; @@ -1128,7 +1128,6 @@ static int gfs2_remount_fs(struct super_block *sb, int *flags, char *data) /* Some flags must not be changed */ if (args_neq(&args, &sdp->sd_args, spectator) || - args_neq(&args, &sdp->sd_args, ignore_local_fs) || args_neq(&args, &sdp->sd_args, localflocks) || args_neq(&args, &sdp->sd_args, localcaching) || args_neq(&args, &sdp->sd_args, meta)) @@ -1233,8 +1232,6 @@ static int gfs2_show_options(struct seq_file *s, struct vfsmount *mnt) seq_printf(s, ",hostdata=%s", args->ar_hostdata); if (args->ar_spectator) seq_printf(s, ",spectator"); - if (args->ar_ignore_local_fs) - seq_printf(s, ",ignore_local_fs"); if (args->ar_localflocks) seq_printf(s, ",localflocks"); if (args->ar_localcaching) |