diff options
author | Chao Yu <yuchao0@huawei.com> | 2016-09-26 19:45:05 +0800 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2016-09-30 17:34:33 -0700 |
commit | 36dbd3287fefdfceeb6a82997241c26df29882c8 (patch) | |
tree | 1cbdd39562a8212f543b71ab2389b85624904445 | |
parent | 9c094040c58ea2f6ae81621c6d9057dc0c94f8f8 (diff) | |
download | linux-36dbd3287fefdfceeb6a82997241c26df29882c8.tar.gz linux-36dbd3287fefdfceeb6a82997241c26df29882c8.tar.bz2 linux-36dbd3287fefdfceeb6a82997241c26df29882c8.zip |
f2fs: do fault injection initialization in default_options
Do fault injection initialization in default_options to keep consistent
with other default option configurating.
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
-rw-r--r-- | fs/f2fs/super.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index a06eee4a8fa1..785d0fdf6e76 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c @@ -363,10 +363,6 @@ static int parse_options(struct super_block *sb, char *options) char *p, *name; int arg = 0; -#ifdef CONFIG_F2FS_FAULT_INJECTION - f2fs_build_fault_attr(sbi, 0); -#endif - if (!options) return 0; @@ -990,6 +986,10 @@ static void default_options(struct f2fs_sb_info *sbi) #ifdef CONFIG_F2FS_FS_POSIX_ACL set_opt(sbi, POSIX_ACL); #endif + +#ifdef CONFIG_F2FS_FAULT_INJECTION + f2fs_build_fault_attr(sbi, 0); +#endif } static int f2fs_remount(struct super_block *sb, int *flags, char *data) |