diff options
author | Krutika Dhananjay <kdhananj@redhat.com> | 2017-02-28 15:52:49 +0530 |
---|---|---|
committer | Pranith Kumar Karampuri <pkarampu@redhat.com> | 2017-03-12 23:03:03 -0400 |
commit | fc97b1dc38ad46302d51a988cda18335f88514a2 (patch) | |
tree | 71e92d6c74158533bc10722050c1cda8d7efcb46 /xlators/storage/posix/src/posix-helpers.c | |
parent | eac6dfc314abe4dc50c54bf6c6cc004dfd73d5ac (diff) |
storage/posix: Use granular mutex locks for pgfid update syscalls
Change-Id: Ie5d635951c483d858dc4be2a90fb24b8b5f4f02d
BUG: 1421938
Signed-off-by: Krutika Dhananjay <kdhananj@redhat.com>
Reviewed-on: https://review.gluster.org/16869
Smoke: Gluster Build System <jenkins@build.gluster.org>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
Reviewed-by: Pranith Kumar Karampuri <pkarampu@redhat.com>
Diffstat (limited to 'xlators/storage/posix/src/posix-helpers.c')
-rw-r--r-- | xlators/storage/posix/src/posix-helpers.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xlators/storage/posix/src/posix-helpers.c b/xlators/storage/posix/src/posix-helpers.c index f619895ba4c..cc862c259ca 100644 --- a/xlators/storage/posix/src/posix-helpers.c +++ b/xlators/storage/posix/src/posix-helpers.c @@ -2195,11 +2195,13 @@ __posix_inode_ctx_get (inode_t *inode, xlator_t *this) pthread_mutex_init (&ctx_p->xattrop_lock, NULL); pthread_mutex_init (&ctx_p->write_atomic_lock, NULL); + pthread_mutex_init (&ctx_p->pgfid_lock, NULL); ret = __inode_ctx_set (inode, this, (uint64_t *)&ctx_p); if (ret < 0) { pthread_mutex_destroy (&ctx_p->xattrop_lock); pthread_mutex_destroy (&ctx_p->write_atomic_lock); + pthread_mutex_destroy (&ctx_p->pgfid_lock); GF_FREE (ctx_p); return NULL; } |