diff options
author | Pranith Kumar K <pkarampu@redhat.com> | 2013-02-06 12:34:17 +0530 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2013-02-06 09:25:42 -0800 |
commit | 3a141cda38cd6908dc3f1103a02eb38007552e87 (patch) | |
tree | 948a1044b637b4be870c7aa0e6b75fe066da0eb6 /xlators/cluster/afr/src/afr-common.c | |
parent | e0a331c4bea8713a67a0f8c5dc4bac1e6f81f358 (diff) |
cluster/afr: Avoid priv->eager_lock value update race
Change-Id: I7049c0c64e36a9dfa4cc0e0b34de7ec111d2f6c1
BUG: 908302
Signed-off-by: Pranith Kumar K <pkarampu@redhat.com>
Reviewed-on: http://review.gluster.org/4076
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Jeff Darcy <jdarcy@redhat.com>
Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'xlators/cluster/afr/src/afr-common.c')
-rw-r--r-- | xlators/cluster/afr/src/afr-common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xlators/cluster/afr/src/afr-common.c b/xlators/cluster/afr/src/afr-common.c index 424a6997160..801346406d7 100644 --- a/xlators/cluster/afr/src/afr-common.c +++ b/xlators/cluster/afr/src/afr-common.c @@ -4024,6 +4024,7 @@ afr_transaction_local_init (afr_local_t *local, xlator_t *this) AFR_NUM_CHANGE_LOGS); if (!local->transaction.txn_changelog) goto out; + local->transaction.eager_lock_on = priv->eager_lock; ret = 0; out: return ret; |