diff options
author | Jan Kara <jack@suse.cz> | 2008-07-25 04:46:37 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-25 13:53:33 -0400 |
commit | 4506567b24d3ea707e46e8aad64caef539382f4b (patch) | |
tree | 71ae6e1674f3675f178c8d14a0b024b77808d01b /fs | |
parent | 5d4f7fddf8882b214e4aabb3bdb37f90a72b2537 (diff) |
reiserfs: fix typos in messages and comments (journalled -> journaled)
Cc: <reiserfs-devel@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>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/reiserfs/super.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/reiserfs/super.c b/fs/reiserfs/super.c index 0cbf4cd11147..f723604c5d9b 100644 --- a/fs/reiserfs/super.c +++ b/fs/reiserfs/super.c | |||
@@ -182,7 +182,7 @@ static int finish_unfinished(struct super_block *s) | |||
182 | int ret = reiserfs_quota_on_mount(s, i); | 182 | int ret = reiserfs_quota_on_mount(s, i); |
183 | if (ret < 0) | 183 | if (ret < 0) |
184 | reiserfs_warning(s, | 184 | reiserfs_warning(s, |
185 | "reiserfs: cannot turn on journalled quota: error %d", | 185 | "reiserfs: cannot turn on journaled quota: error %d", |
186 | ret); | 186 | ret); |
187 | } | 187 | } |
188 | } | 188 | } |
@@ -994,7 +994,7 @@ static int reiserfs_parse_options(struct super_block *s, char *options, /* strin | |||
994 | 994 | ||
995 | if (sb_any_quota_enabled(s)) { | 995 | if (sb_any_quota_enabled(s)) { |
996 | reiserfs_warning(s, | 996 | reiserfs_warning(s, |
997 | "reiserfs_parse_options: cannot change journalled quota options when quota turned on."); | 997 | "reiserfs_parse_options: cannot change journaled quota options when quota turned on."); |
998 | return 0; | 998 | return 0; |
999 | } | 999 | } |
1000 | if (*arg) { /* Some filename specified? */ | 1000 | if (*arg) { /* Some filename specified? */ |
@@ -1039,7 +1039,7 @@ static int reiserfs_parse_options(struct super_block *s, char *options, /* strin | |||
1039 | #else | 1039 | #else |
1040 | if (c == 'u' || c == 'g' || c == 'f') { | 1040 | if (c == 'u' || c == 'g' || c == 'f') { |
1041 | reiserfs_warning(s, | 1041 | reiserfs_warning(s, |
1042 | "reiserfs_parse_options: journalled quota options not supported."); | 1042 | "reiserfs_parse_options: journaled quota options not supported."); |
1043 | return 0; | 1043 | return 0; |
1044 | } | 1044 | } |
1045 | #endif | 1045 | #endif |
@@ -1050,7 +1050,7 @@ static int reiserfs_parse_options(struct super_block *s, char *options, /* strin | |||
1050 | && (REISERFS_SB(s)->s_qf_names[USRQUOTA] | 1050 | && (REISERFS_SB(s)->s_qf_names[USRQUOTA] |
1051 | || REISERFS_SB(s)->s_qf_names[GRPQUOTA])) { | 1051 | || REISERFS_SB(s)->s_qf_names[GRPQUOTA])) { |
1052 | reiserfs_warning(s, | 1052 | reiserfs_warning(s, |
1053 | "reiserfs_parse_options: journalled quota format not specified."); | 1053 | "reiserfs_parse_options: journaled quota format not specified."); |
1054 | return 0; | 1054 | return 0; |
1055 | } | 1055 | } |
1056 | /* This checking is not precise wrt the quota type but for our purposes it is sufficient */ | 1056 | /* This checking is not precise wrt the quota type but for our purposes it is sufficient */ |
@@ -1980,7 +1980,7 @@ static int reiserfs_release_dquot(struct dquot *dquot) | |||
1980 | 1980 | ||
1981 | static int reiserfs_mark_dquot_dirty(struct dquot *dquot) | 1981 | static int reiserfs_mark_dquot_dirty(struct dquot *dquot) |
1982 | { | 1982 | { |
1983 | /* Are we journalling quotas? */ | 1983 | /* Are we journaling quotas? */ |
1984 | if (REISERFS_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] || | 1984 | if (REISERFS_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] || |
1985 | REISERFS_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) { | 1985 | REISERFS_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) { |
1986 | dquot_mark_dquot_dirty(dquot); | 1986 | dquot_mark_dquot_dirty(dquot); |