X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=iolog.h;h=af84e102e65054db60a26bc4ec6b9df121caf259;hp=122a982e0f283fcd47cc4429bc5ca255f285e412;hb=d926d535c7e1a12ff1a57a718ed8e84f617b0172;hpb=80666bece308842c36132245e4cbbe9eb0bc506b diff --git a/iolog.h b/iolog.h index 122a982e..af84e102 100644 --- a/iolog.h +++ b/iolog.h @@ -3,6 +3,7 @@ #include "lib/rbtree.h" #include "lib/ieee754.h" +#include "flist.h" #include "ioengine.h" /* @@ -52,7 +53,7 @@ struct io_log { * Windowed average, for logging single entries average over some * period of time. */ - struct io_stat avg_window[2]; + struct io_stat avg_window[DDIR_RWDIR_CNT]; unsigned long avg_msec; unsigned long avg_last; }; @@ -123,7 +124,7 @@ extern void setup_log(struct io_log **, unsigned long, int); extern void finish_log(struct thread_data *, struct io_log *, const char *); extern void finish_log_named(struct thread_data *, struct io_log *, const char *, const char *); extern void __finish_log(struct io_log *, const char *); -extern struct io_log *agg_io_log[2]; +extern struct io_log *agg_io_log[DDIR_RWDIR_CNT]; extern int write_bw_log; extern void add_agg_sample(unsigned long, enum fio_ddir, unsigned int);