From: Tetsuhiro Kohada Date: Tue, 7 Apr 2020 08:34:10 +0000 (+0900) Subject: exfat: remove 'bps' mount-option X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=cbd445d9a9bdb7020beee2477577b9472cca60be;p=linux.git 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 Signed-off-by: Namjae Jeon --- diff --git a/fs/exfat/super.c b/fs/exfat/super.c index 6b63e50926281..cb5eac38102d9 100644 --- a/fs/exfat/super.c +++ b/fs/exfat/super.c @@ -151,7 +151,6 @@ static int exfat_show_options(struct seq_file *m, struct dentry *root) seq_puts(m, ",iocharset=utf8"); else if (sbi->nls_io) seq_printf(m, ",iocharset=%s", sbi->nls_io->charset); - seq_printf(m, ",bps=%ld", sb->s_blocksize); if (opts->errors == EXFAT_ERRORS_CONT) seq_puts(m, ",errors=continue"); else if (opts->errors == EXFAT_ERRORS_PANIC)