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