X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=fio.h;h=d28f8ce59cf15cee75c86d13f95099894dd2b547;hb=ae703cdf31532e337cc18c259c883bf5314aa43a;hp=5e352c6cf3cd07722210b06acf6a1b71e0e7b702;hpb=df8fb6097058098f1c2f7c2cf4019640561768df;p=fio.git diff --git a/fio.h b/fio.h index 5e352c6c..d28f8ce5 100644 --- a/fio.h +++ b/fio.h @@ -235,7 +235,15 @@ struct thread_data { uint64_t total_io_size; uint64_t fill_device_size; + /* + * Issue side + */ uint64_t io_issues[DDIR_RWDIR_CNT]; + uint64_t io_issue_bytes[DDIR_RWDIR_CNT]; + + /* + * Completions + */ uint64_t io_blocks[DDIR_RWDIR_CNT]; uint64_t this_io_blocks[DDIR_RWDIR_CNT]; uint64_t io_bytes[DDIR_RWDIR_CNT]; @@ -642,6 +650,9 @@ enum { FIO_RAND_DIST_PARETO, }; +#define FIO_DEF_ZIPF 1.1 +#define FIO_DEF_PARETO 0.2 + enum { FIO_RAND_GEN_TAUSWORTHE = 0, FIO_RAND_GEN_LFSR,