summaryrefslogtreecommitdiffstats
path: root/libglusterfs/src/xlator.c
diff options
context:
space:
mode:
authorAmar Tumballi <amarts@redhat.com>2018-01-30 18:48:33 +0530
committerAmar Tumballi <amarts@redhat.com>2018-02-16 16:18:11 +0000
commite80c10d5e6fb97e132ff7f1c2846629fb5ad915f (patch)
tree69f5507def12d5443bb216ad4beafddb63ac3a80 /libglusterfs/src/xlator.c
parent664b946496368f625b5a15646b5aa791078055ef (diff)
metrics: set latency min value during xlator init
otherwise, the very first metrics will have all the min as 0. also no need to print pending-fops if it is 0. Updates #168 Change-Id: I233de6c92b1a73977bb468ba211ac6ec3c05298f Signed-off-by: Amar Tumballi <amarts@redhat.com>
Diffstat (limited to 'libglusterfs/src/xlator.c')
-rw-r--r--libglusterfs/src/xlator.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/libglusterfs/src/xlator.c b/libglusterfs/src/xlator.c
index b060d393730..4071a7c0569 100644
--- a/libglusterfs/src/xlator.c
+++ b/libglusterfs/src/xlator.c
@@ -217,6 +217,7 @@ xlator_volopt_dynload (char *xlator_type, void **dl_handle,
int xlator_dynload_oldway (xlator_t *xl)
{
+ int i = 0;
int ret = -1;
void *handle = NULL;
volume_opt_list_t *vol_opt = NULL;
@@ -300,6 +301,12 @@ int xlator_dynload_oldway (xlator_t *xl)
INIT_LIST_HEAD (&vol_opt->list);
list_add_tail (&vol_opt->list, &xl->volume_options);
+ /* make sure 'min' is set to high value, so it would be
+ properly set later */
+ for (i = 0; i < GF_FOP_MAXVALUE; i++) {
+ xl->stats.interval.latencies[i].min = 0xffffffff;
+ }
+
ret = 0;
out: