Lines Matching refs:total
130 #define CEPH_LAT_METRIC_SHOW(name, total, avg, min, max, sq) { \ argument
135 _total = total - 1; \
140 name, total, _avg, _min, _max, _st); \
143 #define CEPH_SZ_METRIC_SHOW(name, total, avg, min, max, sum) { \ argument
146 name, total, avg, _min, max, sum); \
178 s64 total, avg, min, max, sq; in metrics_latency_show() local
187 total = m->total; in metrics_latency_show()
193 CEPH_LAT_METRIC_SHOW(metric_str[i], total, avg, min, max, sq); in metrics_latency_show()
204 s64 total; in metrics_size_show() local
217 total = m->total; in metrics_size_show()
219 avg = total > 0 ? DIV64_U64_ROUND_CLOSEST(sum, total) : 0; in metrics_size_show()
223 CEPH_SZ_METRIC_SHOW(metric_str[i], total, avg, min, max, sum); in metrics_size_show()
266 int total, avail, used, reserved, min, i; in caps_show() local
269 ceph_reservation_status(fsc, &total, &avail, &used, &reserved, &min); in caps_show()
275 total, avail, used, reserved, min); in caps_show()