aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Kara <jack@suse.cz>2008-07-25 04:46:17 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2008-07-25 13:53:31 -0400
commit99aeaf639f61ab6be1967e5f92e2e28dafad8383 (patch)
tree0110d1098d20717424a44ea8bf1e8227708d1557
parent9cfe7b9010aa66da5f3b2bc33d9e30a4d53bd274 (diff)
ext3: fix typos in messages and comments (journalled -> journaled)
Cc: <linux-ext4@vger.kernel.org> 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>
-rw-r--r--fs/ext3/super.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/fs/ext3/super.c b/fs/ext3/super.c
index 50796e90d070..0a1bf82845c3 100644
--- a/fs/ext3/super.c
+++ b/fs/ext3/super.c
@@ -1020,7 +1020,7 @@ static int parse_options (char *options, struct super_block *sb,
1020set_qf_name: 1020set_qf_name:
1021 if (sb_any_quota_enabled(sb)) { 1021 if (sb_any_quota_enabled(sb)) {
1022 printk(KERN_ERR 1022 printk(KERN_ERR
1023 "EXT3-fs: Cannot change journalled " 1023 "EXT3-fs: Cannot change journaled "
1024 "quota options when quota turned on.\n"); 1024 "quota options when quota turned on.\n");
1025 return 0; 1025 return 0;
1026 } 1026 }
@@ -1058,7 +1058,7 @@ set_qf_name:
1058clear_qf_name: 1058clear_qf_name:
1059 if (sb_any_quota_enabled(sb)) { 1059 if (sb_any_quota_enabled(sb)) {
1060 printk(KERN_ERR "EXT3-fs: Cannot change " 1060 printk(KERN_ERR "EXT3-fs: Cannot change "
1061 "journalled quota options when " 1061 "journaled quota options when "
1062 "quota turned on.\n"); 1062 "quota turned on.\n");
1063 return 0; 1063 return 0;
1064 } 1064 }
@@ -1169,14 +1169,14 @@ clear_qf_name:
1169 } 1169 }
1170 1170
1171 if (!sbi->s_jquota_fmt) { 1171 if (!sbi->s_jquota_fmt) {
1172 printk(KERN_ERR "EXT3-fs: journalled quota format " 1172 printk(KERN_ERR "EXT3-fs: journaled quota format "
1173 "not specified.\n"); 1173 "not specified.\n");
1174 return 0; 1174 return 0;
1175 } 1175 }
1176 } else { 1176 } else {
1177 if (sbi->s_jquota_fmt) { 1177 if (sbi->s_jquota_fmt) {
1178 printk(KERN_ERR "EXT3-fs: journalled quota format " 1178 printk(KERN_ERR "EXT3-fs: journaled quota format "
1179 "specified with no journalling " 1179 "specified with no journaling "
1180 "enabled.\n"); 1180 "enabled.\n");
1181 return 0; 1181 return 0;
1182 } 1182 }
@@ -1370,7 +1370,7 @@ static void ext3_orphan_cleanup (struct super_block * sb,
1370 int ret = ext3_quota_on_mount(sb, i); 1370 int ret = ext3_quota_on_mount(sb, i);
1371 if (ret < 0) 1371 if (ret < 0)
1372 printk(KERN_ERR 1372 printk(KERN_ERR
1373 "EXT3-fs: Cannot turn on journalled " 1373 "EXT3-fs: Cannot turn on journaled "
1374 "quota: error %d\n", ret); 1374 "quota: error %d\n", ret);
1375 } 1375 }
1376 } 1376 }
@@ -2712,7 +2712,7 @@ static int ext3_release_dquot(struct dquot *dquot)
2712 2712
2713static int ext3_mark_dquot_dirty(struct dquot *dquot) 2713static int ext3_mark_dquot_dirty(struct dquot *dquot)
2714{ 2714{
2715 /* Are we journalling quotas? */ 2715 /* Are we journaling quotas? */
2716 if (EXT3_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] || 2716 if (EXT3_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
2717 EXT3_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) { 2717 EXT3_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
2718 dquot_mark_dquot_dirty(dquot); 2718 dquot_mark_dquot_dirty(dquot);