From 42c06ba048d0bcb7093063bf99dfa3e520a038a5 Mon Sep 17 00:00:00 2001 From: shishir gowda Date: Fri, 13 Apr 2012 15:22:57 +0530 Subject: glusterd/rebalance: Start process with xlator option client-pid -3 This would prevent updation of xtime by the marker. Signed-off-by: shishir gowda Change-Id: I11e287511026326271c2926e55993e48b32018f6 BUG: 812287 Reviewed-on: http://review.gluster.com/3144 Tested-by: Gluster Build System Reviewed-by: Mohammed Junaid Reviewed-by: Csaba Henk Reviewed-by: Vijay Bellur --- xlators/features/marker/src/marker.c | 3 ++- xlators/mgmt/glusterd/src/glusterd-rebalance.c | 2 ++ xlators/mount/fuse/src/fuse-helpers.c | 4 ++++ 3 files changed, 8 insertions(+), 1 deletion(-) (limited to 'xlators') diff --git a/xlators/features/marker/src/marker.c b/xlators/features/marker/src/marker.c index 4f143f5efdb..567e9467c28 100644 --- a/xlators/features/marker/src/marker.c +++ b/xlators/features/marker/src/marker.c @@ -462,7 +462,8 @@ marker_xtime_update_marks (xlator_t *this, marker_local_t *local) GF_VALIDATE_OR_GOTO ("marker", this, out); GF_VALIDATE_OR_GOTO (this->name, local, out); - if (local->pid == GF_CLIENT_PID_GSYNCD) + if ((local->pid == GF_CLIENT_PID_GSYNCD) || + (local->pid == GF_CLIENT_PID_DEFRAG)) goto out; marker_gettimeofday (local); diff --git a/xlators/mgmt/glusterd/src/glusterd-rebalance.c b/xlators/mgmt/glusterd/src/glusterd-rebalance.c index fddf6699f9e..9bee4ba205b 100644 --- a/xlators/mgmt/glusterd/src/glusterd-rebalance.c +++ b/xlators/mgmt/glusterd/src/glusterd-rebalance.c @@ -344,6 +344,8 @@ glusterd_handle_defrag_start (glusterd_volinfo_t *volinfo, char *op_errstr, runner_argprintf (&runner, "%s",pidfile); runner_add_arg (&runner, "-l"); runner_argprintf (&runner, logfile); + runner_add_arg (&runner, "--client-pid"); + runner_argprintf (&runner, "%d", GF_CLIENT_PID_DEFRAG); if (volinfo->memory_accounting) runner_add_arg (&runner, "--mem-accounting"); diff --git a/xlators/mount/fuse/src/fuse-helpers.c b/xlators/mount/fuse/src/fuse-helpers.c index 482785d79ee..8af19de9d43 100644 --- a/xlators/mount/fuse/src/fuse-helpers.c +++ b/xlators/mount/fuse/src/fuse-helpers.c @@ -504,6 +504,10 @@ fuse_flip_xattr_ns (fuse_private_t *priv, char *okey, char **nkey) if (strcmp (okey, UNPRIV_XA_NS".glusterfs.pathinfo") == 0) need_flip = _gf_true; break; + + /* This is never true for fuse mount, as defrag uses syncops */ + case GF_CLIENT_PID_DEFRAG: + goto out; } if (need_flip) { -- cgit