Commit cbd445d9 authored by Tetsuhiro Kohada's avatar Tetsuhiro Kohada Committed by Namjae Jeon

exfat: remove 'bps' mount-option

remount fails because exfat_show_options() returns unsupported
option 'bps'.
> # mount -o ro,remount
> exfat: Unknown parameter 'bps'

To fix the problem, just remove 'bps' option from exfat_show_options().
Signed-off-by: default avatarTetsuhiro Kohada <Kohada.Tetsuhiro@dc.MitsubishiElectric.co.jp>
Signed-off-by: default avatarNamjae Jeon <namjae.jeon@samsung.com>
parent b0516833
...@@ -151,7 +151,6 @@ static int exfat_show_options(struct seq_file *m, struct dentry *root) ...@@ -151,7 +151,6 @@ static int exfat_show_options(struct seq_file *m, struct dentry *root)
seq_puts(m, ",iocharset=utf8"); seq_puts(m, ",iocharset=utf8");
else if (sbi->nls_io) else if (sbi->nls_io)
seq_printf(m, ",iocharset=%s", sbi->nls_io->charset); seq_printf(m, ",iocharset=%s", sbi->nls_io->charset);
seq_printf(m, ",bps=%ld", sb->s_blocksize);
if (opts->errors == EXFAT_ERRORS_CONT) if (opts->errors == EXFAT_ERRORS_CONT)
seq_puts(m, ",errors=continue"); seq_puts(m, ",errors=continue");
else if (opts->errors == EXFAT_ERRORS_PANIC) else if (opts->errors == EXFAT_ERRORS_PANIC)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment