|
@@ -182,7 +182,7 @@ static int finish_unfinished(struct super_block *s)
|
|
int ret = reiserfs_quota_on_mount(s, i);
|
|
int ret = reiserfs_quota_on_mount(s, i);
|
|
if (ret < 0)
|
|
if (ret < 0)
|
|
reiserfs_warning(s,
|
|
reiserfs_warning(s,
|
|
- "reiserfs: cannot turn on journalled quota: error %d",
|
|
|
|
|
|
+ "reiserfs: cannot turn on journaled quota: error %d",
|
|
ret);
|
|
ret);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -994,7 +994,7 @@ static int reiserfs_parse_options(struct super_block *s, char *options, /* strin
|
|
|
|
|
|
if (sb_any_quota_enabled(s)) {
|
|
if (sb_any_quota_enabled(s)) {
|
|
reiserfs_warning(s,
|
|
reiserfs_warning(s,
|
|
- "reiserfs_parse_options: cannot change journalled quota options when quota turned on.");
|
|
|
|
|
|
+ "reiserfs_parse_options: cannot change journaled quota options when quota turned on.");
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
if (*arg) { /* Some filename specified? */
|
|
if (*arg) { /* Some filename specified? */
|
|
@@ -1039,7 +1039,7 @@ static int reiserfs_parse_options(struct super_block *s, char *options, /* strin
|
|
#else
|
|
#else
|
|
if (c == 'u' || c == 'g' || c == 'f') {
|
|
if (c == 'u' || c == 'g' || c == 'f') {
|
|
reiserfs_warning(s,
|
|
reiserfs_warning(s,
|
|
- "reiserfs_parse_options: journalled quota options not supported.");
|
|
|
|
|
|
+ "reiserfs_parse_options: journaled quota options not supported.");
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
#endif
|
|
#endif
|
|
@@ -1050,7 +1050,7 @@ static int reiserfs_parse_options(struct super_block *s, char *options, /* strin
|
|
&& (REISERFS_SB(s)->s_qf_names[USRQUOTA]
|
|
&& (REISERFS_SB(s)->s_qf_names[USRQUOTA]
|
|
|| REISERFS_SB(s)->s_qf_names[GRPQUOTA])) {
|
|
|| REISERFS_SB(s)->s_qf_names[GRPQUOTA])) {
|
|
reiserfs_warning(s,
|
|
reiserfs_warning(s,
|
|
- "reiserfs_parse_options: journalled quota format not specified.");
|
|
|
|
|
|
+ "reiserfs_parse_options: journaled quota format not specified.");
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
/* This checking is not precise wrt the quota type but for our purposes it is sufficient */
|
|
/* 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)
|
|
|
|
|
|
static int reiserfs_mark_dquot_dirty(struct dquot *dquot)
|
|
static int reiserfs_mark_dquot_dirty(struct dquot *dquot)
|
|
{
|
|
{
|
|
- /* Are we journalling quotas? */
|
|
|
|
|
|
+ /* Are we journaling quotas? */
|
|
if (REISERFS_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
|
|
if (REISERFS_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
|
|
REISERFS_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
|
|
REISERFS_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
|
|
dquot_mark_dquot_dirty(dquot);
|
|
dquot_mark_dquot_dirty(dquot);
|