diff options
author | Chengguang Xu <cgxu519@gmx.com> | 2018-09-22 22:43:09 +0800 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2018-09-25 18:44:56 -0700 |
commit | c6b1867b1da3b1203b4c49988afeebdcbdf65499 (patch) | |
tree | dae7dfe12edff6f063e46b05a1cc84314b501ea5 /fs/f2fs | |
parent | dc4cd1257c86451cec3e8e352cc376348e4f4af4 (diff) | |
download | linux-c6b1867b1da3b1203b4c49988afeebdcbdf65499.tar.gz linux-c6b1867b1da3b1203b4c49988afeebdcbdf65499.tar.bz2 linux-c6b1867b1da3b1203b4c49988afeebdcbdf65499.zip |
f2fs: fix remount problem of option io_bits
Currently we show mount option "io_bits=%u" as "io_size=%uKB",
it will cause option parsing problem(unrecognized mount option)
in remount.
Signed-off-by: Chengguang Xu <cgxu519@gmx.com>
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs')
-rw-r--r-- | fs/f2fs/super.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index c112403b3ca7..c47b1ef2685a 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c @@ -1330,7 +1330,8 @@ static int f2fs_show_options(struct seq_file *seq, struct dentry *root) from_kgid_munged(&init_user_ns, F2FS_OPTION(sbi).s_resgid)); if (F2FS_IO_SIZE_BITS(sbi)) - seq_printf(seq, ",io_size=%uKB", F2FS_IO_SIZE_KB(sbi)); + seq_printf(seq, ",io_bits=%u", + F2FS_OPTION(sbi).write_io_size_bits); #ifdef CONFIG_F2FS_FAULT_INJECTION if (test_opt(sbi, FAULT_INJECTION)) { seq_printf(seq, ",fault_injection=%u", |