diff options
| author | Jan Kara <jack@suse.cz> | 2008-05-13 19:11:51 -0400 |
|---|---|---|
| committer | Theodore Ts'o <tytso@mit.edu> | 2008-05-13 19:11:51 -0400 |
| commit | cd59e7b9781a35716b8a3e8c4aa2d48081d7daf7 (patch) | |
| tree | b93d01eedfe059f0f033b2c6bb5d303486a1f689 /fs | |
| parent | dfc5d03f12e706c19ee37734184ea96582ef931d (diff) | |
ext4: 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: Mingming Cao <cmm@us.ibm.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs')
| -rw-r--r-- | fs/ext4/super.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 686ebcc2e6c7..94a527261cae 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c | |||
| @@ -1255,6 +1255,9 @@ set_qf_format: | |||
| 1255 | case Opt_quota: | 1255 | case Opt_quota: |
| 1256 | case Opt_usrquota: | 1256 | case Opt_usrquota: |
| 1257 | case Opt_grpquota: | 1257 | case Opt_grpquota: |
| 1258 | printk(KERN_ERR | ||
| 1259 | "EXT4-fs: quota options not supported.\n"); | ||
| 1260 | break; | ||
| 1258 | case Opt_usrjquota: | 1261 | case Opt_usrjquota: |
| 1259 | case Opt_grpjquota: | 1262 | case Opt_grpjquota: |
| 1260 | case Opt_offusrjquota: | 1263 | case Opt_offusrjquota: |
| @@ -1262,7 +1265,7 @@ set_qf_format: | |||
| 1262 | case Opt_jqfmt_vfsold: | 1265 | case Opt_jqfmt_vfsold: |
| 1263 | case Opt_jqfmt_vfsv0: | 1266 | case Opt_jqfmt_vfsv0: |
| 1264 | printk(KERN_ERR | 1267 | printk(KERN_ERR |
| 1265 | "EXT4-fs: journalled quota options not " | 1268 | "EXT4-fs: journaled quota options not " |
| 1266 | "supported.\n"); | 1269 | "supported.\n"); |
| 1267 | break; | 1270 | break; |
| 1268 | case Opt_noquota: | 1271 | case Opt_noquota: |
