mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-24 17:23:25 -05:00
mount options: fix jfs
Add iocharset= and errors= options to /proc/mounts for jfs filesystems. Signed-off-by: Miklos Szeredi <mszeredi@suse.cz> Signed-off-by: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
This commit is contained in:
parent
967c9ec4ec
commit
5c5e32ceeb
1 changed files with 6 additions and 0 deletions
|
@ -598,6 +598,12 @@ static int jfs_show_options(struct seq_file *seq, struct vfsmount *vfs)
|
|||
seq_printf(seq, ",umask=%03o", sbi->umask);
|
||||
if (sbi->flag & JFS_NOINTEGRITY)
|
||||
seq_puts(seq, ",nointegrity");
|
||||
if (sbi->nls_tab)
|
||||
seq_printf(seq, ",iocharset=%s", sbi->nls_tab->charset);
|
||||
if (sbi->flag & JFS_ERR_CONTINUE)
|
||||
seq_printf(seq, ",errors=continue");
|
||||
if (sbi->flag & JFS_ERR_PANIC)
|
||||
seq_printf(seq, ",errors=panic");
|
||||
|
||||
#ifdef CONFIG_QUOTA
|
||||
if (sbi->flag & JFS_USRQUOTA)
|
||||
|
|
Loading…
Add table
Reference in a new issue