Lines Matching full:total

130 #define CEPH_METRIC_SHOW(name, total, avg, min, max, sq) {		\  argument
135 _total = total - 1; \
140 name, total, _avg, _min, _max, _st); \
149 s64 total, sum, avg, min, max, sq; in metric_show() local
152 seq_printf(s, "item total\n"); in metric_show()
154 seq_printf(s, "%-35s%lld / %lld\n", "opened files / total inodes", in metric_show()
156 seq_printf(s, "%-35s%lld / %lld\n", "pinned i_caps / total inodes", in metric_show()
158 seq_printf(s, "%-35s%lld / %lld\n", "opened inodes / total inodes", in metric_show()
162 …seq_printf(s, "item total avg_lat(us) min_lat(us) max_lat(us) stdev(us)… in metric_show()
166 total = m->total_reads; in metric_show()
168 avg = total > 0 ? DIV64_U64_ROUND_CLOSEST(sum, total) : 0; in metric_show()
173 CEPH_METRIC_SHOW("read", total, avg, min, max, sq); in metric_show()
176 total = m->total_writes; in metric_show()
178 avg = total > 0 ? DIV64_U64_ROUND_CLOSEST(sum, total) : 0; in metric_show()
183 CEPH_METRIC_SHOW("write", total, avg, min, max, sq); in metric_show()
186 total = m->total_metadatas; in metric_show()
188 avg = total > 0 ? DIV64_U64_ROUND_CLOSEST(sum, total) : 0; in metric_show()
193 CEPH_METRIC_SHOW("metadata", total, avg, min, max, sq); in metric_show()
196 seq_printf(s, "item total miss hit\n"); in metric_show()
227 int total, avail, used, reserved, min, i; in caps_show() local
230 ceph_reservation_status(fsc, &total, &avail, &used, &reserved, &min); in caps_show()
231 seq_printf(s, "total\t\t%d\n" in caps_show()
236 total, avail, used, reserved, min); in caps_show()