summaryrefslogtreecommitdiffstats
path: root/xlators/cluster/afr/src/afr-self-heal-data.c
diff options
context:
space:
mode:
authorPranith Kumar K <pkarampu@redhat.com>2016-04-22 11:43:45 +0530
committerJeff Darcy <jdarcy@redhat.com>2016-04-27 08:06:35 -0700
commit302e218f68ef5edab6b369411d6f06cafea08ce1 (patch)
tree68181fc08b015e5227fd5f29045a47d78d3bbd00 /xlators/cluster/afr/src/afr-self-heal-data.c
parent88a386b9c87072787a3b712073cbf19a74b0bd20 (diff)
cluster/afr: Do not fsync when durability is off
BUG: 1329501 Change-Id: Id402c20f2fa19b22bc402295e03e7a0ea96b0c40 Signed-off-by: Pranith Kumar K <pkarampu@redhat.com> Reviewed-on: http://review.gluster.org/14048 Reviewed-by: Ravishankar N <ravishankar@redhat.com> Smoke: Gluster Build System <jenkins@build.gluster.com> NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org> CentOS-regression: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Jeff Darcy <jdarcy@redhat.com>
Diffstat (limited to 'xlators/cluster/afr/src/afr-self-heal-data.c')
-rw-r--r--xlators/cluster/afr/src/afr-self-heal-data.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/xlators/cluster/afr/src/afr-self-heal-data.c b/xlators/cluster/afr/src/afr-self-heal-data.c
index e48fd19110b..f4cd16c3a70 100644
--- a/xlators/cluster/afr/src/afr-self-heal-data.c
+++ b/xlators/cluster/afr/src/afr-self-heal-data.c
@@ -298,6 +298,9 @@ afr_selfheal_data_fsync (call_frame_t *frame, xlator_t *this, fd_t *fd,
local = frame->local;
priv = this->private;
+ if (!priv->ensure_durability)
+ return 0;
+
AFR_ONLIST (healed_sinks, frame, attr_cbk, fsync, fd, 0, NULL);
for (i = 0; i < priv->child_count; i++)