| To: | Ben Myers <bpm@xxxxxxx>, Alex Elder <aelder@xxxxxxx>, Christoph Hellwig <hch@xxxxxx> |
|---|---|
| Subject: | [PATCH 1/3] xfs: consider new reservation for quota check on inode reservation |
| From: | Mitsuo Hayasaka <mitsuo.hayasaka.hu@xxxxxxxxxxx> |
| Date: | Mon, 23 Jan 2012 12:45:25 +0900 |
| Cc: | xfs-masters@xxxxxxxxxxx, xfs@xxxxxxxxxxx, linux-kernel@xxxxxxxxxxxxxxx, yrl.pp-manager.tt@xxxxxxxxxxx, Mitsuo Hayasaka <mitsuo.hayasaka.hu@xxxxxxxxxxx>, Ben Myers <bpm@xxxxxxx>, Alex Elder <elder@xxxxxxxxxx>, Christoph Hellwig <hch@xxxxxx> |
| In-reply-to: | <20120123034513.3339.97432.stgit@xxxxxxxxxxxxxxxxxxxxxxxx> |
| References: | <20120123034513.3339.97432.stgit@xxxxxxxxxxxxxxxxxxxxxxxx> |
| User-agent: | StGIT/0.14.3 |
The xfs checks quota when reserving disk blocks and inodes. In the block
reservation it checks if the total number of blocks including current
usage and new reservation reach quota. However, in the inode reservation
it checks using the total number of inodes including only current usage
without new reservation. It should include the new one, as well.
Signed-off-by: Mitsuo Hayasaka <mitsuo.hayasaka.hu@xxxxxxxxxxx>
Cc: Ben Myers <bpm@xxxxxxx>
Cc: Alex Elder <elder@xxxxxxxxxx>
Cc: Christoph Hellwig <hch@xxxxxx>
---
fs/xfs/xfs_trans_dquot.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/fs/xfs/xfs_trans_dquot.c b/fs/xfs/xfs_trans_dquot.c
index 4d00ee6..eb29fe1 100644
--- a/fs/xfs/xfs_trans_dquot.c
+++ b/fs/xfs/xfs_trans_dquot.c
@@ -677,11 +677,13 @@ xfs_trans_dqresv(
if (!softlimit)
softlimit = q->qi_isoftlimit;
- if (hardlimit > 0ULL && count >= hardlimit) {
+ if (hardlimit > 0ULL &&
+ hardlimit <= ninos + count) {
xfs_quota_warn(mp, dqp, QUOTA_NL_IHARDWARN);
goto error_return;
}
- if (softlimit > 0ULL && count >= softlimit) {
+ if (softlimit > 0ULL &&
+ softlimit <= ninos + count) {
if ((timer != 0 && get_seconds() > timer) ||
(warns != 0 && warns >= warnlimit)) {
xfs_quota_warn(mp, dqp,
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH 0/3] xfs: change available ranges in quota check, Mitsuo Hayasaka |
|---|---|
| Next by Date: | [PATCH 2/3] xfs: change available ranges of softlimit and hardlimit in quota check, Mitsuo Hayasaka |
| Previous by Thread: | [PATCH 0/3] xfs: change available ranges in quota check, Mitsuo Hayasaka |
| Next by Thread: | [PATCH 2/3] xfs: change available ranges of softlimit and hardlimit in quota check, Mitsuo Hayasaka |
| Indexes: | [Date] [Thread] [Top] [All Lists] |