diff options
author | Chao Yu <chao2.yu@samsung.com> | 2014-09-15 06:04:44 -0400 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2014-09-23 14:10:22 -0400 |
commit | 26666c8a4366debae30ae37d0688b2bec92d196a (patch) | |
tree | 0e1c698d7f234b49c737ac537aecec9fae0c4d3a /fs | |
parent | 14cecc5cd6ed33ef3cb7328de904cc636dd390a4 (diff) |
f2fs: fix to clean previous mount option when remount_fs
In manual of mount, we descript remount as below:
"mount -o remount,rw /dev/foo /dir
After this call all old mount options are replaced and arbitrary stuff from
fstab is ignored, except the loop= option which is internally generated and
maintained by the mount command."
Previously f2fs do not clear up old mount options when remount_fs, so we have no
chance of disabling previous option (e.g. flush_merge). Fix it.
Signed-off-by: Chao Yu <chao2.yu@samsung.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/f2fs/super.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index 3dfa1b5eae2f..7a91a381dced 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c | |||
@@ -618,6 +618,9 @@ static int f2fs_remount(struct super_block *sb, int *flags, char *data) | |||
618 | org_mount_opt = sbi->mount_opt; | 618 | org_mount_opt = sbi->mount_opt; |
619 | active_logs = sbi->active_logs; | 619 | active_logs = sbi->active_logs; |
620 | 620 | ||
621 | sbi->mount_opt.opt = 0; | ||
622 | sbi->active_logs = NR_CURSEG_TYPE; | ||
623 | |||
621 | /* parse mount options */ | 624 | /* parse mount options */ |
622 | err = parse_options(sb, data); | 625 | err = parse_options(sb, data); |
623 | if (err) | 626 | if (err) |