diff options
author | Raghavendra G <raghavendra@gluster.com> | 2011-04-12 09:17:55 +0000 |
---|---|---|
committer | Anand Avati <avati@gluster.com> | 2011-04-12 21:50:17 -0700 |
commit | 470bef24d742165a6499128f0b7a8748bdc8be96 (patch) | |
tree | eb42081808c5fcb9aac644934f74d987dd48d72e /xlators/features/quota/src/quota.c | |
parent | cc734698b6edcbf54b244a23ff757ae6f2f669b5 (diff) |
features/quota: add error checks for failure of quota_inode_loc_fill.
Signed-off-by: Raghavendra G <raghavendra@gluster.com>
Signed-off-by: Anand Avati <avati@gluster.com>
BUG: 2727 ([glusterfs-3.2.0qa11]: nfs server crashed in quota_check_limit)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2727
Diffstat (limited to 'xlators/features/quota/src/quota.c')
-rw-r--r-- | xlators/features/quota/src/quota.c | 42 |
1 files changed, 34 insertions, 8 deletions
diff --git a/xlators/features/quota/src/quota.c b/xlators/features/quota/src/quota.c index c7d92d2b8..a94d5b729 100644 --- a/xlators/features/quota/src/quota.c +++ b/xlators/features/quota/src/quota.c @@ -71,11 +71,14 @@ quota_inode_loc_fill (inode_t *inode, loc_t *loc) char *resolvedpath = NULL; inode_t *parent = NULL; int ret = -1; + xlator_t *this = NULL; if ((!inode) || (!loc)) { return ret; } + this = THIS; + if ((inode) && (inode->ino == 1)) { loc->parent = NULL; goto ignore_parent; @@ -83,17 +86,26 @@ quota_inode_loc_fill (inode_t *inode, loc_t *loc) parent = inode_parent (inode, 0, NULL); if (!parent) { + gf_log (this->name, GF_LOG_WARNING, + "cannot find parent for inode (ino:%"PRId64", " + "gfid:%s)", inode->ino, + uuid_utoa (inode->gfid)); goto err; } ignore_parent: ret = inode_path (inode, NULL, &resolvedpath); if (ret < 0) { + gf_log (this->name, GF_LOG_WARNING, + "cannot construct path for inode (ino:%"PRId64", " + "gfid:%s)", inode->ino, + uuid_utoa (inode->gfid)); goto err; } ret = quota_loc_fill (loc, inode, parent, resolvedpath); if (ret < 0) { + gf_log (this->name, GF_LOG_WARNING, "cannot fill loc"); goto err; } @@ -367,10 +379,11 @@ quota_check_limit (call_frame_t *frame, inode_t *inode, xlator_t *this, } if (parent == NULL) { - gf_log (this->name, GF_LOG_DEBUG, + gf_log (this->name, GF_LOG_WARNING, "cannot find parent for inode (ino:%"PRId64", " - "gfid:%s)", _inode->ino, - uuid_utoa (_inode->gfid)); + "gfid:%s), hence aborting enforcing " + "quota-limits and continuing with the fop", + _inode->ino, uuid_utoa (_inode->gfid)); } inode_unref (_inode); @@ -423,14 +436,27 @@ validate: } local->validate_count++; - quota_inode_loc_fill (_inode, &local->validate_loc); + ret = quota_inode_loc_fill (_inode, &local->validate_loc); + if (ret < 0) { + gf_log (this->name, GF_LOG_WARNING, + "cannot fill loc for inode (ino:%"PRId64", " + "gfid:%s), hence aborting quota-checks and " + "continuing with the fop", _inode->ino, + uuid_utoa (_inode->gfid)); + local->validate_count--; + } } UNLOCK (&local->lock); + if (ret < 0) { + goto loc_fill_failed; + } + STACK_WIND (frame, quota_validate_cbk, FIRST_CHILD(this), FIRST_CHILD(this)->fops->getxattr, &local->validate_loc, QUOTA_SIZE_KEY); +loc_fill_failed: inode_unref (_inode); return 0; } @@ -733,12 +759,12 @@ quota_update_size (xlator_t *this, inode_t *inode, char *name, ino_t par, } parent = inode_parent (_inode, par, name); - if (parent == NULL) { - gf_log (this->name, GF_LOG_DEBUG, + gf_log (this->name, GF_LOG_WARNING, "cannot find parent for inode (ino:%"PRId64", " - "gfid:%s)", _inode->ino, - uuid_utoa (_inode->gfid)); + "gfid:%s), hence aborting size updation of " + "parents", + _inode->ino, uuid_utoa (_inode->gfid)); } if (name != NULL) { |