X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=cconv.c;h=41ef6265d5695dfc6546ac8dd3b0dff110600e6b;hb=56e2a5fc76067c91738f7eb0efbd6ec6d349e0f2;hp=b7d469e920141f862a33b5ee91f341195bbb7194;hpb=eb0c74ae74ce458dd55b7a7d11c5ba7ae59bf5ed;p=fio.git diff --git a/cconv.c b/cconv.c index b7d469e9..41ef6265 100644 --- a/cconv.c +++ b/cconv.c @@ -142,6 +142,7 @@ void convert_thread_options_to_cpu(struct thread_options *o, o->do_disk_util = le32_to_cpu(top->do_disk_util); o->override_sync = le32_to_cpu(top->override_sync); o->rand_repeatable = le32_to_cpu(top->rand_repeatable); + o->allrand_repeatable = le32_to_cpu(top->allrand_repeatable); o->rand_seed = le64_to_cpu(top->rand_seed); o->use_os_rand = le32_to_cpu(top->use_os_rand); o->log_avg_msec = le32_to_cpu(top->log_avg_msec); @@ -308,6 +309,7 @@ void convert_thread_options_to_net(struct thread_options_pack *top, top->do_disk_util = cpu_to_le32(o->do_disk_util); top->override_sync = cpu_to_le32(o->override_sync); top->rand_repeatable = cpu_to_le32(o->rand_repeatable); + top->allrand_repeatable = cpu_to_le32(o->allrand_repeatable); top->rand_seed = __cpu_to_le64(o->rand_seed); top->use_os_rand = cpu_to_le32(o->use_os_rand); top->log_avg_msec = cpu_to_le32(o->log_avg_msec);