X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=cconv.c;h=488dd7993fdec39e3ace9398f722ebe839ddcea0;hb=695611a9d4cd554d44d8b2ec5da2811061950a2e;hp=5dc0569f69dc8809f9e15eefd5c0802d3e684f9a;hpb=20c7a244e75e4aa705a31a74e7067de4c890dff7;p=fio.git diff --git a/cconv.c b/cconv.c index 5dc0569f..488dd799 100644 --- a/cconv.c +++ b/cconv.c @@ -102,6 +102,7 @@ void convert_thread_options_to_cpu(struct thread_options *o, o->size = le64_to_cpu(top->size); o->io_size = le64_to_cpu(top->io_size); o->size_percent = le32_to_cpu(top->size_percent); + o->io_size_percent = le32_to_cpu(top->io_size_percent); o->fill_device = le32_to_cpu(top->fill_device); o->file_append = le32_to_cpu(top->file_append); o->file_size_low = le64_to_cpu(top->file_size_low); @@ -367,6 +368,7 @@ void convert_thread_options_to_net(struct thread_options_pack *top, top->iodepth_batch_complete_max = cpu_to_le32(o->iodepth_batch_complete_max); top->serialize_overlap = cpu_to_le32(o->serialize_overlap); top->size_percent = cpu_to_le32(o->size_percent); + top->io_size_percent = cpu_to_le32(o->io_size_percent); top->fill_device = cpu_to_le32(o->fill_device); top->file_append = cpu_to_le32(o->file_append); top->ratecycle = cpu_to_le32(o->ratecycle);