X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=blktrace.h;h=a0e82faa05eed81bb3e8819a200208089a6009d7;hp=cebd54d6a58969b463f03219d8129d2fc88db6fc;hb=01bf5128d0581e267383f280c6a1dcd26517240f;hpb=87a48ada9768d3eec522a9f022aaa669c7582285 diff --git a/blktrace.h b/blktrace.h index cebd54d6..a0e82faa 100644 --- a/blktrace.h +++ b/blktrace.h @@ -4,14 +4,19 @@ #ifdef FIO_HAVE_BLKTRACE +#include + #include "blktrace_api.h" struct blktrace_cursor { struct fifo *fifo; // fifo queue for reading int fd; // blktrace file + __u64 length; // length of trace struct blk_io_trace t; // current io trace int swap; // bitwise reverse required int scalar; // scale percentage + int iter; // current iteration + int nr_iter; // number of iterations to run }; bool is_blktrace(const char *, int *); @@ -31,5 +36,10 @@ static inline bool load_blktrace(struct thread_data *td, const char *fname, return false; } +static inline int merge_blktrace_iologs(struct thread_data *td) +{ + return false; +} + #endif #endif