Lines Matching refs:total
69 cap->total = cpu_to_le64(nr_caps);
82 read->count = cpu_to_le64(m->metric[METRIC_READ].total);
95 write->count = cpu_to_le64(m->metric[METRIC_WRITE].total);
108 meta->count = cpu_to_le64(m->metric[METRIC_METADATA].total);
119 dlease->total = cpu_to_le64(atomic64_read(&m->total_dentries));
131 files->total = cpu_to_le64(sum);
141 icaps->total = cpu_to_le64(sum);
151 inodes->total = cpu_to_le64(sum);
160 rsize->total_ops = cpu_to_le64(m->metric[METRIC_READ].total);
170 wsize->total_ops = cpu_to_le64(m->metric[METRIC_WRITE].total);
267 metric->total = 0;
327 static inline void __update_mean_and_stdev(ktime_t total, ktime_t *lavg,
332 if (unlikely(total == 1)) {
336 avg = *lavg + div64_s64(lat - *lavg, total);
347 ktime_t total;
353 total = ++m->total;
358 __update_mean_and_stdev(total, &m->latency_avg, &m->latency_sq_sum,