Add 'per_job_logs' option
[fio.git] / thread_options.h
index aa7f3f2657c8c985e94ec1449e01a34b5fed1ce5..f967a8a10aa4fc4da5212b48eabf4c427b3fc999 100644 (file)
@@ -265,6 +265,11 @@ struct thread_options {
 
        unsigned block_error_hist;
        unsigned int skip_bad;
+
+       unsigned int replay_align;
+       unsigned int replay_scale;
+
+       unsigned int per_job_logs;
 };
 
 #define FIO_TOP_STR_MAX                256
@@ -495,6 +500,11 @@ struct thread_options_pack {
 
        uint32_t block_error_hist;
        uint32_t skip_bad;
+
+       uint32_t replay_align;
+       uint32_t replay_scale;
+
+       uint32_t per_job_logs;
 } __attribute__((packed));
 
 extern void convert_thread_options_to_cpu(struct thread_options *o, struct thread_options_pack *top);