mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 19:08:57 +09:00
Revert "f2fs: don't reset unchangable mount option in f2fs_remount()"
This reverts commite2fb24ce37which is commit458c15dfbcupstream. Something is currently broken in the f2fs code, Guenter has reported boot problems with it for a few releases now, so revert the most recent f2fs changes in the hope to get this back to a working filesystem. Reported-by: Guenter Roeck <linux@roeck-us.net> Link: https://lore.kernel.org/r/b392e1a8-b987-4993-bd45-035db9415a6e@roeck-us.net Cc: Chao Yu <chao@kernel.org> Cc: Jaegeuk Kim <jaegeuk@kernel.org> Cc: Sasha Levin <sashal@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
@@ -2040,22 +2040,9 @@ static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void default_options(struct f2fs_sb_info *sbi, bool remount)
|
static void default_options(struct f2fs_sb_info *sbi)
|
||||||
{
|
{
|
||||||
/* init some FS parameters */
|
/* init some FS parameters */
|
||||||
if (!remount) {
|
|
||||||
set_opt(sbi, READ_EXTENT_CACHE);
|
|
||||||
clear_opt(sbi, DISABLE_CHECKPOINT);
|
|
||||||
|
|
||||||
if (f2fs_hw_support_discard(sbi) || f2fs_hw_should_discard(sbi))
|
|
||||||
set_opt(sbi, DISCARD);
|
|
||||||
|
|
||||||
if (f2fs_sb_has_blkzoned(sbi))
|
|
||||||
F2FS_OPTION(sbi).discard_unit = DISCARD_UNIT_SECTION;
|
|
||||||
else
|
|
||||||
F2FS_OPTION(sbi).discard_unit = DISCARD_UNIT_BLOCK;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (f2fs_sb_has_readonly(sbi))
|
if (f2fs_sb_has_readonly(sbi))
|
||||||
F2FS_OPTION(sbi).active_logs = NR_CURSEG_RO_TYPE;
|
F2FS_OPTION(sbi).active_logs = NR_CURSEG_RO_TYPE;
|
||||||
else
|
else
|
||||||
@@ -2078,16 +2065,23 @@ static void default_options(struct f2fs_sb_info *sbi, bool remount)
|
|||||||
set_opt(sbi, INLINE_XATTR);
|
set_opt(sbi, INLINE_XATTR);
|
||||||
set_opt(sbi, INLINE_DATA);
|
set_opt(sbi, INLINE_DATA);
|
||||||
set_opt(sbi, INLINE_DENTRY);
|
set_opt(sbi, INLINE_DENTRY);
|
||||||
|
set_opt(sbi, READ_EXTENT_CACHE);
|
||||||
set_opt(sbi, NOHEAP);
|
set_opt(sbi, NOHEAP);
|
||||||
|
clear_opt(sbi, DISABLE_CHECKPOINT);
|
||||||
set_opt(sbi, MERGE_CHECKPOINT);
|
set_opt(sbi, MERGE_CHECKPOINT);
|
||||||
F2FS_OPTION(sbi).unusable_cap = 0;
|
F2FS_OPTION(sbi).unusable_cap = 0;
|
||||||
sbi->sb->s_flags |= SB_LAZYTIME;
|
sbi->sb->s_flags |= SB_LAZYTIME;
|
||||||
if (!f2fs_sb_has_readonly(sbi) && !f2fs_readonly(sbi->sb))
|
if (!f2fs_sb_has_readonly(sbi) && !f2fs_readonly(sbi->sb))
|
||||||
set_opt(sbi, FLUSH_MERGE);
|
set_opt(sbi, FLUSH_MERGE);
|
||||||
if (f2fs_sb_has_blkzoned(sbi))
|
if (f2fs_hw_support_discard(sbi) || f2fs_hw_should_discard(sbi))
|
||||||
|
set_opt(sbi, DISCARD);
|
||||||
|
if (f2fs_sb_has_blkzoned(sbi)) {
|
||||||
F2FS_OPTION(sbi).fs_mode = FS_MODE_LFS;
|
F2FS_OPTION(sbi).fs_mode = FS_MODE_LFS;
|
||||||
else
|
F2FS_OPTION(sbi).discard_unit = DISCARD_UNIT_SECTION;
|
||||||
|
} else {
|
||||||
F2FS_OPTION(sbi).fs_mode = FS_MODE_ADAPTIVE;
|
F2FS_OPTION(sbi).fs_mode = FS_MODE_ADAPTIVE;
|
||||||
|
F2FS_OPTION(sbi).discard_unit = DISCARD_UNIT_BLOCK;
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_F2FS_FS_XATTR
|
#ifdef CONFIG_F2FS_FS_XATTR
|
||||||
set_opt(sbi, XATTR_USER);
|
set_opt(sbi, XATTR_USER);
|
||||||
@@ -2259,7 +2253,7 @@ static int f2fs_remount(struct super_block *sb, int *flags, char *data)
|
|||||||
clear_sbi_flag(sbi, SBI_NEED_SB_WRITE);
|
clear_sbi_flag(sbi, SBI_NEED_SB_WRITE);
|
||||||
}
|
}
|
||||||
|
|
||||||
default_options(sbi, true);
|
default_options(sbi);
|
||||||
|
|
||||||
/* parse mount options */
|
/* parse mount options */
|
||||||
err = parse_options(sb, data, true);
|
err = parse_options(sb, data, true);
|
||||||
@@ -4156,7 +4150,7 @@ try_onemore:
|
|||||||
sbi->s_chksum_seed = f2fs_chksum(sbi, ~0, raw_super->uuid,
|
sbi->s_chksum_seed = f2fs_chksum(sbi, ~0, raw_super->uuid,
|
||||||
sizeof(raw_super->uuid));
|
sizeof(raw_super->uuid));
|
||||||
|
|
||||||
default_options(sbi, false);
|
default_options(sbi);
|
||||||
/* parse mount options */
|
/* parse mount options */
|
||||||
options = kstrdup((const char *)data, GFP_KERNEL);
|
options = kstrdup((const char *)data, GFP_KERNEL);
|
||||||
if (data && !options) {
|
if (data && !options) {
|
||||||
|
|||||||
Reference in New Issue
Block a user