Searched refs:io_bytes (Results 1 – 10 of 10) sorted by relevance
/external/fio/ |
D | eta.c | 196 bytes_done = ddir_rw_sum(td->io_bytes); in thread_eta() 278 unsigned long long *io_bytes, in calc_rate() argument 286 diff = io_bytes[i] - prev_io_bytes[i]; in calc_rate() 293 prev_io_bytes[i] = io_bytes[i]; in calc_rate() 326 unsigned long long io_bytes[DDIR_RWDIR_CNT]; in calc_thread_status() local 356 io_bytes[DDIR_READ] = io_bytes[DDIR_WRITE] = io_bytes[DDIR_TRIM] = 0; in calc_thread_status() 412 io_bytes[0] += td->io_bytes[ddir]; in calc_thread_status() 415 io_bytes[ddir] += td->io_bytes[ddir]; in calc_thread_status() 443 calc_rate(unified_rw_rep, rate_time, io_bytes, rate_io_bytes, in calc_thread_status() 459 calc_rate(unified_rw_rep, disp_time, io_bytes, disp_io_bytes, je->rate); in calc_thread_status()
|
D | stat.c | 381 bw = (1000 * ts->io_bytes[ddir]) / runt; in show_ddir_status() 382 io_p = num2str(ts->io_bytes[ddir], 6, 1, i2p, 8); in show_ddir_status() 509 if (!ddir_rw_sum(ts->io_bytes) && !ddir_rw_sum(ts->total_io_u)) in show_thread_status_normal() 529 if (ts->io_bytes[DDIR_READ]) in show_thread_status_normal() 531 if (ts->io_bytes[DDIR_WRITE]) in show_thread_status_normal() 533 if (ts->io_bytes[DDIR_TRIM]) in show_thread_status_normal() 617 bw = ((1000 * ts->io_bytes[ddir]) / runt) / 1024; in show_ddir_status_terse() 622 (unsigned long long) ts->io_bytes[ddir] >> 10, bw, iops, in show_ddir_status_terse() 701 bw = ((1000 * ts->io_bytes[ddir]) / runt) / 1024; in add_ddir_status_json() 705 json_object_add_value_int(dir_object, "io_bytes", ts->io_bytes[ddir] >> 10); in add_ddir_status_json() [all …]
|
D | backend.c | 1218 if (limit != -1ULL && ddir_rw_sum(td->io_bytes) < limit) { in keep_running() 1225 diff = limit - ddir_rw_sum(td->io_bytes); in keep_running() 1530 if (td_read(td) && td->io_bytes[DDIR_READ]) { in thread_main() 1534 if (td_write(td) && td->io_bytes[DDIR_WRITE]) { in thread_main() 1538 if (td_trim(td) && td->io_bytes[DDIR_TRIM]) { in thread_main() 1570 td->ts.io_bytes[DDIR_READ] = td->io_bytes[DDIR_READ]; in thread_main() 1571 td->ts.io_bytes[DDIR_WRITE] = td->io_bytes[DDIR_WRITE]; in thread_main() 1572 td->ts.io_bytes[DDIR_TRIM] = td->io_bytes[DDIR_TRIM]; in thread_main()
|
D | stat.h | 169 uint64_t io_bytes[DDIR_RWDIR_CNT]; member
|
D | libfio.c | 131 td->io_bytes[i] = 0; in reset_all_stats()
|
D | fio.h | 250 uint64_t io_bytes[DDIR_RWDIR_CNT]; member
|
D | gclient.c | 1194 bw = (1000 * ts->io_bytes[ddir]) / runt; 1195 io_p = num2str(ts->io_bytes[ddir], 6, 1, i2p, 8); 1329 if (ts->io_bytes[i])
|
D | client.c | 879 dst->io_bytes[i] = le64_to_cpu(src->io_bytes[i]); in convert_ts()
|
D | server.c | 1145 p.ts.io_bytes[i] = cpu_to_le64(ts->io_bytes[i]); in fio_server_send_ts()
|
D | io_u.c | 1653 td->io_bytes[ddir] += bytes; in io_completed()
|