diff options
author | Junaid <junaid@gluster.com> | 2012-01-04 12:46:53 +0530 |
---|---|---|
committer | Vijay Bellur <vijay@gluster.com> | 2012-01-04 14:24:20 -0800 |
commit | c66ced7d876c8c96561724901be52a0a8afd4baa (patch) | |
tree | f48d47a336c20b29f584a2a303c18b63269c7e44 | |
parent | 0a4ac033095c0675c90abc353736f388873291c0 (diff) |
features/marker: xtime should not be updated for modifications done by special client.
Change-Id: Ia577422dedb94a1febeceb2a50cabf61d48cb714
BUG: 769494
Signed-off-by: Junaid <junaid@gluster.com>
Reviewed-on: http://review.gluster.com/2559
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Kaushik BV <kaushikbv@gluster.com>
Reviewed-by: Jeff Darcy <jdarcy@redhat.com>
Reviewed-by: Csaba Henk <csaba@gluster.com>
-rw-r--r-- | xlators/features/marker/src/marker.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/xlators/features/marker/src/marker.c b/xlators/features/marker/src/marker.c index c40ef7245..a40755149 100644 --- a/xlators/features/marker/src/marker.c +++ b/xlators/features/marker/src/marker.c @@ -434,12 +434,18 @@ marker_create_frame (xlator_t *this, marker_local_t *local) int32_t 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 == -1) + goto out; + marker_gettimeofday (local); marker_local_ref (local); marker_create_frame (this, local); - +out: return 0; } |