summaryrefslogtreecommitdiffstats
path: root/xlators/features/changetimerecorder/src/ctr-helper.h
diff options
context:
space:
mode:
authorJoseph Fernandes <josferna@redhat.com>2015-11-28 17:03:41 +0530
committerDan Lambright <dlambrig@redhat.com>2015-12-01 15:39:34 -0800
commiteea50e82365770dea56cdddca89cd6d3b8bb7a22 (patch)
tree662ecb21921db4a776f427c4faf05305816e329a /xlators/features/changetimerecorder/src/ctr-helper.h
parentde9c322dfbe5c4f9da65fbe0eef443440eafbbdc (diff)
downloadglusterfs-eea50e82365770dea56cdddca89cd6d3b8bb7a22.tar.gz
glusterfs-eea50e82365770dea56cdddca89cd6d3b8bb7a22.tar.xz
glusterfs-eea50e82365770dea56cdddca89cd6d3b8bb7a22.zip
tier/glusterd : Validation for frequency thresholds and record-counters
1) if record-counters is set to off check if both the frequency thresholds are non-zero, then pop an error message, with volume set failed. 2) if record-counters is set to on check if both the frequency thresholds are zero, then pop an note, but volume set is not failed. 3) If any of the frequency thresholds are set to a non-zero value, switch record-counters on, if not already on 4) If both the frequency thresholds are set to zero, switch record-counters off, if not already off NOTE: In this fix we have 1) removed unnecessary ctr vol set options. 2) changed ctr_hardlink_heal_expire_period to ctr_lookupheal_link_timeout Change-Id: Ie7ccfd3f6e021056905a79de5a3d8f199312f315 BUG: 1286346 Signed-off-by: Joseph Fernandes <josferna@redhat.com> Signed-off-by: Dan Lambright <dlambrig@redhat.com> Reviewed-on: http://review.gluster.org/12780 Tested-by: Gluster Build System <jenkins@build.gluster.com> Tested-by: NetBSD Build System <jenkins@build.gluster.org>
Diffstat (limited to 'xlators/features/changetimerecorder/src/ctr-helper.h')
-rw-r--r--xlators/features/changetimerecorder/src/ctr-helper.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/xlators/features/changetimerecorder/src/ctr-helper.h b/xlators/features/changetimerecorder/src/ctr-helper.h
index 025965898d..2b2dc3e17c 100644
--- a/xlators/features/changetimerecorder/src/ctr-helper.h
+++ b/xlators/features/changetimerecorder/src/ctr-helper.h
@@ -50,8 +50,8 @@ typedef struct gf_ctr_private {
gfdb_db_type_t gfdb_db_type;
gfdb_sync_type_t gfdb_sync_type;
gfdb_conn_node_t *_db_conn;
- uint64_t ctr_hardlink_heal_expire_period;
- uint64_t ctr_inode_heal_expire_period;
+ uint64_t ctr_lookupheal_link_timeout;
+ uint64_t ctr_lookupheal_inode_timeout;
} gf_ctr_private_t;
@@ -685,7 +685,7 @@ __is_inode_expired (ctr_xlator_ctx_t *ctr_xlator_ctx,
time_diff = current_time->tv_sec -
ctr_xlator_ctx->inode_heal_period;
- ret = (time_diff >= _priv->ctr_inode_heal_expire_period) ?
+ ret = (time_diff >= _priv->ctr_lookupheal_inode_timeout) ?
_gf_true : _gf_false;
return ret;
}
@@ -705,7 +705,7 @@ __is_hardlink_expired (ctr_hard_link_t *ctr_hard_link,
time_diff = current_time->tv_sec -
ctr_hard_link->hardlink_heal_period;
- ret = ret || (time_diff >= _priv->ctr_hardlink_heal_expire_period) ?
+ ret = ret || (time_diff >= _priv->ctr_lookupheal_link_timeout) ?
_gf_true : _gf_false;
return ret;