X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=thread_options.h;h=6604a37610172280417546b5a5b2940753e5928f;hb=d264264a08;hp=ee1114d1f8ee234e662f1e96944f9ee2e00f46af;hpb=f88cd2226c594876ae58f36ca94cddb4fc1b719f;p=fio.git diff --git a/thread_options.h b/thread_options.h index ee1114d1..6604a376 100644 --- a/thread_options.h +++ b/thread_options.h @@ -223,6 +223,7 @@ struct thread_options { unsigned int rate[DDIR_RWDIR_CNT]; unsigned int ratemin[DDIR_RWDIR_CNT]; unsigned int ratecycle; + unsigned int io_submit_mode; unsigned int rate_iops[DDIR_RWDIR_CNT]; unsigned int rate_iops_min[DDIR_RWDIR_CNT]; @@ -261,6 +262,17 @@ struct thread_options { unsigned long long latency_target; unsigned long long latency_window; fio_fp64_t latency_percentile; + + unsigned block_error_hist; + unsigned int skip_bad; + + unsigned int replay_align; + unsigned int replay_scale; + + unsigned int per_job_logs; + + unsigned int allow_create; + unsigned int allow_mounted_write; }; #define FIO_TOP_STR_MAX 256 @@ -449,6 +461,7 @@ struct thread_options_pack { uint32_t rate[DDIR_RWDIR_CNT]; uint32_t ratemin[DDIR_RWDIR_CNT]; uint32_t ratecycle; + uint32_t io_submit_mode; uint32_t rate_iops[DDIR_RWDIR_CNT]; uint32_t rate_iops_min[DDIR_RWDIR_CNT]; @@ -486,8 +499,18 @@ struct thread_options_pack { uint64_t latency_target; uint64_t latency_window; - uint32_t pad3; fio_fp64_t latency_percentile; + + uint32_t block_error_hist; + uint32_t skip_bad; + + uint32_t replay_align; + uint32_t replay_scale; + + uint32_t per_job_logs; + + uint32_t allow_create; + uint32_t allow_mounted_write; } __attribute__((packed)); extern void convert_thread_options_to_cpu(struct thread_options *o, struct thread_options_pack *top);