diff options
author | vmallika <vmallika@redhat.com> | 2015-01-22 17:40:44 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2015-03-18 06:59:54 -0700 |
commit | ee7bde14cd8afa7752dbaecd72a4afe16fb7afa9 (patch) | |
tree | a9b64abad2dda78e300f62ae2c06e6d9b2ca44e3 /xlators/features/quota/src/quota.h | |
parent | a216745e5db3fdb4fa8d625c971e70f8d0e34d23 (diff) |
Quota: Build ancestry in the lookup
Marker can fail or can account incorrect numbers when it doesn't find a
ancestry for a inode.
Solution:
Current build_ancestry is done only on demand in the write/create FOPs
in quota enforcer.
It is good to do this in the quota_lookup as well.
Change-Id: I8aaf5b3e05a3ca51e7ab1eaa1b636a90f659a872
BUG: 1184885
Signed-off-by: vmallika <vmallika@redhat.com>
Reviewed-on: http://review.gluster.org/9478
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Raghavendra Bhat <raghavendra@redhat.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 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xlators/features/quota/src/quota.h b/xlators/features/quota/src/quota.h index f21aed6c38f..ac08a040d8a 100644 --- a/xlators/features/quota/src/quota.h +++ b/xlators/features/quota/src/quota.h @@ -173,6 +173,7 @@ struct quota_inode_ctx { struct list_head parents; struct timeval tv; struct timeval prev_log; + gf_boolean_t ancestry_built; gf_lock_t lock; }; typedef struct quota_inode_ctx quota_inode_ctx_t; |