summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPranith Kumar K <pkarampu@redhat.com>2019-05-05 21:17:24 +0530
committerhari gowtham <hari.gowtham005@gmail.com>2020-02-24 07:54:22 +0000
commitd6584baa65c73577b29b99f47ac9820b3b8b3b00 (patch)
tree2788bbc2326c862860521fcaeadd56dfd3db90fd
parent0c6663284294024bd91152d7d8579f59780bd338 (diff)
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. fixes: bz#1805049 Change-Id: Idc6408968efaad897b95a5a52481c66e843d3fb8 Signed-off-by: Pranith Kumar K <pkarampu@redhat.com>
-rw-r--r--xlators/cluster/ec/src/ec-common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/cluster/ec/src/ec-common.c b/xlators/cluster/ec/src/ec-common.c
index e520fad27e1..bceff105d93 100644
--- a/xlators/cluster/ec/src/ec-common.c
+++ b/xlators/cluster/ec/src/ec-common.c
@@ -128,7 +128,7 @@ ec_fix_open(ec_fop_data_t *fop, uintptr_t mask)
} else {
ec_open(fop->frame, fop->xl, need_open,
EC_MINIMUM_ONE | EC_FOP_NO_PROPAGATE_ERROR, NULL, NULL, &loc,
- fop->fd->flags, fop->fd, NULL);
+ fop->fd->flags & (~O_TRUNC), fop->fd, NULL);
}
out: