mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
ext3: fix mount messages when quota disabled
When quota is disabled, we should not print 'journaled quota not supported' when user tried to mount non-journaled quota. Also fix typo in the message. Signed-off-by: Jan Kara <jack@suse.cz> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
2588ef83f7
commit
fa1ff1e02f
@ -1097,6 +1097,9 @@ clear_qf_name:
|
||||
case Opt_quota:
|
||||
case Opt_usrquota:
|
||||
case Opt_grpquota:
|
||||
printk(KERN_ERR
|
||||
"EXT3-fs: quota options not supported.\n");
|
||||
break;
|
||||
case Opt_usrjquota:
|
||||
case Opt_grpjquota:
|
||||
case Opt_offusrjquota:
|
||||
@ -1104,7 +1107,7 @@ clear_qf_name:
|
||||
case Opt_jqfmt_vfsold:
|
||||
case Opt_jqfmt_vfsv0:
|
||||
printk(KERN_ERR
|
||||
"EXT3-fs: journalled quota options not "
|
||||
"EXT3-fs: journaled quota options not "
|
||||
"supported.\n");
|
||||
break;
|
||||
case Opt_noquota:
|
||||
|
Loading…
Reference in New Issue
Block a user