X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;ds=sidebyside;f=thread_options.h;h=e53000ab248b4d74baba2d5b4caa58c846f49307;hb=518dac097ec305d76fab3f0f45ce785a3849d8b5;hp=b7a88ed358f14f73e9933f859a5837c6362bdded;hpb=23ed19b0e10749dca2389511f78d89db886c064a;p=fio.git diff --git a/thread_options.h b/thread_options.h index b7a88ed3..e53000ab 100644 --- a/thread_options.h +++ b/thread_options.h @@ -28,8 +28,10 @@ struct bssplit { uint32_t perc; }; +#define OPT_MAGIC 0x4f50544e + struct thread_options { - int pad; + int magic; char *description; char *name; char *directory; @@ -43,15 +45,17 @@ struct thread_options { unsigned int kb_base; unsigned int unit_base; unsigned int ddir_seq_nr; - long ddir_seq_add; + long long ddir_seq_add; unsigned int iodepth; unsigned int iodepth_low; unsigned int iodepth_batch; unsigned int iodepth_batch_complete; unsigned long long size; + unsigned long long io_limit; unsigned int size_percent; unsigned int fill_device; + unsigned int file_append; unsigned long long file_size_low; unsigned long long file_size_high; unsigned long long start_offset; @@ -104,6 +108,7 @@ struct thread_options { unsigned long long rand_seed; unsigned int use_os_rand; unsigned int log_avg_msec; + unsigned int log_offset; unsigned int norandommap; unsigned int softrandommap; unsigned int bs_unaligned; @@ -153,14 +158,13 @@ struct thread_options { unsigned int cpumask_set; os_cpu_mask_t verify_cpumask; unsigned int verify_cpumask_set; -#ifdef CONFIG_LIBNUMA - struct bitmask *numa_cpunodesmask; + unsigned int cpus_allowed_policy; + char *numa_cpunodes; unsigned int numa_cpumask_set; unsigned short numa_mem_mode; unsigned int numa_mem_prefer_node; - struct bitmask *numa_memnodesmask; + char *numa_memnodes; unsigned int numa_memmask_set; -#endif unsigned int iolog; unsigned int rwmixcycle; unsigned int rwmix[DDIR_RWDIR_CNT]; @@ -276,8 +280,10 @@ struct thread_options_pack { uint32_t iodepth_batch_complete; uint64_t size; + uint64_t io_limit; uint32_t size_percent; uint32_t fill_device; + uint32_t file_append; uint64_t file_size_low; uint64_t file_size_high; uint64_t start_offset; @@ -330,6 +336,7 @@ struct thread_options_pack { uint64_t rand_seed; uint32_t use_os_rand; uint32_t log_avg_msec; + uint32_t log_offset; uint32_t norandommap; uint32_t softrandommap; uint32_t bs_unaligned; @@ -376,6 +383,7 @@ struct thread_options_pack { uint32_t cpumask_set; uint8_t verify_cpumask[FIO_TOP_STR_MAX]; uint32_t verify_cpumask_set; + uint32_t cpus_allowed_policy; uint32_t iolog; uint32_t rwmixcycle; uint32_t rwmix[DDIR_RWDIR_CNT];