|
|
e3c68b |
From e33b3e0a443d4a54634a664f2d499a3fce9e7fb4 Mon Sep 17 00:00:00 2001
|
|
|
e3c68b |
From: Pranith Kumar K <pkarampu@redhat.com>
|
|
|
e3c68b |
Date: Tue, 16 Apr 2019 14:19:47 +0530
|
|
|
e3c68b |
Subject: [PATCH 116/124] cluster/ec: fix fd reopen
|
|
|
e3c68b |
|
|
|
e3c68b |
Currently EC tries to reopen fd's that have been opened while a brick
|
|
|
e3c68b |
was down. This is done as part of regular write operations, just after
|
|
|
e3c68b |
having acquired the locks, and it's sent as a sub-fop of the main write
|
|
|
e3c68b |
fop.
|
|
|
e3c68b |
|
|
|
e3c68b |
There were two problems:
|
|
|
e3c68b |
|
|
|
e3c68b |
1. The reopen was attempted on all UP bricks, even if a previous lock
|
|
|
e3c68b |
didn't succeed. This is incorrect because most probably the open will
|
|
|
e3c68b |
fail.
|
|
|
e3c68b |
|
|
|
e3c68b |
2. If reopen is sent and fails, the error is propagated to the main
|
|
|
e3c68b |
operation, causing it to fail when it shouldn't.
|
|
|
e3c68b |
|
|
|
e3c68b |
To fix this, we only attempt reopens on bricks where the current fop
|
|
|
e3c68b |
owns a lock, and we prevent any error to be propagated to the main
|
|
|
e3c68b |
fop.
|
|
|
e3c68b |
|
|
|
e3c68b |
To implement this behaviour an argument used to indicate the minimum
|
|
|
e3c68b |
number of required answers has overloaded to also include some flags. To
|
|
|
e3c68b |
make the change consistent, it has been necessary to rename the
|
|
|
e3c68b |
argument, which means that a lot of files have been changed. However
|
|
|
e3c68b |
there are no functional changes.
|
|
|
e3c68b |
|
|
|
e3c68b |
This change has also uncovered a problem in discard code, which didn't
|
|
|
e3c68b |
correctely process requests of small sizes because no real discard fop
|
|
|
e3c68b |
was being processed, only a write of 0's on some region. In this case
|
|
|
e3c68b |
some fields of the fop remained uninitialized or with incorrect values.
|
|
|
e3c68b |
To fix this, a new function has been created to simulate success on a
|
|
|
e3c68b |
fop and it's used in the discard case.
|
|
|
e3c68b |
|
|
|
e3c68b |
Thanks to Pranith for providing a test script that has also detected an
|
|
|
e3c68b |
issue in this patch. This patch includes a small modification of this
|
|
|
e3c68b |
script to force data to be written into bricks before stopping them.
|
|
|
e3c68b |
|
|
|
e3c68b |
Upstream patch: https://review.gluster.org/22574
|
|
|
e3c68b |
> Change-Id: I7ccd1fc5fc134eeb6d443c755962a20819320d48
|
|
|
e3c68b |
> BUG: bz#1699866
|
|
|
e3c68b |
> Signed-off-by: Pranith Kumar K <pkarampu@redhat.com>
|
|
|
e3c68b |
|
|
|
e3c68b |
Upstream patch: https://review.gluster.org/22558
|
|
|
e3c68b |
> Change-Id: If272343873369186c2fb8f43c1d9c52c3ea304ec
|
|
|
e3c68b |
> BUG: bz#1699866
|
|
|
e3c68b |
> Signed-off-by: Xavi Hernandez <xhernandez@redhat.com>
|
|
|
e3c68b |
|
|
|
e3c68b |
Change-Id: If272343873369186c2fb8f43c1d9c52c3ea304ec
|
|
|
e3c68b |
Fixes: bz#1663375
|
|
|
e3c68b |
Signed-off-by: Xavi Hernandez <xhernandez@redhat.com>
|
|
|
e3c68b |
Reviewed-on: https://code.engineering.redhat.com/gerrit/168522
|
|
|
e3c68b |
Tested-by: RHGS Build Bot <nigelb@redhat.com>
|
|
|
e3c68b |
Reviewed-by: Pranith Kumar Karampuri <pkarampu@redhat.com>
|
|
|
e3c68b |
---
|
|
|
e3c68b |
tests/basic/ec/self-heal-read-write-fail.t | 69 +++++++++++++
|
|
|
e3c68b |
tests/bugs/ec/bug-1699866-check-reopen-fd.t | 34 +++++++
|
|
|
e3c68b |
xlators/cluster/ec/src/ec-common.c | 73 ++++++++++----
|
|
|
e3c68b |
xlators/cluster/ec/src/ec-common.h | 14 ++-
|
|
|
e3c68b |
xlators/cluster/ec/src/ec-data.c | 7 +-
|
|
|
e3c68b |
xlators/cluster/ec/src/ec-data.h | 2 +-
|
|
|
e3c68b |
xlators/cluster/ec/src/ec-dir-read.c | 12 +--
|
|
|
e3c68b |
xlators/cluster/ec/src/ec-dir-write.c | 52 +++++-----
|
|
|
e3c68b |
xlators/cluster/ec/src/ec-fops.h | 144 ++++++++++++++--------------
|
|
|
e3c68b |
xlators/cluster/ec/src/ec-generic.c | 54 ++++++-----
|
|
|
e3c68b |
xlators/cluster/ec/src/ec-heal.c | 20 ++--
|
|
|
e3c68b |
xlators/cluster/ec/src/ec-inode-read.c | 58 +++++------
|
|
|
e3c68b |
xlators/cluster/ec/src/ec-inode-write.c | 74 +++++++-------
|
|
|
e3c68b |
xlators/cluster/ec/src/ec-locks.c | 36 +++----
|
|
|
e3c68b |
xlators/cluster/ec/src/ec-types.h | 11 ++-
|
|
|
e3c68b |
xlators/cluster/ec/src/ec.c | 45 +++++----
|
|
|
e3c68b |
16 files changed, 431 insertions(+), 274 deletions(-)
|
|
|
e3c68b |
create mode 100644 tests/basic/ec/self-heal-read-write-fail.t
|
|
|
e3c68b |
create mode 100644 tests/bugs/ec/bug-1699866-check-reopen-fd.t
|
|
|
e3c68b |
|
|
|
e3c68b |
diff --git a/tests/basic/ec/self-heal-read-write-fail.t b/tests/basic/ec/self-heal-read-write-fail.t
|
|
|
e3c68b |
new file mode 100644
|
|
|
e3c68b |
index 0000000..0ba591b
|
|
|
e3c68b |
--- /dev/null
|
|
|
e3c68b |
+++ b/tests/basic/ec/self-heal-read-write-fail.t
|
|
|
e3c68b |
@@ -0,0 +1,69 @@
|
|
|
e3c68b |
+#!/bin/bash
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+. $(dirname $0)/../../include.rc
|
|
|
e3c68b |
+. $(dirname $0)/../../volume.rc
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+#This test verifies that self-heal fails when read/write fails as part of heal
|
|
|
e3c68b |
+cleanup
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+TEST glusterd
|
|
|
e3c68b |
+TEST pidof glusterd
|
|
|
e3c68b |
+TEST $CLI volume info
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+TEST $CLI volume create $V0 disperse 3 redundancy 1 $H0:$B0/${V0}{0,1,2}
|
|
|
e3c68b |
+TEST $CLI volume heal $V0 disable
|
|
|
e3c68b |
+TEST $CLI volume start $V0
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+TEST $GFS --volfile-id=/$V0 --volfile-server=$H0 $M0
|
|
|
e3c68b |
+EXPECT_WITHIN $CHILD_UP_TIMEOUT "3" ec_child_up_count $V0 0
|
|
|
e3c68b |
+TEST touch $M0/a
|
|
|
e3c68b |
+TEST kill_brick $V0 $H0 $B0/${V0}0
|
|
|
e3c68b |
+echo abc >> $M0/a
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+# Umount the volume to force all pending writes to reach the bricks
|
|
|
e3c68b |
+EXPECT_WITHIN $UMOUNT_TIMEOUT "Y" force_umount $M0
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+#Load error-gen and fail read fop and test that heal fails
|
|
|
e3c68b |
+TEST $CLI volume stop $V0 #Stop volume so that error-gen can be loaded
|
|
|
e3c68b |
+TEST $CLI volume set $V0 debug.error-gen posix
|
|
|
e3c68b |
+TEST $CLI volume set $V0 debug.error-fops read
|
|
|
e3c68b |
+TEST $CLI volume set $V0 debug.error-number EBADF
|
|
|
e3c68b |
+TEST $CLI volume set $V0 debug.error-failure 100
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+TEST $CLI volume start $V0
|
|
|
e3c68b |
+TEST $GFS --volfile-id=/$V0 --volfile-server=$H0 $M0
|
|
|
e3c68b |
+EXPECT_WITHIN $CHILD_UP_TIMEOUT "3" ec_child_up_count $V0 0
|
|
|
e3c68b |
+EXPECT_WITHIN $HEAL_TIMEOUT "^2$" get_pending_heal_count $V0
|
|
|
e3c68b |
+TEST ! getfattr -n trusted.ec.heal $M0/a
|
|
|
e3c68b |
+EXPECT_WITHIN $HEAL_TIMEOUT "^2$" get_pending_heal_count $V0
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+#fail write fop and test that heal fails
|
|
|
e3c68b |
+TEST $CLI volume stop $V0
|
|
|
e3c68b |
+TEST $CLI volume set $V0 debug.error-fops write
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+TEST $CLI volume start $V0
|
|
|
e3c68b |
+EXPECT_WITHIN $CHILD_UP_TIMEOUT "3" ec_child_up_count $V0 0
|
|
|
e3c68b |
+EXPECT_WITHIN $HEAL_TIMEOUT "^2$" get_pending_heal_count $V0
|
|
|
e3c68b |
+TEST ! getfattr -n trusted.ec.heal $M0/a
|
|
|
e3c68b |
+EXPECT_WITHIN $HEAL_TIMEOUT "^2$" get_pending_heal_count $V0
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+TEST $CLI volume stop $V0 #Stop volume so that error-gen can be disabled
|
|
|
e3c68b |
+TEST $CLI volume reset $V0 debug.error-gen
|
|
|
e3c68b |
+TEST $CLI volume reset $V0 debug.error-fops
|
|
|
e3c68b |
+TEST $CLI volume reset $V0 debug.error-number
|
|
|
e3c68b |
+TEST $CLI volume reset $V0 debug.error-failure
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+TEST $CLI volume start $V0
|
|
|
e3c68b |
+EXPECT_WITHIN $CHILD_UP_TIMEOUT "3" ec_child_up_count $V0 0
|
|
|
e3c68b |
+EXPECT_WITHIN $HEAL_TIMEOUT "^2$" get_pending_heal_count $V0
|
|
|
e3c68b |
+TEST getfattr -n trusted.ec.heal $M0/a
|
|
|
e3c68b |
+EXPECT "^0$" get_pending_heal_count $V0
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+#Test that heal worked as expected by forcing read from brick0
|
|
|
e3c68b |
+#remount to make sure data is not served from any cache
|
|
|
e3c68b |
+EXPECT_WITHIN $UMOUNT_TIMEOUT "Y" force_umount $M0
|
|
|
e3c68b |
+TEST $GFS --volfile-id=/$V0 --volfile-server=$H0 $M0
|
|
|
e3c68b |
+TEST kill_brick $V0 $H0 $B0/${V0}2
|
|
|
e3c68b |
+EXPECT "abc" cat $M0/a
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+cleanup
|
|
|
e3c68b |
diff --git a/tests/bugs/ec/bug-1699866-check-reopen-fd.t b/tests/bugs/ec/bug-1699866-check-reopen-fd.t
|
|
|
e3c68b |
new file mode 100644
|
|
|
e3c68b |
index 0000000..4386d01
|
|
|
e3c68b |
--- /dev/null
|
|
|
e3c68b |
+++ b/tests/bugs/ec/bug-1699866-check-reopen-fd.t
|
|
|
e3c68b |
@@ -0,0 +1,34 @@
|
|
|
e3c68b |
+#!/bin/bash
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+. $(dirname $0)/../../include.rc
|
|
|
e3c68b |
+. $(dirname $0)/../../volume.rc
|
|
|
e3c68b |
+. $(dirname $0)/../../fileio.rc
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+cleanup
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+TEST glusterd
|
|
|
e3c68b |
+TEST pidof glusterd
|
|
|
e3c68b |
+TEST $CLI volume create $V0 disperse 6 redundancy 2 $H0:$B0/${V0}{0..5}
|
|
|
e3c68b |
+TEST $CLI volume heal $V0 disable
|
|
|
e3c68b |
+TEST $CLI volume set $V0 disperse.background-heals 0
|
|
|
e3c68b |
+TEST $CLI volume set $V0 write-behind off
|
|
|
e3c68b |
+TEST $CLI volume set $V0 open-behind off
|
|
|
e3c68b |
+TEST $CLI volume start $V0
|
|
|
e3c68b |
+TEST glusterfs --entry-timeout=0 --attribute-timeout=0 -s $H0 --volfile-id $V0 $M0
|
|
|
e3c68b |
+EXPECT_WITHIN $CHILD_UP_TIMEOUT "6" ec_child_up_count $V0 0
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+TEST mkdir -p $M0/dir
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+fd="$(fd_available)"
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+TEST kill_brick $V0 $H0 $B0/${V0}0
|
|
|
e3c68b |
+EXPECT_WITHIN $CHILD_UP_TIMEOUT "5" ec_child_up_count $V0 0
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+TEST fd_open ${fd} rw $M0/dir/test
|
|
|
e3c68b |
+TEST fd_write ${fd} "test1"
|
|
|
e3c68b |
+TEST $CLI volume replace-brick ${V0} $H0:$B0/${V0}0 $H0:$B0/${V0}0_1 commit force
|
|
|
e3c68b |
+EXPECT_WITHIN $CHILD_UP_TIMEOUT "6" ec_child_up_count $V0 0
|
|
|
e3c68b |
+TEST fd_write ${fd} "test2"
|
|
|
e3c68b |
+TEST fd_close ${fd}
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+cleanup
|
|
|
e3c68b |
diff --git a/xlators/cluster/ec/src/ec-common.c b/xlators/cluster/ec/src/ec-common.c
|
|
|
e3c68b |
index 5183680..1454ae2 100644
|
|
|
e3c68b |
--- a/xlators/cluster/ec/src/ec-common.c
|
|
|
e3c68b |
+++ b/xlators/cluster/ec/src/ec-common.c
|
|
|
e3c68b |
@@ -44,16 +44,16 @@ ec_update_fd_status(fd_t *fd, xlator_t *xl, int idx, int32_t ret_status)
|
|
|
e3c68b |
UNLOCK(&fd->lock);
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
-static int
|
|
|
e3c68b |
-ec_fd_ctx_need_open(fd_t *fd, xlator_t *this, uintptr_t *need_open)
|
|
|
e3c68b |
+static uintptr_t
|
|
|
e3c68b |
+ec_fd_ctx_need_open(fd_t *fd, xlator_t *this, uintptr_t mask)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
int i = 0;
|
|
|
e3c68b |
int count = 0;
|
|
|
e3c68b |
ec_t *ec = NULL;
|
|
|
e3c68b |
ec_fd_t *fd_ctx = NULL;
|
|
|
e3c68b |
+ uintptr_t need_open = 0;
|
|
|
e3c68b |
|
|
|
e3c68b |
ec = this->private;
|
|
|
e3c68b |
- *need_open = 0;
|
|
|
e3c68b |
|
|
|
e3c68b |
fd_ctx = ec_fd_get(fd, this);
|
|
|
e3c68b |
if (!fd_ctx)
|
|
|
e3c68b |
@@ -63,9 +63,9 @@ ec_fd_ctx_need_open(fd_t *fd, xlator_t *this, uintptr_t *need_open)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
for (i = 0; i < ec->nodes; i++) {
|
|
|
e3c68b |
if ((fd_ctx->fd_status[i] == EC_FD_NOT_OPENED) &&
|
|
|
e3c68b |
- (ec->xl_up & (1 << i))) {
|
|
|
e3c68b |
+ ((ec->xl_up & (1 << i)) != 0) && ((mask & (1 << i)) != 0)) {
|
|
|
e3c68b |
fd_ctx->fd_status[i] = EC_FD_OPENING;
|
|
|
e3c68b |
- *need_open |= (1 << i);
|
|
|
e3c68b |
+ need_open |= (1 << i);
|
|
|
e3c68b |
count++;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
}
|
|
|
e3c68b |
@@ -76,10 +76,11 @@ ec_fd_ctx_need_open(fd_t *fd, xlator_t *this, uintptr_t *need_open)
|
|
|
e3c68b |
* then ignore fixing the fd as it has been
|
|
|
e3c68b |
* requested from heal operation.
|
|
|
e3c68b |
*/
|
|
|
e3c68b |
- if (count >= ec->fragments)
|
|
|
e3c68b |
- count = 0;
|
|
|
e3c68b |
+ if (count >= ec->fragments) {
|
|
|
e3c68b |
+ need_open = 0;
|
|
|
e3c68b |
+ }
|
|
|
e3c68b |
|
|
|
e3c68b |
- return count;
|
|
|
e3c68b |
+ return need_open;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
static gf_boolean_t
|
|
|
e3c68b |
@@ -96,9 +97,8 @@ ec_is_fd_fixable(fd_t *fd)
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
static void
|
|
|
e3c68b |
-ec_fix_open(ec_fop_data_t *fop)
|
|
|
e3c68b |
+ec_fix_open(ec_fop_data_t *fop, uintptr_t mask)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
- int call_count = 0;
|
|
|
e3c68b |
uintptr_t need_open = 0;
|
|
|
e3c68b |
int ret = 0;
|
|
|
e3c68b |
loc_t loc = {
|
|
|
e3c68b |
@@ -109,9 +109,10 @@ ec_fix_open(ec_fop_data_t *fop)
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
|
|
|
e3c68b |
/* Evaluate how many remote fd's to be opened */
|
|
|
e3c68b |
- call_count = ec_fd_ctx_need_open(fop->fd, fop->xl, &need_open);
|
|
|
e3c68b |
- if (!call_count)
|
|
|
e3c68b |
+ need_open = ec_fd_ctx_need_open(fop->fd, fop->xl, mask);
|
|
|
e3c68b |
+ if (need_open == 0) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
+ }
|
|
|
e3c68b |
|
|
|
e3c68b |
loc.inode = inode_ref(fop->fd->inode);
|
|
|
e3c68b |
gf_uuid_copy(loc.gfid, fop->fd->inode->gfid);
|
|
|
e3c68b |
@@ -121,11 +122,13 @@ ec_fix_open(ec_fop_data_t *fop)
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
if (IA_IFDIR == fop->fd->inode->ia_type) {
|
|
|
e3c68b |
- ec_opendir(fop->frame, fop->xl, need_open, EC_MINIMUM_ONE, NULL, NULL,
|
|
|
e3c68b |
+ ec_opendir(fop->frame, fop->xl, need_open,
|
|
|
e3c68b |
+ EC_MINIMUM_ONE | EC_FOP_NO_PROPAGATE_ERROR, NULL, NULL,
|
|
|
e3c68b |
&fop->loc[0], fop->fd, NULL);
|
|
|
e3c68b |
} else {
|
|
|
e3c68b |
- ec_open(fop->frame, fop->xl, need_open, EC_MINIMUM_ONE, NULL, NULL,
|
|
|
e3c68b |
- &loc, fop->fd->flags, fop->fd, NULL);
|
|
|
e3c68b |
+ ec_open(fop->frame, fop->xl, need_open,
|
|
|
e3c68b |
+ EC_MINIMUM_ONE | EC_FOP_NO_PROPAGATE_ERROR, NULL, NULL, &loc,
|
|
|
e3c68b |
+ fop->fd->flags, fop->fd, NULL);
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
out:
|
|
|
e3c68b |
@@ -495,12 +498,16 @@ ec_resume(ec_fop_data_t *fop, int32_t error)
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_resume_parent(ec_fop_data_t *fop, int32_t error)
|
|
|
e3c68b |
+ec_resume_parent(ec_fop_data_t *fop)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_fop_data_t *parent;
|
|
|
e3c68b |
+ int32_t error = 0;
|
|
|
e3c68b |
|
|
|
e3c68b |
parent = fop->parent;
|
|
|
e3c68b |
if (parent != NULL) {
|
|
|
e3c68b |
+ if ((fop->fop_flags & EC_FOP_NO_PROPAGATE_ERROR) == 0) {
|
|
|
e3c68b |
+ error = fop->error;
|
|
|
e3c68b |
+ }
|
|
|
e3c68b |
ec_trace("RESUME_PARENT", fop, "error=%u", error);
|
|
|
e3c68b |
fop->parent = NULL;
|
|
|
e3c68b |
ec_resume(parent, error);
|
|
|
e3c68b |
@@ -593,6 +600,8 @@ ec_internal_op(ec_fop_data_t *fop)
|
|
|
e3c68b |
return _gf_true;
|
|
|
e3c68b |
if (fop->id == GF_FOP_FXATTROP)
|
|
|
e3c68b |
return _gf_true;
|
|
|
e3c68b |
+ if (fop->id == GF_FOP_OPEN)
|
|
|
e3c68b |
+ return _gf_true;
|
|
|
e3c68b |
return _gf_false;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
@@ -631,7 +640,7 @@ ec_msg_str(ec_fop_data_t *fop)
|
|
|
e3c68b |
return fop->errstr;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
-int32_t
|
|
|
e3c68b |
+static int32_t
|
|
|
e3c68b |
ec_child_select(ec_fop_data_t *fop)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_t *ec = fop->xl->private;
|
|
|
e3c68b |
@@ -693,8 +702,6 @@ ec_child_select(ec_fop_data_t *fop)
|
|
|
e3c68b |
return 0;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
- ec_sleep(fop);
|
|
|
e3c68b |
-
|
|
|
e3c68b |
return 1;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
@@ -773,6 +780,8 @@ ec_dispatch_one(ec_fop_data_t *fop)
|
|
|
e3c68b |
ec_dispatch_start(fop);
|
|
|
e3c68b |
|
|
|
e3c68b |
if (ec_child_select(fop)) {
|
|
|
e3c68b |
+ ec_sleep(fop);
|
|
|
e3c68b |
+
|
|
|
e3c68b |
fop->expected = 1;
|
|
|
e3c68b |
fop->first = ec_select_first_by_read_policy(fop->xl->private, fop);
|
|
|
e3c68b |
|
|
|
e3c68b |
@@ -807,6 +816,8 @@ ec_dispatch_inc(ec_fop_data_t *fop)
|
|
|
e3c68b |
ec_dispatch_start(fop);
|
|
|
e3c68b |
|
|
|
e3c68b |
if (ec_child_select(fop)) {
|
|
|
e3c68b |
+ ec_sleep(fop);
|
|
|
e3c68b |
+
|
|
|
e3c68b |
fop->expected = gf_bits_count(fop->remaining);
|
|
|
e3c68b |
fop->first = 0;
|
|
|
e3c68b |
|
|
|
e3c68b |
@@ -820,6 +831,8 @@ ec_dispatch_all(ec_fop_data_t *fop)
|
|
|
e3c68b |
ec_dispatch_start(fop);
|
|
|
e3c68b |
|
|
|
e3c68b |
if (ec_child_select(fop)) {
|
|
|
e3c68b |
+ ec_sleep(fop);
|
|
|
e3c68b |
+
|
|
|
e3c68b |
fop->expected = gf_bits_count(fop->remaining);
|
|
|
e3c68b |
fop->first = 0;
|
|
|
e3c68b |
|
|
|
e3c68b |
@@ -838,6 +851,8 @@ ec_dispatch_min(ec_fop_data_t *fop)
|
|
|
e3c68b |
ec_dispatch_start(fop);
|
|
|
e3c68b |
|
|
|
e3c68b |
if (ec_child_select(fop)) {
|
|
|
e3c68b |
+ ec_sleep(fop);
|
|
|
e3c68b |
+
|
|
|
e3c68b |
fop->expected = count = ec->fragments;
|
|
|
e3c68b |
fop->first = ec_select_first_by_read_policy(fop->xl->private, fop);
|
|
|
e3c68b |
idx = fop->first - 1;
|
|
|
e3c68b |
@@ -852,6 +867,23 @@ ec_dispatch_min(ec_fop_data_t *fop)
|
|
|
e3c68b |
}
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
+void
|
|
|
e3c68b |
+ec_succeed_all(ec_fop_data_t *fop)
|
|
|
e3c68b |
+{
|
|
|
e3c68b |
+ ec_dispatch_start(fop);
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+ if (ec_child_select(fop)) {
|
|
|
e3c68b |
+ fop->expected = gf_bits_count(fop->remaining);
|
|
|
e3c68b |
+ fop->first = 0;
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+ /* Simulate a successful execution on all bricks */
|
|
|
e3c68b |
+ ec_trace("SUCCEED", fop, "");
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+ fop->good = fop->remaining;
|
|
|
e3c68b |
+ fop->remaining = 0;
|
|
|
e3c68b |
+ }
|
|
|
e3c68b |
+}
|
|
|
e3c68b |
+
|
|
|
e3c68b |
ec_lock_t *
|
|
|
e3c68b |
ec_lock_allocate(ec_fop_data_t *fop, loc_t *loc)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
@@ -1825,7 +1857,8 @@ ec_lock_acquired(ec_lock_link_t *link)
|
|
|
e3c68b |
|
|
|
e3c68b |
if (fop->use_fd &&
|
|
|
e3c68b |
(link->update[EC_DATA_TXN] || link->update[EC_METADATA_TXN])) {
|
|
|
e3c68b |
- ec_fix_open(fop);
|
|
|
e3c68b |
+ /* Try to reopen closed fd's only if lock has succeeded. */
|
|
|
e3c68b |
+ ec_fix_open(fop, lock->mask);
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
ec_lock_resume_shared(&list);
|
|
|
e3c68b |
diff --git a/xlators/cluster/ec/src/ec-common.h b/xlators/cluster/ec/src/ec-common.h
|
|
|
e3c68b |
index 54aaa77..e948342 100644
|
|
|
e3c68b |
--- a/xlators/cluster/ec/src/ec-common.h
|
|
|
e3c68b |
+++ b/xlators/cluster/ec/src/ec-common.h
|
|
|
e3c68b |
@@ -54,9 +54,12 @@ enum _ec_xattrop_flags {
|
|
|
e3c68b |
|
|
|
e3c68b |
#define EC_SELFHEAL_BIT 62
|
|
|
e3c68b |
|
|
|
e3c68b |
-#define EC_MINIMUM_ONE -1
|
|
|
e3c68b |
-#define EC_MINIMUM_MIN -2
|
|
|
e3c68b |
-#define EC_MINIMUM_ALL -3
|
|
|
e3c68b |
+#define EC_MINIMUM_ONE (1 << 6)
|
|
|
e3c68b |
+#define EC_MINIMUM_MIN (2 << 6)
|
|
|
e3c68b |
+#define EC_MINIMUM_ALL (3 << 6)
|
|
|
e3c68b |
+#define EC_FOP_NO_PROPAGATE_ERROR (1 << 8)
|
|
|
e3c68b |
+#define EC_FOP_MINIMUM(_flags) ((_flags)&255)
|
|
|
e3c68b |
+#define EC_FOP_FLAGS(_flags) ((_flags) & ~255)
|
|
|
e3c68b |
|
|
|
e3c68b |
#define EC_UPDATE_DATA 1
|
|
|
e3c68b |
#define EC_UPDATE_META 2
|
|
|
e3c68b |
@@ -163,11 +166,14 @@ void
|
|
|
e3c68b |
ec_dispatch_one(ec_fop_data_t *fop);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
+ec_succeed_all(ec_fop_data_t *fop);
|
|
|
e3c68b |
+
|
|
|
e3c68b |
+void
|
|
|
e3c68b |
ec_sleep(ec_fop_data_t *fop);
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_resume(ec_fop_data_t *fop, int32_t error);
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_resume_parent(ec_fop_data_t *fop, int32_t error);
|
|
|
e3c68b |
+ec_resume_parent(ec_fop_data_t *fop);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_manager(ec_fop_data_t *fop, int32_t error);
|
|
|
e3c68b |
diff --git a/xlators/cluster/ec/src/ec-data.c b/xlators/cluster/ec/src/ec-data.c
|
|
|
e3c68b |
index fae8843..6ef9340 100644
|
|
|
e3c68b |
--- a/xlators/cluster/ec/src/ec-data.c
|
|
|
e3c68b |
+++ b/xlators/cluster/ec/src/ec-data.c
|
|
|
e3c68b |
@@ -98,7 +98,7 @@ ec_cbk_data_destroy(ec_cbk_data_t *cbk)
|
|
|
e3c68b |
|
|
|
e3c68b |
ec_fop_data_t *
|
|
|
e3c68b |
ec_fop_data_allocate(call_frame_t *frame, xlator_t *this, int32_t id,
|
|
|
e3c68b |
- uint32_t flags, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
+ uint32_t flags, uintptr_t target, uint32_t fop_flags,
|
|
|
e3c68b |
ec_wind_f wind, ec_handler_f handler, ec_cbk_t cbks,
|
|
|
e3c68b |
void *data)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
@@ -151,7 +151,8 @@ ec_fop_data_allocate(call_frame_t *frame, xlator_t *this, int32_t id,
|
|
|
e3c68b |
fop->refs = 1;
|
|
|
e3c68b |
|
|
|
e3c68b |
fop->flags = flags;
|
|
|
e3c68b |
- fop->minimum = minimum;
|
|
|
e3c68b |
+ fop->minimum = EC_FOP_MINIMUM(fop_flags);
|
|
|
e3c68b |
+ fop->fop_flags = EC_FOP_FLAGS(fop_flags);
|
|
|
e3c68b |
fop->mask = target;
|
|
|
e3c68b |
|
|
|
e3c68b |
fop->wind = wind;
|
|
|
e3c68b |
@@ -271,7 +272,7 @@ ec_fop_data_release(ec_fop_data_t *fop)
|
|
|
e3c68b |
loc_wipe(&fop->loc[1]);
|
|
|
e3c68b |
GF_FREE(fop->errstr);
|
|
|
e3c68b |
|
|
|
e3c68b |
- ec_resume_parent(fop, fop->error);
|
|
|
e3c68b |
+ ec_resume_parent(fop);
|
|
|
e3c68b |
|
|
|
e3c68b |
ec_fop_cleanup(fop);
|
|
|
e3c68b |
|
|
|
e3c68b |
diff --git a/xlators/cluster/ec/src/ec-data.h b/xlators/cluster/ec/src/ec-data.h
|
|
|
e3c68b |
index 112536d..c8a74ff 100644
|
|
|
e3c68b |
--- a/xlators/cluster/ec/src/ec-data.h
|
|
|
e3c68b |
+++ b/xlators/cluster/ec/src/ec-data.h
|
|
|
e3c68b |
@@ -18,7 +18,7 @@ ec_cbk_data_allocate(call_frame_t *frame, xlator_t *this, ec_fop_data_t *fop,
|
|
|
e3c68b |
int32_t id, int32_t idx, int32_t op_ret, int32_t op_errno);
|
|
|
e3c68b |
ec_fop_data_t *
|
|
|
e3c68b |
ec_fop_data_allocate(call_frame_t *frame, xlator_t *this, int32_t id,
|
|
|
e3c68b |
- uint32_t flags, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
+ uint32_t flags, uintptr_t target, uint32_t fop_flags,
|
|
|
e3c68b |
ec_wind_f wind, ec_handler_f handler, ec_cbk_t cbks,
|
|
|
e3c68b |
void *data);
|
|
|
e3c68b |
void
|
|
|
e3c68b |
diff --git a/xlators/cluster/ec/src/ec-dir-read.c b/xlators/cluster/ec/src/ec-dir-read.c
|
|
|
e3c68b |
index c9db701..8310d4a 100644
|
|
|
e3c68b |
--- a/xlators/cluster/ec/src/ec-dir-read.c
|
|
|
e3c68b |
+++ b/xlators/cluster/ec/src/ec-dir-read.c
|
|
|
e3c68b |
@@ -219,7 +219,7 @@ ec_manager_opendir(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_opendir(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_opendir_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_opendir_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
fd_t *fd, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.opendir = func};
|
|
|
e3c68b |
@@ -233,7 +233,7 @@ ec_opendir(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
fop = ec_fop_data_allocate(frame, this, GF_FOP_OPENDIR, EC_FLAG_LOCK_SHARED,
|
|
|
e3c68b |
- target, minimum, ec_wind_opendir,
|
|
|
e3c68b |
+ target, fop_flags, ec_wind_opendir,
|
|
|
e3c68b |
ec_manager_opendir, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
@@ -515,7 +515,7 @@ ec_manager_readdir(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_readdir(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_readdir_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_readdir_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
size_t size, off_t offset, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.readdir = func};
|
|
|
e3c68b |
@@ -529,7 +529,7 @@ ec_readdir(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
fop = ec_fop_data_allocate(frame, this, GF_FOP_READDIR, EC_FLAG_LOCK_SHARED,
|
|
|
e3c68b |
- target, minimum, ec_wind_readdir,
|
|
|
e3c68b |
+ target, fop_flags, ec_wind_readdir,
|
|
|
e3c68b |
ec_manager_readdir, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
@@ -585,7 +585,7 @@ ec_wind_readdirp(ec_t *ec, ec_fop_data_t *fop, int32_t idx)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_readdirp(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_readdirp_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_readdirp_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
size_t size, off_t offset, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.readdirp = func};
|
|
|
e3c68b |
@@ -599,7 +599,7 @@ ec_readdirp(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
fop = ec_fop_data_allocate(
|
|
|
e3c68b |
- frame, this, GF_FOP_READDIRP, EC_FLAG_LOCK_SHARED, target, minimum,
|
|
|
e3c68b |
+ frame, this, GF_FOP_READDIRP, EC_FLAG_LOCK_SHARED, target, fop_flags,
|
|
|
e3c68b |
ec_wind_readdirp, ec_manager_readdir, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
diff --git a/xlators/cluster/ec/src/ec-dir-write.c b/xlators/cluster/ec/src/ec-dir-write.c
|
|
|
e3c68b |
index e24667f..0b8ee21 100644
|
|
|
e3c68b |
--- a/xlators/cluster/ec/src/ec-dir-write.c
|
|
|
e3c68b |
+++ b/xlators/cluster/ec/src/ec-dir-write.c
|
|
|
e3c68b |
@@ -262,7 +262,7 @@ ec_manager_create(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_create(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_create_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_create_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
int32_t flags, mode_t mode, mode_t umask, fd_t *fd, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.create = func};
|
|
|
e3c68b |
@@ -275,7 +275,7 @@ ec_create(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_CREATE, 0, target, minimum,
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_CREATE, 0, target, fop_flags,
|
|
|
e3c68b |
ec_wind_create, ec_manager_create, callback,
|
|
|
e3c68b |
data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
@@ -432,9 +432,9 @@ ec_manager_link(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_link(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_link_cbk_t func, void *data, loc_t *oldloc, loc_t *newloc,
|
|
|
e3c68b |
- dict_t *xdata)
|
|
|
e3c68b |
+ec_link(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_link_cbk_t func, void *data, loc_t *oldloc,
|
|
|
e3c68b |
+ loc_t *newloc, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.link = func};
|
|
|
e3c68b |
ec_fop_data_t *fop = NULL;
|
|
|
e3c68b |
@@ -446,7 +446,7 @@ ec_link(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_LINK, 0, target, minimum,
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_LINK, 0, target, fop_flags,
|
|
|
e3c68b |
ec_wind_link, ec_manager_link, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
@@ -613,9 +613,9 @@ ec_manager_mkdir(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_mkdir(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_mkdir_cbk_t func, void *data, loc_t *loc, mode_t mode,
|
|
|
e3c68b |
- mode_t umask, dict_t *xdata)
|
|
|
e3c68b |
+ec_mkdir(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_mkdir_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ mode_t mode, mode_t umask, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.mkdir = func};
|
|
|
e3c68b |
ec_fop_data_t *fop = NULL;
|
|
|
e3c68b |
@@ -627,7 +627,7 @@ ec_mkdir(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_MKDIR, 0, target, minimum,
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_MKDIR, 0, target, fop_flags,
|
|
|
e3c68b |
ec_wind_mkdir, ec_manager_mkdir, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
@@ -815,9 +815,9 @@ ec_manager_mknod(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_mknod(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_mknod_cbk_t func, void *data, loc_t *loc, mode_t mode, dev_t rdev,
|
|
|
e3c68b |
- mode_t umask, dict_t *xdata)
|
|
|
e3c68b |
+ec_mknod(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_mknod_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ mode_t mode, dev_t rdev, mode_t umask, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.mknod = func};
|
|
|
e3c68b |
ec_fop_data_t *fop = NULL;
|
|
|
e3c68b |
@@ -829,7 +829,7 @@ ec_mknod(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_MKNOD, 0, target, minimum,
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_MKNOD, 0, target, fop_flags,
|
|
|
e3c68b |
ec_wind_mknod, ec_manager_mknod, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
@@ -975,7 +975,7 @@ ec_manager_rename(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_rename(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_rename_cbk_t func, void *data, loc_t *oldloc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_rename_cbk_t func, void *data, loc_t *oldloc,
|
|
|
e3c68b |
loc_t *newloc, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.rename = func};
|
|
|
e3c68b |
@@ -988,7 +988,7 @@ ec_rename(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_RENAME, 0, target, minimum,
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_RENAME, 0, target, fop_flags,
|
|
|
e3c68b |
ec_wind_rename, ec_manager_rename, callback,
|
|
|
e3c68b |
data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
@@ -1125,9 +1125,9 @@ ec_manager_rmdir(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_rmdir(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_rmdir_cbk_t func, void *data, loc_t *loc, int xflags,
|
|
|
e3c68b |
- dict_t *xdata)
|
|
|
e3c68b |
+ec_rmdir(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_rmdir_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ int xflags, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.rmdir = func};
|
|
|
e3c68b |
ec_fop_data_t *fop = NULL;
|
|
|
e3c68b |
@@ -1139,7 +1139,7 @@ ec_rmdir(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_RMDIR, 0, target, minimum,
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_RMDIR, 0, target, fop_flags,
|
|
|
e3c68b |
ec_wind_rmdir, ec_manager_rmdir, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
@@ -1281,7 +1281,7 @@ ec_manager_symlink(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_symlink(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_symlink_cbk_t func, void *data,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_symlink_cbk_t func, void *data,
|
|
|
e3c68b |
const char *linkname, loc_t *loc, mode_t umask, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.symlink = func};
|
|
|
e3c68b |
@@ -1294,9 +1294,9 @@ ec_symlink(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_SYMLINK, 0, target, minimum,
|
|
|
e3c68b |
- ec_wind_symlink, ec_manager_symlink, callback,
|
|
|
e3c68b |
- data);
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_SYMLINK, 0, target,
|
|
|
e3c68b |
+ fop_flags, ec_wind_symlink, ec_manager_symlink,
|
|
|
e3c68b |
+ callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
@@ -1435,7 +1435,7 @@ ec_manager_unlink(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_unlink(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_unlink_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_unlink_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
int xflags, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.unlink = func};
|
|
|
e3c68b |
@@ -1448,7 +1448,7 @@ ec_unlink(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_UNLINK, 0, target, minimum,
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_UNLINK, 0, target, fop_flags,
|
|
|
e3c68b |
ec_wind_unlink, ec_manager_unlink, callback,
|
|
|
e3c68b |
data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
diff --git a/xlators/cluster/ec/src/ec-fops.h b/xlators/cluster/ec/src/ec-fops.h
|
|
|
e3c68b |
index 2abef0d..07edf8a 100644
|
|
|
e3c68b |
--- a/xlators/cluster/ec/src/ec-fops.h
|
|
|
e3c68b |
+++ b/xlators/cluster/ec/src/ec-fops.h
|
|
|
e3c68b |
@@ -18,233 +18,237 @@
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_access(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_access_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_access_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
int32_t mask, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_create(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_create_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_create_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
int32_t flags, mode_t mode, mode_t umask, fd_t *fd, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_entrylk(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_entrylk_cbk_t func, void *data,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_entrylk_cbk_t func, void *data,
|
|
|
e3c68b |
const char *volume, loc_t *loc, const char *basename,
|
|
|
e3c68b |
entrylk_cmd cmd, entrylk_type type, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_fentrylk(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_fentrylk_cbk_t func, void *data,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fentrylk_cbk_t func, void *data,
|
|
|
e3c68b |
const char *volume, fd_t *fd, const char *basename, entrylk_cmd cmd,
|
|
|
e3c68b |
entrylk_type type, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_flush(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_flush_cbk_t func, void *data, fd_t *fd, dict_t *xdata);
|
|
|
e3c68b |
+ec_flush(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_flush_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_fsync(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_fsync_cbk_t func, void *data, fd_t *fd, int32_t datasync,
|
|
|
e3c68b |
- dict_t *xdata);
|
|
|
e3c68b |
+ec_fsync(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fsync_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ int32_t datasync, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_fsyncdir(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_fsyncdir_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fsyncdir_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
int32_t datasync, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_getxattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_getxattr_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_getxattr_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
const char *name, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_fgetxattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_fgetxattr_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fgetxattr_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
const char *name, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_heal(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_heal_cbk_t func, void *data, loc_t *loc, int32_t partial,
|
|
|
e3c68b |
- dict_t *xdata);
|
|
|
e3c68b |
+ec_heal(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_heal_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ int32_t partial, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_fheal(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_fheal_cbk_t func, void *data, fd_t *fd, int32_t partial,
|
|
|
e3c68b |
- dict_t *xdata);
|
|
|
e3c68b |
+ec_fheal(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fheal_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ int32_t partial, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_inodelk(call_frame_t *frame, xlator_t *this, gf_lkowner_t *owner,
|
|
|
e3c68b |
- uintptr_t target, int32_t minimum, fop_inodelk_cbk_t func,
|
|
|
e3c68b |
+ uintptr_t target, uint32_t fop_flags, fop_inodelk_cbk_t func,
|
|
|
e3c68b |
void *data, const char *volume, loc_t *loc, int32_t cmd,
|
|
|
e3c68b |
struct gf_flock *flock, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_finodelk(call_frame_t *frame, xlator_t *this, gf_lkowner_t *owner,
|
|
|
e3c68b |
- uintptr_t target, int32_t minimum, fop_finodelk_cbk_t func,
|
|
|
e3c68b |
+ uintptr_t target, uint32_t fop_flags, fop_finodelk_cbk_t func,
|
|
|
e3c68b |
void *data, const char *volume, fd_t *fd, int32_t cmd,
|
|
|
e3c68b |
struct gf_flock *flock, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_link(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_link_cbk_t func, void *data, loc_t *oldloc, loc_t *newloc,
|
|
|
e3c68b |
- dict_t *xdata);
|
|
|
e3c68b |
+ec_link(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_link_cbk_t func, void *data, loc_t *oldloc,
|
|
|
e3c68b |
+ loc_t *newloc, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_lk(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
+ec_lk(call_frame_t *frame, xlator_t *this, uintptr_t target, uint32_t fop_flags,
|
|
|
e3c68b |
fop_lk_cbk_t func, void *data, fd_t *fd, int32_t cmd,
|
|
|
e3c68b |
struct gf_flock *flock, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_lookup(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_lookup_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_lookup_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_mkdir(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_mkdir_cbk_t func, void *data, loc_t *loc, mode_t mode,
|
|
|
e3c68b |
- mode_t umask, dict_t *xdata);
|
|
|
e3c68b |
+ec_mkdir(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_mkdir_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ mode_t mode, mode_t umask, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_mknod(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_mknod_cbk_t func, void *data, loc_t *loc, mode_t mode, dev_t rdev,
|
|
|
e3c68b |
- mode_t umask, dict_t *xdata);
|
|
|
e3c68b |
+ec_mknod(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_mknod_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ mode_t mode, dev_t rdev, mode_t umask, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_open(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_open_cbk_t func, void *data, loc_t *loc, int32_t flags, fd_t *fd,
|
|
|
e3c68b |
- dict_t *xdata);
|
|
|
e3c68b |
+ec_open(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_open_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ int32_t flags, fd_t *fd, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_opendir(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_opendir_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_opendir_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
fd_t *fd, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_readdir(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_readdir_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_readdir_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
size_t size, off_t offset, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_readdirp(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_readdirp_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_readdirp_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
size_t size, off_t offset, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_readlink(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_readlink_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_readlink_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
size_t size, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_readv(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_readv_cbk_t func, void *data, fd_t *fd, size_t size, off_t offset,
|
|
|
e3c68b |
- uint32_t flags, dict_t *xdata);
|
|
|
e3c68b |
+ec_readv(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_readv_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ size_t size, off_t offset, uint32_t flags, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_removexattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_removexattr_cbk_t func, void *data,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_removexattr_cbk_t func, void *data,
|
|
|
e3c68b |
loc_t *loc, const char *name, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_fremovexattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_fremovexattr_cbk_t func, void *data,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fremovexattr_cbk_t func, void *data,
|
|
|
e3c68b |
fd_t *fd, const char *name, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_rename(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_rename_cbk_t func, void *data, loc_t *oldloc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_rename_cbk_t func, void *data, loc_t *oldloc,
|
|
|
e3c68b |
loc_t *newloc, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_rmdir(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_rmdir_cbk_t func, void *data, loc_t *loc, int xflags,
|
|
|
e3c68b |
- dict_t *xdata);
|
|
|
e3c68b |
+ec_rmdir(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_rmdir_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ int xflags, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_setattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_setattr_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_setattr_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
struct iatt *stbuf, int32_t valid, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_fsetattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_fsetattr_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fsetattr_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
struct iatt *stbuf, int32_t valid, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_setxattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_setxattr_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_setxattr_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
dict_t *dict, int32_t flags, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_fsetxattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_fsetxattr_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fsetxattr_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
dict_t *dict, int32_t flags, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_stat(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_stat_cbk_t func, void *data, loc_t *loc, dict_t *xdata);
|
|
|
e3c68b |
+ec_stat(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_stat_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_fstat(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_fstat_cbk_t func, void *data, fd_t *fd, dict_t *xdata);
|
|
|
e3c68b |
+ec_fstat(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fstat_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_statfs(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_statfs_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_statfs_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_symlink(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_symlink_cbk_t func, void *data,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_symlink_cbk_t func, void *data,
|
|
|
e3c68b |
const char *linkname, loc_t *loc, mode_t umask, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_fallocate(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_fallocate_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fallocate_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
int32_t mode, off_t offset, size_t len, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_discard(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_discard_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_discard_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
off_t offset, size_t len, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_truncate(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_truncate_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_truncate_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
off_t offset, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_ftruncate(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_ftruncate_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_ftruncate_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
off_t offset, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_unlink(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_unlink_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_unlink_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
int xflags, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_writev(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_writev_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_writev_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
struct iovec *vector, int32_t count, off_t offset, uint32_t flags,
|
|
|
e3c68b |
struct iobref *iobref, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_xattrop(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_xattrop_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_xattrop_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
gf_xattrop_flags_t optype, dict_t *xattr, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_fxattrop(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_fxattrop_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fxattrop_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
gf_xattrop_flags_t optype, dict_t *xattr, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_seek(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_seek_cbk_t func, void *data, fd_t *fd, off_t offset,
|
|
|
e3c68b |
- gf_seek_what_t what, dict_t *xdata);
|
|
|
e3c68b |
+ec_seek(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_seek_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ off_t offset, gf_seek_what_t what, dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_ipc(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_ipc_cbk_t func, void *data, int32_t op, dict_t *xdata);
|
|
|
e3c68b |
+ec_ipc(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_ipc_cbk_t func, void *data, int32_t op,
|
|
|
e3c68b |
+ dict_t *xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
#endif /* __EC_FOPS_H__ */
|
|
|
e3c68b |
diff --git a/xlators/cluster/ec/src/ec-generic.c b/xlators/cluster/ec/src/ec-generic.c
|
|
|
e3c68b |
index 175e88a..acc16b5 100644
|
|
|
e3c68b |
--- a/xlators/cluster/ec/src/ec-generic.c
|
|
|
e3c68b |
+++ b/xlators/cluster/ec/src/ec-generic.c
|
|
|
e3c68b |
@@ -151,8 +151,9 @@ ec_manager_flush(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_flush(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_flush_cbk_t func, void *data, fd_t *fd, dict_t *xdata)
|
|
|
e3c68b |
+ec_flush(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_flush_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.flush = func};
|
|
|
e3c68b |
ec_fop_data_t *fop = NULL;
|
|
|
e3c68b |
@@ -164,7 +165,7 @@ ec_flush(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_FLUSH, 0, target, minimum,
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_FLUSH, 0, target, fop_flags,
|
|
|
e3c68b |
ec_wind_flush, ec_manager_flush, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
@@ -366,9 +367,9 @@ ec_manager_fsync(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_fsync(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_fsync_cbk_t func, void *data, fd_t *fd, int32_t datasync,
|
|
|
e3c68b |
- dict_t *xdata)
|
|
|
e3c68b |
+ec_fsync(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fsync_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ int32_t datasync, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.fsync = func};
|
|
|
e3c68b |
ec_fop_data_t *fop = NULL;
|
|
|
e3c68b |
@@ -380,7 +381,7 @@ ec_fsync(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_FSYNC, 0, target, minimum,
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_FSYNC, 0, target, fop_flags,
|
|
|
e3c68b |
ec_wind_fsync, ec_manager_fsync, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
@@ -553,7 +554,7 @@ ec_manager_fsyncdir(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_fsyncdir(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_fsyncdir_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fsyncdir_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
int32_t datasync, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.fsyncdir = func};
|
|
|
e3c68b |
@@ -566,9 +567,9 @@ ec_fsyncdir(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_FSYNCDIR, 0, target, minimum,
|
|
|
e3c68b |
- ec_wind_fsyncdir, ec_manager_fsyncdir, callback,
|
|
|
e3c68b |
- data);
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_FSYNCDIR, 0, target,
|
|
|
e3c68b |
+ fop_flags, ec_wind_fsyncdir, ec_manager_fsyncdir,
|
|
|
e3c68b |
+ callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
@@ -848,7 +849,7 @@ ec_manager_lookup(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_lookup(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_lookup_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_lookup_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.lookup = func};
|
|
|
e3c68b |
@@ -862,7 +863,7 @@ ec_lookup(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
fop = ec_fop_data_allocate(frame, this, GF_FOP_LOOKUP, EC_FLAG_LOCK_SHARED,
|
|
|
e3c68b |
- target, minimum, ec_wind_lookup,
|
|
|
e3c68b |
+ target, fop_flags, ec_wind_lookup,
|
|
|
e3c68b |
ec_manager_lookup, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
@@ -1033,7 +1034,7 @@ ec_manager_statfs(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_statfs(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_statfs_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_statfs_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.statfs = func};
|
|
|
e3c68b |
@@ -1047,7 +1048,7 @@ ec_statfs(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
fop = ec_fop_data_allocate(frame, this, GF_FOP_STATFS, EC_FLAG_LOCK_SHARED,
|
|
|
e3c68b |
- target, minimum, ec_wind_statfs,
|
|
|
e3c68b |
+ target, fop_flags, ec_wind_statfs,
|
|
|
e3c68b |
ec_manager_statfs, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
@@ -1270,7 +1271,7 @@ ec_manager_xattrop(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_xattrop(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_xattrop_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_xattrop_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
gf_xattrop_flags_t optype, dict_t *xattr, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.xattrop = func};
|
|
|
e3c68b |
@@ -1283,9 +1284,9 @@ ec_xattrop(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_XATTROP, 0, target, minimum,
|
|
|
e3c68b |
- ec_wind_xattrop, ec_manager_xattrop, callback,
|
|
|
e3c68b |
- data);
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_XATTROP, 0, target,
|
|
|
e3c68b |
+ fop_flags, ec_wind_xattrop, ec_manager_xattrop,
|
|
|
e3c68b |
+ callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
@@ -1343,7 +1344,7 @@ ec_wind_fxattrop(ec_t *ec, ec_fop_data_t *fop, int32_t idx)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_fxattrop(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_fxattrop_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fxattrop_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
gf_xattrop_flags_t optype, dict_t *xattr, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.fxattrop = func};
|
|
|
e3c68b |
@@ -1356,9 +1357,9 @@ ec_fxattrop(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_FXATTROP, 0, target, minimum,
|
|
|
e3c68b |
- ec_wind_fxattrop, ec_manager_xattrop, callback,
|
|
|
e3c68b |
- data);
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_FXATTROP, 0, target,
|
|
|
e3c68b |
+ fop_flags, ec_wind_fxattrop, ec_manager_xattrop,
|
|
|
e3c68b |
+ callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
@@ -1507,8 +1508,9 @@ ec_manager_ipc(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_ipc(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_ipc_cbk_t func, void *data, int32_t op, dict_t *xdata)
|
|
|
e3c68b |
+ec_ipc(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_ipc_cbk_t func, void *data, int32_t op,
|
|
|
e3c68b |
+ dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.ipc = func};
|
|
|
e3c68b |
ec_fop_data_t *fop = NULL;
|
|
|
e3c68b |
@@ -1520,7 +1522,7 @@ ec_ipc(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_IPC, 0, target, minimum,
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_IPC, 0, target, fop_flags,
|
|
|
e3c68b |
ec_wind_ipc, ec_manager_ipc, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
diff --git a/xlators/cluster/ec/src/ec-heal.c b/xlators/cluster/ec/src/ec-heal.c
|
|
|
e3c68b |
index 1ca12c1..3aa04fb 100644
|
|
|
e3c68b |
--- a/xlators/cluster/ec/src/ec-heal.c
|
|
|
e3c68b |
+++ b/xlators/cluster/ec/src/ec-heal.c
|
|
|
e3c68b |
@@ -367,16 +367,16 @@ ec_heal_data_block(ec_heal_t *heal)
|
|
|
e3c68b |
/* FOP: fheal */
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_fheal(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_fheal_cbk_t func, void *data, fd_t *fd, int32_t partial,
|
|
|
e3c68b |
- dict_t *xdata)
|
|
|
e3c68b |
+ec_fheal(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fheal_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ int32_t partial, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_fd_t *ctx = ec_fd_get(fd, this);
|
|
|
e3c68b |
|
|
|
e3c68b |
if (ctx != NULL) {
|
|
|
e3c68b |
gf_msg_trace("ec", 0, "FHEAL ctx: flags=%X, open=%" PRIXPTR, ctx->flags,
|
|
|
e3c68b |
ctx->open);
|
|
|
e3c68b |
- ec_heal(frame, this, target, minimum, func, data, &ctx->loc, partial,
|
|
|
e3c68b |
+ ec_heal(frame, this, target, fop_flags, func, data, &ctx->loc, partial,
|
|
|
e3c68b |
xdata);
|
|
|
e3c68b |
}
|
|
|
e3c68b |
}
|
|
|
e3c68b |
@@ -1975,7 +1975,7 @@ ec_manager_heal_block(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
/*Takes lock */
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_heal_block(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_heal_cbk_t func, ec_heal_t *heal)
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_heal_cbk_t func, ec_heal_t *heal)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.heal = func};
|
|
|
e3c68b |
ec_fop_data_t *fop = NULL;
|
|
|
e3c68b |
@@ -1986,7 +1986,7 @@ ec_heal_block(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
VALIDATE_OR_GOTO(this, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, EC_FOP_HEAL, 0, target, minimum,
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, EC_FOP_HEAL, 0, target, fop_flags,
|
|
|
e3c68b |
NULL, ec_manager_heal_block, callback, heal);
|
|
|
e3c68b |
if (fop == NULL)
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
@@ -2761,9 +2761,9 @@ ec_heal_throttle(xlator_t *this, ec_fop_data_t *fop)
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_heal(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_heal_cbk_t func, void *data, loc_t *loc, int32_t partial,
|
|
|
e3c68b |
- dict_t *xdata)
|
|
|
e3c68b |
+ec_heal(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_heal_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ int32_t partial, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.heal = func};
|
|
|
e3c68b |
ec_fop_data_t *fop = NULL;
|
|
|
e3c68b |
@@ -2779,7 +2779,7 @@ ec_heal(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
|
|
|
e3c68b |
if (frame && frame->local)
|
|
|
e3c68b |
goto fail;
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, EC_FOP_HEAL, 0, target, minimum,
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, EC_FOP_HEAL, 0, target, fop_flags,
|
|
|
e3c68b |
NULL, NULL, callback, data);
|
|
|
e3c68b |
|
|
|
e3c68b |
err = ENOMEM;
|
|
|
e3c68b |
diff --git a/xlators/cluster/ec/src/ec-inode-read.c b/xlators/cluster/ec/src/ec-inode-read.c
|
|
|
e3c68b |
index 55e5934..f87a94a 100644
|
|
|
e3c68b |
--- a/xlators/cluster/ec/src/ec-inode-read.c
|
|
|
e3c68b |
+++ b/xlators/cluster/ec/src/ec-inode-read.c
|
|
|
e3c68b |
@@ -135,7 +135,7 @@ ec_manager_access(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_access(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_access_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_access_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
int32_t mask, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.access = func};
|
|
|
e3c68b |
@@ -149,7 +149,7 @@ ec_access(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
fop = ec_fop_data_allocate(frame, this, GF_FOP_ACCESS, EC_FLAG_LOCK_SHARED,
|
|
|
e3c68b |
- target, minimum, ec_wind_access,
|
|
|
e3c68b |
+ target, fop_flags, ec_wind_access,
|
|
|
e3c68b |
ec_manager_access, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
@@ -446,7 +446,7 @@ out:
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_getxattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_getxattr_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_getxattr_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
const char *name, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.getxattr = func};
|
|
|
e3c68b |
@@ -468,7 +468,7 @@ ec_getxattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
fop = ec_fop_data_allocate(
|
|
|
e3c68b |
- frame, this, GF_FOP_GETXATTR, EC_FLAG_LOCK_SHARED, target, minimum,
|
|
|
e3c68b |
+ frame, this, GF_FOP_GETXATTR, EC_FLAG_LOCK_SHARED, target, fop_flags,
|
|
|
e3c68b |
ec_wind_getxattr, ec_manager_getxattr, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
@@ -588,7 +588,7 @@ ec_wind_fgetxattr(ec_t *ec, ec_fop_data_t *fop, int32_t idx)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_fgetxattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_fgetxattr_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fgetxattr_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
const char *name, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.fgetxattr = func};
|
|
|
e3c68b |
@@ -602,7 +602,7 @@ ec_fgetxattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
fop = ec_fop_data_allocate(
|
|
|
e3c68b |
- frame, this, GF_FOP_FGETXATTR, EC_FLAG_LOCK_SHARED, target, minimum,
|
|
|
e3c68b |
+ frame, this, GF_FOP_FGETXATTR, EC_FLAG_LOCK_SHARED, target, fop_flags,
|
|
|
e3c68b |
ec_wind_fgetxattr, ec_manager_getxattr, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
@@ -869,9 +869,9 @@ ec_manager_open(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_open(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_open_cbk_t func, void *data, loc_t *loc, int32_t flags, fd_t *fd,
|
|
|
e3c68b |
- dict_t *xdata)
|
|
|
e3c68b |
+ec_open(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_open_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ int32_t flags, fd_t *fd, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.open = func};
|
|
|
e3c68b |
ec_fop_data_t *fop = NULL;
|
|
|
e3c68b |
@@ -884,7 +884,7 @@ ec_open(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
fop = ec_fop_data_allocate(frame, this, GF_FOP_OPEN, EC_FLAG_LOCK_SHARED,
|
|
|
e3c68b |
- target, minimum, ec_wind_open, ec_manager_open,
|
|
|
e3c68b |
+ target, fop_flags, ec_wind_open, ec_manager_open,
|
|
|
e3c68b |
callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
@@ -1071,7 +1071,7 @@ ec_manager_readlink(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_readlink(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_readlink_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_readlink_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
size_t size, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.readlink = func};
|
|
|
e3c68b |
@@ -1085,7 +1085,7 @@ ec_readlink(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
fop = ec_fop_data_allocate(
|
|
|
e3c68b |
- frame, this, GF_FOP_READLINK, EC_FLAG_LOCK_SHARED, target, minimum,
|
|
|
e3c68b |
+ frame, this, GF_FOP_READLINK, EC_FLAG_LOCK_SHARED, target, fop_flags,
|
|
|
e3c68b |
ec_wind_readlink, ec_manager_readlink, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
@@ -1417,9 +1417,9 @@ ec_manager_readv(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_readv(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_readv_cbk_t func, void *data, fd_t *fd, size_t size, off_t offset,
|
|
|
e3c68b |
- uint32_t flags, dict_t *xdata)
|
|
|
e3c68b |
+ec_readv(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_readv_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ size_t size, off_t offset, uint32_t flags, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.readv = func};
|
|
|
e3c68b |
ec_fop_data_t *fop = NULL;
|
|
|
e3c68b |
@@ -1432,8 +1432,8 @@ ec_readv(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
fop = ec_fop_data_allocate(frame, this, GF_FOP_READ, EC_FLAG_LOCK_SHARED,
|
|
|
e3c68b |
- target, minimum, ec_wind_readv, ec_manager_readv,
|
|
|
e3c68b |
- callback, data);
|
|
|
e3c68b |
+ target, fop_flags, ec_wind_readv,
|
|
|
e3c68b |
+ ec_manager_readv, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
@@ -1637,9 +1637,9 @@ ec_manager_seek(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_seek(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_seek_cbk_t func, void *data, fd_t *fd, off_t offset,
|
|
|
e3c68b |
- gf_seek_what_t what, dict_t *xdata)
|
|
|
e3c68b |
+ec_seek(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_seek_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ off_t offset, gf_seek_what_t what, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.seek = func};
|
|
|
e3c68b |
ec_fop_data_t *fop = NULL;
|
|
|
e3c68b |
@@ -1652,7 +1652,7 @@ ec_seek(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
fop = ec_fop_data_allocate(frame, this, GF_FOP_SEEK, EC_FLAG_LOCK_SHARED,
|
|
|
e3c68b |
- target, minimum, ec_wind_seek, ec_manager_seek,
|
|
|
e3c68b |
+ target, fop_flags, ec_wind_seek, ec_manager_seek,
|
|
|
e3c68b |
callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
@@ -1855,8 +1855,9 @@ ec_manager_stat(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_stat(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_stat_cbk_t func, void *data, loc_t *loc, dict_t *xdata)
|
|
|
e3c68b |
+ec_stat(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_stat_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.stat = func};
|
|
|
e3c68b |
ec_fop_data_t *fop = NULL;
|
|
|
e3c68b |
@@ -1869,7 +1870,7 @@ ec_stat(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
fop = ec_fop_data_allocate(frame, this, GF_FOP_STAT, EC_FLAG_LOCK_SHARED,
|
|
|
e3c68b |
- target, minimum, ec_wind_stat, ec_manager_stat,
|
|
|
e3c68b |
+ target, fop_flags, ec_wind_stat, ec_manager_stat,
|
|
|
e3c68b |
callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
@@ -1965,8 +1966,9 @@ ec_wind_fstat(ec_t *ec, ec_fop_data_t *fop, int32_t idx)
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_fstat(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
- fop_fstat_cbk_t func, void *data, fd_t *fd, dict_t *xdata)
|
|
|
e3c68b |
+ec_fstat(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fstat_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.fstat = func};
|
|
|
e3c68b |
ec_fop_data_t *fop = NULL;
|
|
|
e3c68b |
@@ -1979,8 +1981,8 @@ ec_fstat(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
fop = ec_fop_data_allocate(frame, this, GF_FOP_FSTAT, EC_FLAG_LOCK_SHARED,
|
|
|
e3c68b |
- target, minimum, ec_wind_fstat, ec_manager_stat,
|
|
|
e3c68b |
- callback, data);
|
|
|
e3c68b |
+ target, fop_flags, ec_wind_fstat,
|
|
|
e3c68b |
+ ec_manager_stat, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
diff --git a/xlators/cluster/ec/src/ec-inode-write.c b/xlators/cluster/ec/src/ec-inode-write.c
|
|
|
e3c68b |
index e7b34e6..a903664 100644
|
|
|
e3c68b |
--- a/xlators/cluster/ec/src/ec-inode-write.c
|
|
|
e3c68b |
+++ b/xlators/cluster/ec/src/ec-inode-write.c
|
|
|
e3c68b |
@@ -281,7 +281,7 @@ ec_manager_xattr(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_removexattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_removexattr_cbk_t func, void *data,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_removexattr_cbk_t func, void *data,
|
|
|
e3c68b |
loc_t *loc, const char *name, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.removexattr = func};
|
|
|
e3c68b |
@@ -295,7 +295,7 @@ ec_removexattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
fop = ec_fop_data_allocate(frame, this, GF_FOP_REMOVEXATTR, 0, target,
|
|
|
e3c68b |
- minimum, ec_wind_removexattr, ec_manager_xattr,
|
|
|
e3c68b |
+ fop_flags, ec_wind_removexattr, ec_manager_xattr,
|
|
|
e3c68b |
callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
@@ -361,7 +361,7 @@ ec_wind_fremovexattr(ec_t *ec, ec_fop_data_t *fop, int32_t idx)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_fremovexattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_fremovexattr_cbk_t func, void *data,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fremovexattr_cbk_t func, void *data,
|
|
|
e3c68b |
fd_t *fd, const char *name, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.fremovexattr = func};
|
|
|
e3c68b |
@@ -375,8 +375,8 @@ ec_fremovexattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
fop = ec_fop_data_allocate(frame, this, GF_FOP_FREMOVEXATTR, 0, target,
|
|
|
e3c68b |
- minimum, ec_wind_fremovexattr, ec_manager_xattr,
|
|
|
e3c68b |
- callback, data);
|
|
|
e3c68b |
+ fop_flags, ec_wind_fremovexattr,
|
|
|
e3c68b |
+ ec_manager_xattr, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
@@ -550,7 +550,7 @@ ec_manager_setattr(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_setattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_setattr_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_setattr_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
struct iatt *stbuf, int32_t valid, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.setattr = func};
|
|
|
e3c68b |
@@ -563,9 +563,9 @@ ec_setattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_SETATTR, 0, target, minimum,
|
|
|
e3c68b |
- ec_wind_setattr, ec_manager_setattr, callback,
|
|
|
e3c68b |
- data);
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_SETATTR, 0, target,
|
|
|
e3c68b |
+ fop_flags, ec_wind_setattr, ec_manager_setattr,
|
|
|
e3c68b |
+ callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
@@ -627,7 +627,7 @@ ec_wind_fsetattr(ec_t *ec, ec_fop_data_t *fop, int32_t idx)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_fsetattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_fsetattr_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fsetattr_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
struct iatt *stbuf, int32_t valid, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.fsetattr = func};
|
|
|
e3c68b |
@@ -640,9 +640,9 @@ ec_fsetattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_FSETATTR, 0, target, minimum,
|
|
|
e3c68b |
- ec_wind_fsetattr, ec_manager_setattr, callback,
|
|
|
e3c68b |
- data);
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_FSETATTR, 0, target,
|
|
|
e3c68b |
+ fop_flags, ec_wind_fsetattr, ec_manager_setattr,
|
|
|
e3c68b |
+ callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
@@ -707,7 +707,7 @@ ec_wind_setxattr(ec_t *ec, ec_fop_data_t *fop, int32_t idx)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_setxattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_setxattr_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_setxattr_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
dict_t *dict, int32_t flags, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.setxattr = func};
|
|
|
e3c68b |
@@ -720,9 +720,9 @@ ec_setxattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_SETXATTR, 0, target, minimum,
|
|
|
e3c68b |
- ec_wind_setxattr, ec_manager_xattr, callback,
|
|
|
e3c68b |
- data);
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_SETXATTR, 0, target,
|
|
|
e3c68b |
+ fop_flags, ec_wind_setxattr, ec_manager_xattr,
|
|
|
e3c68b |
+ callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
@@ -825,7 +825,7 @@ ec_wind_fsetxattr(ec_t *ec, ec_fop_data_t *fop, int32_t idx)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_fsetxattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_fsetxattr_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fsetxattr_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
dict_t *dict, int32_t flags, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.fsetxattr = func};
|
|
|
e3c68b |
@@ -839,7 +839,7 @@ ec_fsetxattr(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
fop = ec_fop_data_allocate(frame, this, GF_FOP_FSETXATTR, 0, target,
|
|
|
e3c68b |
- minimum, ec_wind_fsetxattr, ec_manager_xattr,
|
|
|
e3c68b |
+ fop_flags, ec_wind_fsetxattr, ec_manager_xattr,
|
|
|
e3c68b |
callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
@@ -1035,7 +1035,7 @@ ec_manager_fallocate(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_fallocate(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_fallocate_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fallocate_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
int32_t mode, off_t offset, size_t len, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.fallocate = func};
|
|
|
e3c68b |
@@ -1049,8 +1049,8 @@ ec_fallocate(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
fop = ec_fop_data_allocate(frame, this, GF_FOP_FALLOCATE, 0, target,
|
|
|
e3c68b |
- minimum, ec_wind_fallocate, ec_manager_fallocate,
|
|
|
e3c68b |
- callback, data);
|
|
|
e3c68b |
+ fop_flags, ec_wind_fallocate,
|
|
|
e3c68b |
+ ec_manager_fallocate, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
@@ -1209,8 +1209,8 @@ ec_manager_discard(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
ec_dispatch_all(fop);
|
|
|
e3c68b |
return EC_STATE_DELAYED_START;
|
|
|
e3c68b |
} else {
|
|
|
e3c68b |
- /*Assume discard to have succeeded on mask*/
|
|
|
e3c68b |
- fop->good = fop->mask;
|
|
|
e3c68b |
+ /* Assume discard to have succeeded on all bricks */
|
|
|
e3c68b |
+ ec_succeed_all(fop);
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
/* Fall through */
|
|
|
e3c68b |
@@ -1289,7 +1289,7 @@ ec_manager_discard(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_discard(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_discard_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_discard_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
off_t offset, size_t len, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.discard = func};
|
|
|
e3c68b |
@@ -1302,9 +1302,9 @@ ec_discard(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_DISCARD, 0, target, minimum,
|
|
|
e3c68b |
- ec_wind_discard, ec_manager_discard, callback,
|
|
|
e3c68b |
- data);
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_DISCARD, 0, target,
|
|
|
e3c68b |
+ fop_flags, ec_wind_discard, ec_manager_discard,
|
|
|
e3c68b |
+ callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
@@ -1530,7 +1530,7 @@ ec_manager_truncate(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_truncate(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_truncate_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_truncate_cbk_t func, void *data, loc_t *loc,
|
|
|
e3c68b |
off_t offset, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.truncate = func};
|
|
|
e3c68b |
@@ -1543,9 +1543,9 @@ ec_truncate(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_TRUNCATE, 0, target, minimum,
|
|
|
e3c68b |
- ec_wind_truncate, ec_manager_truncate, callback,
|
|
|
e3c68b |
- data);
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_TRUNCATE, 0, target,
|
|
|
e3c68b |
+ fop_flags, ec_wind_truncate, ec_manager_truncate,
|
|
|
e3c68b |
+ callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
@@ -1604,7 +1604,7 @@ ec_wind_ftruncate(ec_t *ec, ec_fop_data_t *fop, int32_t idx)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_ftruncate(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_ftruncate_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_ftruncate_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
off_t offset, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
ec_cbk_t callback = {.ftruncate = func};
|
|
|
e3c68b |
@@ -1618,8 +1618,8 @@ ec_ftruncate(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
fop = ec_fop_data_allocate(frame, this, GF_FOP_FTRUNCATE, 0, target,
|
|
|
e3c68b |
- minimum, ec_wind_ftruncate, ec_manager_truncate,
|
|
|
e3c68b |
- callback, data);
|
|
|
e3c68b |
+ fop_flags, ec_wind_ftruncate,
|
|
|
e3c68b |
+ ec_manager_truncate, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
@@ -2262,7 +2262,7 @@ ec_manager_writev(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_writev(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_writev_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_writev_cbk_t func, void *data, fd_t *fd,
|
|
|
e3c68b |
struct iovec *vector, int32_t count, off_t offset, uint32_t flags,
|
|
|
e3c68b |
struct iobref *iobref, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
@@ -2276,7 +2276,7 @@ ec_writev(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_WRITE, 0, target, minimum,
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_WRITE, 0, target, fop_flags,
|
|
|
e3c68b |
ec_wind_writev, ec_manager_writev, callback,
|
|
|
e3c68b |
data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
diff --git a/xlators/cluster/ec/src/ec-locks.c b/xlators/cluster/ec/src/ec-locks.c
|
|
|
e3c68b |
index f978af0..ffcac07 100644
|
|
|
e3c68b |
--- a/xlators/cluster/ec/src/ec-locks.c
|
|
|
e3c68b |
+++ b/xlators/cluster/ec/src/ec-locks.c
|
|
|
e3c68b |
@@ -275,7 +275,7 @@ ec_manager_entrylk(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_entrylk(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_entrylk_cbk_t func, void *data,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_entrylk_cbk_t func, void *data,
|
|
|
e3c68b |
const char *volume, loc_t *loc, const char *basename,
|
|
|
e3c68b |
entrylk_cmd cmd, entrylk_type type, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
@@ -288,9 +288,9 @@ ec_entrylk(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_ENTRYLK, 0, target, minimum,
|
|
|
e3c68b |
- ec_wind_entrylk, ec_manager_entrylk, callback,
|
|
|
e3c68b |
- data);
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_ENTRYLK, 0, target,
|
|
|
e3c68b |
+ fop_flags, ec_wind_entrylk, ec_manager_entrylk,
|
|
|
e3c68b |
+ callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
@@ -403,7 +403,7 @@ ec_wind_fentrylk(ec_t *ec, ec_fop_data_t *fop, int32_t idx)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_fentrylk(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
- int32_t minimum, fop_fentrylk_cbk_t func, void *data,
|
|
|
e3c68b |
+ uint32_t fop_flags, fop_fentrylk_cbk_t func, void *data,
|
|
|
e3c68b |
const char *volume, fd_t *fd, const char *basename, entrylk_cmd cmd,
|
|
|
e3c68b |
entrylk_type type, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
@@ -416,9 +416,9 @@ ec_fentrylk(call_frame_t *frame, xlator_t *this, uintptr_t target,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_FENTRYLK, 0, target, minimum,
|
|
|
e3c68b |
- ec_wind_fentrylk, ec_manager_entrylk, callback,
|
|
|
e3c68b |
- data);
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_FENTRYLK, 0, target,
|
|
|
e3c68b |
+ fop_flags, ec_wind_fentrylk, ec_manager_entrylk,
|
|
|
e3c68b |
+ callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
@@ -650,7 +650,7 @@ ec_manager_inodelk(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_inodelk(call_frame_t *frame, xlator_t *this, gf_lkowner_t *owner,
|
|
|
e3c68b |
- uintptr_t target, int32_t minimum, fop_inodelk_cbk_t func,
|
|
|
e3c68b |
+ uintptr_t target, uint32_t fop_flags, fop_inodelk_cbk_t func,
|
|
|
e3c68b |
void *data, const char *volume, loc_t *loc, int32_t cmd,
|
|
|
e3c68b |
struct gf_flock *flock, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
@@ -664,9 +664,9 @@ ec_inodelk(call_frame_t *frame, xlator_t *this, gf_lkowner_t *owner,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_INODELK, 0, target, minimum,
|
|
|
e3c68b |
- ec_wind_inodelk, ec_manager_inodelk, callback,
|
|
|
e3c68b |
- data);
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_INODELK, 0, target,
|
|
|
e3c68b |
+ fop_flags, ec_wind_inodelk, ec_manager_inodelk,
|
|
|
e3c68b |
+ callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
@@ -782,7 +782,7 @@ ec_wind_finodelk(ec_t *ec, ec_fop_data_t *fop, int32_t idx)
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
ec_finodelk(call_frame_t *frame, xlator_t *this, gf_lkowner_t *owner,
|
|
|
e3c68b |
- uintptr_t target, int32_t minimum, fop_finodelk_cbk_t func,
|
|
|
e3c68b |
+ uintptr_t target, uint32_t fop_flags, fop_finodelk_cbk_t func,
|
|
|
e3c68b |
void *data, const char *volume, fd_t *fd, int32_t cmd,
|
|
|
e3c68b |
struct gf_flock *flock, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
@@ -796,9 +796,9 @@ ec_finodelk(call_frame_t *frame, xlator_t *this, gf_lkowner_t *owner,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_FINODELK, 0, target, minimum,
|
|
|
e3c68b |
- ec_wind_finodelk, ec_manager_inodelk, callback,
|
|
|
e3c68b |
- data);
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_FINODELK, 0, target,
|
|
|
e3c68b |
+ fop_flags, ec_wind_finodelk, ec_manager_inodelk,
|
|
|
e3c68b |
+ callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
@@ -1032,7 +1032,7 @@ ec_manager_lk(ec_fop_data_t *fop, int32_t state)
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
void
|
|
|
e3c68b |
-ec_lk(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
+ec_lk(call_frame_t *frame, xlator_t *this, uintptr_t target, uint32_t fop_flags,
|
|
|
e3c68b |
fop_lk_cbk_t func, void *data, fd_t *fd, int32_t cmd,
|
|
|
e3c68b |
struct gf_flock *flock, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
@@ -1045,7 +1045,7 @@ ec_lk(call_frame_t *frame, xlator_t *this, uintptr_t target, int32_t minimum,
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, frame, out);
|
|
|
e3c68b |
GF_VALIDATE_OR_GOTO(this->name, this->private, out);
|
|
|
e3c68b |
|
|
|
e3c68b |
- fop = ec_fop_data_allocate(frame, this, GF_FOP_LK, 0, target, minimum,
|
|
|
e3c68b |
+ fop = ec_fop_data_allocate(frame, this, GF_FOP_LK, 0, target, fop_flags,
|
|
|
e3c68b |
ec_wind_lk, ec_manager_lk, callback, data);
|
|
|
e3c68b |
if (fop == NULL) {
|
|
|
e3c68b |
goto out;
|
|
|
e3c68b |
diff --git a/xlators/cluster/ec/src/ec-types.h b/xlators/cluster/ec/src/ec-types.h
|
|
|
e3c68b |
index 6ae4a2b..1c295c0 100644
|
|
|
e3c68b |
--- a/xlators/cluster/ec/src/ec-types.h
|
|
|
e3c68b |
+++ b/xlators/cluster/ec/src/ec-types.h
|
|
|
e3c68b |
@@ -308,9 +308,9 @@ struct _ec_fop_data {
|
|
|
e3c68b |
int32_t id; /* ID of the file operation */
|
|
|
e3c68b |
int32_t refs;
|
|
|
e3c68b |
int32_t state;
|
|
|
e3c68b |
- int32_t minimum; /* Minimum number of successful
|
|
|
e3c68b |
- operation required to conclude a
|
|
|
e3c68b |
- fop as successful */
|
|
|
e3c68b |
+ uint32_t minimum; /* Minimum number of successful
|
|
|
e3c68b |
+ operation required to conclude a
|
|
|
e3c68b |
+ fop as successful */
|
|
|
e3c68b |
int32_t expected;
|
|
|
e3c68b |
int32_t winds;
|
|
|
e3c68b |
int32_t jobs;
|
|
|
e3c68b |
@@ -325,11 +325,12 @@ struct _ec_fop_data {
|
|
|
e3c68b |
ec_cbk_data_t *answer; /* accepted answer */
|
|
|
e3c68b |
int32_t lock_count;
|
|
|
e3c68b |
int32_t locked;
|
|
|
e3c68b |
+ gf_lock_t lock;
|
|
|
e3c68b |
ec_lock_link_t locks[2];
|
|
|
e3c68b |
int32_t first_lock;
|
|
|
e3c68b |
- gf_lock_t lock;
|
|
|
e3c68b |
|
|
|
e3c68b |
- uint32_t flags;
|
|
|
e3c68b |
+ uint32_t fop_flags; /* Flags passed by the caller. */
|
|
|
e3c68b |
+ uint32_t flags; /* Internal flags. */
|
|
|
e3c68b |
uint32_t first;
|
|
|
e3c68b |
uintptr_t mask;
|
|
|
e3c68b |
uintptr_t healing; /*Dispatch is done but call is successful only
|
|
|
e3c68b |
diff --git a/xlators/cluster/ec/src/ec.c b/xlators/cluster/ec/src/ec.c
|
|
|
e3c68b |
index 13ffeb9..3c8013e 100644
|
|
|
e3c68b |
--- a/xlators/cluster/ec/src/ec.c
|
|
|
e3c68b |
+++ b/xlators/cluster/ec/src/ec.c
|
|
|
e3c68b |
@@ -797,11 +797,12 @@ ec_gf_entrylk(call_frame_t *frame, xlator_t *this, const char *volume,
|
|
|
e3c68b |
loc_t *loc, const char *basename, entrylk_cmd cmd,
|
|
|
e3c68b |
entrylk_type type, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
- int32_t minimum = EC_MINIMUM_ALL;
|
|
|
e3c68b |
+ uint32_t fop_flags = EC_MINIMUM_ALL;
|
|
|
e3c68b |
+
|
|
|
e3c68b |
if (cmd == ENTRYLK_UNLOCK)
|
|
|
e3c68b |
- minimum = EC_MINIMUM_ONE;
|
|
|
e3c68b |
- ec_entrylk(frame, this, -1, minimum, default_entrylk_cbk, NULL, volume, loc,
|
|
|
e3c68b |
- basename, cmd, type, xdata);
|
|
|
e3c68b |
+ fop_flags = EC_MINIMUM_ONE;
|
|
|
e3c68b |
+ ec_entrylk(frame, this, -1, fop_flags, default_entrylk_cbk, NULL, volume,
|
|
|
e3c68b |
+ loc, basename, cmd, type, xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
return 0;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
@@ -811,10 +812,11 @@ ec_gf_fentrylk(call_frame_t *frame, xlator_t *this, const char *volume,
|
|
|
e3c68b |
fd_t *fd, const char *basename, entrylk_cmd cmd,
|
|
|
e3c68b |
entrylk_type type, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
- int32_t minimum = EC_MINIMUM_ALL;
|
|
|
e3c68b |
+ uint32_t fop_flags = EC_MINIMUM_ALL;
|
|
|
e3c68b |
+
|
|
|
e3c68b |
if (cmd == ENTRYLK_UNLOCK)
|
|
|
e3c68b |
- minimum = EC_MINIMUM_ONE;
|
|
|
e3c68b |
- ec_fentrylk(frame, this, -1, minimum, default_fentrylk_cbk, NULL, volume,
|
|
|
e3c68b |
+ fop_flags = EC_MINIMUM_ONE;
|
|
|
e3c68b |
+ ec_fentrylk(frame, this, -1, fop_flags, default_fentrylk_cbk, NULL, volume,
|
|
|
e3c68b |
fd, basename, cmd, type, xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
return 0;
|
|
|
e3c68b |
@@ -905,7 +907,7 @@ ec_gf_getxattr(call_frame_t *frame, xlator_t *this, loc_t *loc,
|
|
|
e3c68b |
{
|
|
|
e3c68b |
int error = 0;
|
|
|
e3c68b |
ec_t *ec = this->private;
|
|
|
e3c68b |
- int32_t minimum = EC_MINIMUM_ONE;
|
|
|
e3c68b |
+ int32_t fop_flags = EC_MINIMUM_ONE;
|
|
|
e3c68b |
|
|
|
e3c68b |
if (name && strcmp(name, EC_XATTR_HEAL) != 0) {
|
|
|
e3c68b |
EC_INTERNAL_XATTR_OR_GOTO(name, NULL, error, out);
|
|
|
e3c68b |
@@ -920,11 +922,11 @@ ec_gf_getxattr(call_frame_t *frame, xlator_t *this, loc_t *loc,
|
|
|
e3c68b |
|
|
|
e3c68b |
if (name && ((fnmatch(GF_XATTR_STIME_PATTERN, name, 0) == 0) ||
|
|
|
e3c68b |
XATTR_IS_NODE_UUID(name) || XATTR_IS_NODE_UUID_LIST(name))) {
|
|
|
e3c68b |
- minimum = EC_MINIMUM_ALL;
|
|
|
e3c68b |
+ fop_flags = EC_MINIMUM_ALL;
|
|
|
e3c68b |
}
|
|
|
e3c68b |
|
|
|
e3c68b |
- ec_getxattr(frame, this, -1, minimum, default_getxattr_cbk, NULL, loc, name,
|
|
|
e3c68b |
- xdata);
|
|
|
e3c68b |
+ ec_getxattr(frame, this, -1, fop_flags, default_getxattr_cbk, NULL, loc,
|
|
|
e3c68b |
+ name, xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
return 0;
|
|
|
e3c68b |
out:
|
|
|
e3c68b |
@@ -954,11 +956,12 @@ int32_t
|
|
|
e3c68b |
ec_gf_inodelk(call_frame_t *frame, xlator_t *this, const char *volume,
|
|
|
e3c68b |
loc_t *loc, int32_t cmd, struct gf_flock *flock, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
- int32_t minimum = EC_MINIMUM_ALL;
|
|
|
e3c68b |
+ int32_t fop_flags = EC_MINIMUM_ALL;
|
|
|
e3c68b |
+
|
|
|
e3c68b |
if (flock->l_type == F_UNLCK)
|
|
|
e3c68b |
- minimum = EC_MINIMUM_ONE;
|
|
|
e3c68b |
+ fop_flags = EC_MINIMUM_ONE;
|
|
|
e3c68b |
|
|
|
e3c68b |
- ec_inodelk(frame, this, &frame->root->lk_owner, -1, minimum,
|
|
|
e3c68b |
+ ec_inodelk(frame, this, &frame->root->lk_owner, -1, fop_flags,
|
|
|
e3c68b |
default_inodelk_cbk, NULL, volume, loc, cmd, flock, xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
return 0;
|
|
|
e3c68b |
@@ -968,10 +971,11 @@ int32_t
|
|
|
e3c68b |
ec_gf_finodelk(call_frame_t *frame, xlator_t *this, const char *volume,
|
|
|
e3c68b |
fd_t *fd, int32_t cmd, struct gf_flock *flock, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
- int32_t minimum = EC_MINIMUM_ALL;
|
|
|
e3c68b |
+ int32_t fop_flags = EC_MINIMUM_ALL;
|
|
|
e3c68b |
+
|
|
|
e3c68b |
if (flock->l_type == F_UNLCK)
|
|
|
e3c68b |
- minimum = EC_MINIMUM_ONE;
|
|
|
e3c68b |
- ec_finodelk(frame, this, &frame->root->lk_owner, -1, minimum,
|
|
|
e3c68b |
+ fop_flags = EC_MINIMUM_ONE;
|
|
|
e3c68b |
+ ec_finodelk(frame, this, &frame->root->lk_owner, -1, fop_flags,
|
|
|
e3c68b |
default_finodelk_cbk, NULL, volume, fd, cmd, flock, xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
return 0;
|
|
|
e3c68b |
@@ -991,10 +995,11 @@ int32_t
|
|
|
e3c68b |
ec_gf_lk(call_frame_t *frame, xlator_t *this, fd_t *fd, int32_t cmd,
|
|
|
e3c68b |
struct gf_flock *flock, dict_t *xdata)
|
|
|
e3c68b |
{
|
|
|
e3c68b |
- int32_t minimum = EC_MINIMUM_ALL;
|
|
|
e3c68b |
+ int32_t fop_flags = EC_MINIMUM_ALL;
|
|
|
e3c68b |
+
|
|
|
e3c68b |
if (flock->l_type == F_UNLCK)
|
|
|
e3c68b |
- minimum = EC_MINIMUM_ONE;
|
|
|
e3c68b |
- ec_lk(frame, this, -1, minimum, default_lk_cbk, NULL, fd, cmd, flock,
|
|
|
e3c68b |
+ fop_flags = EC_MINIMUM_ONE;
|
|
|
e3c68b |
+ ec_lk(frame, this, -1, fop_flags, default_lk_cbk, NULL, fd, cmd, flock,
|
|
|
e3c68b |
xdata);
|
|
|
e3c68b |
|
|
|
e3c68b |
return 0;
|
|
|
e3c68b |
--
|
|
|
e3c68b |
1.8.3.1
|
|
|
e3c68b |
|