Skip to content

Commit cbd445d

Browse files
kohada-t2namjaejeon
authored andcommitted
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: Tetsuhiro Kohada <[email protected]> Signed-off-by: Namjae Jeon <[email protected]>
1 parent b051683 commit cbd445d

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

fs/exfat/super.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,6 @@ static int exfat_show_options(struct seq_file *m, struct dentry *root)
151151
seq_puts(m, ",iocharset=utf8");
152152
else if (sbi->nls_io)
153153
seq_printf(m, ",iocharset=%s", sbi->nls_io->charset);
154-
seq_printf(m, ",bps=%ld", sb->s_blocksize);
155154
if (opts->errors == EXFAT_ERRORS_CONT)
156155
seq_puts(m, ",errors=continue");
157156
else if (opts->errors == EXFAT_ERRORS_PANIC)

0 commit comments

Comments
 (0)