Home
last modified time | relevance | path

Searched refs:io_u_lat (Results 1 – 6 of 6) sorted by relevance

/external/fio/
Dprofile.h17 int (*io_u_lat)(struct thread_data *, uint64_t); member
Dstat.h291 extern void stat_calc_lat_m(struct thread_stat *ts, double *io_u_lat);
292 extern void stat_calc_lat_u(struct thread_stat *ts, double *io_u_lat);
Dgclient.c933 double io_u_lat[FIO_IO_U_LAT_U_NR + FIO_IO_U_LAT_M_NR]; in gfio_show_latency_buckets() local
943 stat_calc_lat_u(ts, io_u_lat); in gfio_show_latency_buckets()
944 stat_calc_lat_m(ts, &io_u_lat[FIO_IO_U_LAT_U_NR]); in gfio_show_latency_buckets()
951 if (io_u_lat[i] == 0.00) in gfio_show_latency_buckets()
965 tree_view = gfio_output_lat_buckets(&io_u_lat[start], &ranges[start], end - start + 1); in gfio_show_latency_buckets()
966 …ge->lat_bucket_graph = setup_lat_bucket_graph("Latency buckets", &io_u_lat[start], &ranges[start],… in gfio_show_latency_buckets()
Dstat.c358 void stat_calc_lat_u(struct thread_stat *ts, double *io_u_lat) in stat_calc_lat_u() argument
360 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_u, FIO_IO_U_LAT_U_NR); in stat_calc_lat_u()
363 void stat_calc_lat_m(struct thread_stat *ts, double *io_u_lat) in stat_calc_lat_m() argument
365 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_m, FIO_IO_U_LAT_M_NR); in stat_calc_lat_m()
475 static int show_lat(double *io_u_lat, int nr, const char **ranges, in show_lat() argument
481 if (io_u_lat[i] <= 0.0) in show_lat()
493 log_buf(out, "%s%3.2f%%", ranges[i], io_u_lat[i]); in show_lat()
Dio_u.c1752 if (ops->io_u_lat) in account_io_completion()
1753 icd->error = ops->io_u_lat(td, tusec); in account_io_completion()
/external/fio/profiles/
Dact.c455 .io_u_lat = act_io_u_lat,