Searched refs:io_u_lat (Results 1 – 6 of 6) sorted by relevance
/external/fio/ |
D | stat.h | 240 extern void stat_calc_lat_m(struct thread_stat *ts, double *io_u_lat); 241 extern void stat_calc_lat_u(struct thread_stat *ts, double *io_u_lat);
|
D | profile.h | 17 int (*io_u_lat)(struct thread_data *, uint64_t); member
|
D | stat.c | 334 void stat_calc_lat_u(struct thread_stat *ts, double *io_u_lat) in stat_calc_lat_u() argument 336 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_u, FIO_IO_U_LAT_U_NR); in stat_calc_lat_u() 339 void stat_calc_lat_m(struct thread_stat *ts, double *io_u_lat) in stat_calc_lat_m() argument 341 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_m, FIO_IO_U_LAT_M_NR); in stat_calc_lat_m() 441 static int show_lat(double *io_u_lat, int nr, const char **ranges, in show_lat() argument 447 if (io_u_lat[i] <= 0.0) in show_lat() 459 log_info("%s%3.2f%%", ranges[i], io_u_lat[i]); in show_lat()
|
D | gclient.c | 959 double io_u_lat[FIO_IO_U_LAT_U_NR + FIO_IO_U_LAT_M_NR]; local 969 stat_calc_lat_u(ts, io_u_lat); 970 stat_calc_lat_m(ts, &io_u_lat[FIO_IO_U_LAT_U_NR]); 977 if (io_u_lat[i] == 0.00) 991 tree_view = gfio_output_lat_buckets(&io_u_lat[start], &ranges[start], end - start + 1); 992 …ge->lat_bucket_graph = setup_lat_bucket_graph("Latency Buckets", &io_u_lat[start], &ranges[start],…
|
D | io_u.c | 1569 if (ops->io_u_lat) in account_io_completion() 1570 icd->error = ops->io_u_lat(td, tusec); in account_io_completion()
|
/external/fio/profiles/ |
D | act.c | 454 .io_u_lat = act_io_u_lat,
|