aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/dquot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/dquot.c b/fs/dquot.c
index c02223b6aeb2..c88330602ddd 100644
--- a/fs/dquot.c
+++ b/fs/dquot.c
@@ -1041,7 +1041,7 @@ static inline char ignore_hardlimit(struct dquot *dquot)
1041static int check_idq(struct dquot *dquot, qsize_t inodes, char *warntype) 1041static int check_idq(struct dquot *dquot, qsize_t inodes, char *warntype)
1042{ 1042{
1043 *warntype = QUOTA_NL_NOWARN; 1043 *warntype = QUOTA_NL_NOWARN;
1044 if (inodes <= 0 || test_bit(DQ_FAKE_B, &dquot->dq_flags)) 1044 if (test_bit(DQ_FAKE_B, &dquot->dq_flags))
1045 return QUOTA_OK; 1045 return QUOTA_OK;
1046 1046
1047 if (dquot->dq_dqb.dqb_ihardlimit && 1047 if (dquot->dq_dqb.dqb_ihardlimit &&
@@ -1073,7 +1073,7 @@ static int check_idq(struct dquot *dquot, qsize_t inodes, char *warntype)
1073static int check_bdq(struct dquot *dquot, qsize_t space, int prealloc, char *warntype) 1073static int check_bdq(struct dquot *dquot, qsize_t space, int prealloc, char *warntype)
1074{ 1074{
1075 *warntype = QUOTA_NL_NOWARN; 1075 *warntype = QUOTA_NL_NOWARN;
1076 if (space <= 0 || test_bit(DQ_FAKE_B, &dquot->dq_flags)) 1076 if (test_bit(DQ_FAKE_B, &dquot->dq_flags))
1077 return QUOTA_OK; 1077 return QUOTA_OK;
1078 1078
1079 if (dquot->dq_dqb.dqb_bhardlimit && 1079 if (dquot->dq_dqb.dqb_bhardlimit &&