14f8ab
From 40bd6e9c186adb427e136a84eaab631e6a6f5263 Mon Sep 17 00:00:00 2001
14f8ab
From: Pranith Kumar K <pkarampu@redhat.com>
14f8ab
Date: Sun, 5 May 2019 21:17:24 +0530
14f8ab
Subject: [PATCH 140/141] cluster/ec: Reopen shouldn't happen with O_TRUNC
14f8ab
14f8ab
Problem:
14f8ab
Doing re-open with O_TRUNC will truncate the fragment even when it is not
14f8ab
needed needing extra heals
14f8ab
14f8ab
Fix:
14f8ab
At the time of re-open don't use O_TRUNC.
14f8ab
14f8ab
Upstream-patch: https://review.gluster.org/c/glusterfs/+/22660/
14f8ab
14f8ab
fixes bz#1706549
14f8ab
Change-Id: Idc6408968efaad897b95a5a52481c66e843d3fb8
14f8ab
Signed-off-by: Pranith Kumar K <pkarampu@redhat.com>
14f8ab
Reviewed-on: https://code.engineering.redhat.com/gerrit/169982
14f8ab
Tested-by: RHGS Build Bot <nigelb@redhat.com>
14f8ab
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
14f8ab
---
14f8ab
 xlators/cluster/ec/src/ec-common.c | 2 +-
14f8ab
 1 file changed, 1 insertion(+), 1 deletion(-)
14f8ab
14f8ab
diff --git a/xlators/cluster/ec/src/ec-common.c b/xlators/cluster/ec/src/ec-common.c
14f8ab
index 1454ae2..b1ba5e9 100644
14f8ab
--- a/xlators/cluster/ec/src/ec-common.c
14f8ab
+++ b/xlators/cluster/ec/src/ec-common.c
14f8ab
@@ -128,7 +128,7 @@ ec_fix_open(ec_fop_data_t *fop, uintptr_t mask)
14f8ab
     } else {
14f8ab
         ec_open(fop->frame, fop->xl, need_open,
14f8ab
                 EC_MINIMUM_ONE | EC_FOP_NO_PROPAGATE_ERROR, NULL, NULL, &loc,
14f8ab
-                fop->fd->flags, fop->fd, NULL);
14f8ab
+                fop->fd->flags & (~O_TRUNC), fop->fd, NULL);
14f8ab
     }
14f8ab
 
14f8ab
 out:
14f8ab
-- 
14f8ab
1.8.3.1
14f8ab