Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c1fca3b6 authored by Miklos Szeredi's avatar Miklos Szeredi Committed by Linus Torvalds
Browse files

mount options: fix fat



Add flush option to /proc/mounts for msdos and vfat filesystems.

Signed-off-by: default avatarMiklos Szeredi <mszeredi@suse.cz>
Acked-by: default avatarOGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 35c879dc
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -837,6 +837,8 @@ static int fat_show_options(struct seq_file *m, struct vfsmount *mnt)
		if (!opts->numtail)
			seq_puts(m, ",nonumtail");
	}
	if (sbi->options.flush)
		seq_puts(m, ",flush");

	return 0;
}