diff options
author | Krishnan Parthasarathi <kparthas@redhat.com> | 2013-10-28 19:14:49 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2014-01-20 07:15:07 -0800 |
commit | 17c4fb2d04f84b5632983866e8bddfbd7d77a054 (patch) | |
tree | a94ecf181a3df66a381df09d1abb73cab192d878 /xlators/features/quota/src/quota.h | |
parent | b2ef4e3d11af79a765406672bb6ca070b40c9b64 (diff) |
quota: get directory size before enforcing quota on rename
Change-Id: If18cab5992ddc91457782786942971deb1b51ead
BUG: 1023974
Signed-off-by: Krishnan Parthasarathi <kparthas@redhat.com>
Reviewed-on: http://review.gluster.org/6155
Reviewed-by: Raghavendra G <rgowdapp@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators/features/quota/src/quota.h')
-rw-r--r-- | xlators/features/quota/src/quota.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xlators/features/quota/src/quota.h b/xlators/features/quota/src/quota.h index 96c19e77eb8..02bc0d8b6b4 100644 --- a/xlators/features/quota/src/quota.h +++ b/xlators/features/quota/src/quota.h @@ -130,6 +130,9 @@ goto label; \ } while (0) +#define QUOTA_REG_OR_LNK_FILE(ia_type) \ + (IA_ISREG (ia_type) || IA_ISLNK (ia_type)) + struct quota_dentry { |