X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=cconv.c;fp=cconv.c;h=2bfe6aa09d9585884f0766a6d4ff504580c24aac;hp=ae34e5490672925bae4bfbdd07a13da9db4ecbd3;hb=fb390e242cac8868e01cdc2046c63e04e3d53d70;hpb=2a95f716d8808f45cd5806eac0baad96b39b0016;ds=sidebyside diff --git a/cconv.c b/cconv.c index ae34e549..2bfe6aa0 100644 --- a/cconv.c +++ b/cconv.c @@ -90,6 +90,7 @@ void convert_thread_options_to_cpu(struct thread_options *o, o->create_serialize = le32_to_cpu(top->create_serialize); o->create_fsync = le32_to_cpu(top->create_fsync); o->create_on_open = le32_to_cpu(top->create_on_open); + o->create_only = le32_to_cpu(top->create_only); o->end_fsync = le32_to_cpu(top->end_fsync); o->pre_read = le32_to_cpu(top->pre_read); o->sync_io = le32_to_cpu(top->sync_io); @@ -241,6 +242,7 @@ void convert_thread_options_to_net(struct thread_options_pack *top, top->create_serialize = cpu_to_le32(o->create_serialize); top->create_fsync = cpu_to_le32(o->create_fsync); top->create_on_open = cpu_to_le32(o->create_on_open); + top->create_only = cpu_to_le32(o->create_only); top->end_fsync = cpu_to_le32(o->end_fsync); top->pre_read = cpu_to_le32(o->pre_read); top->sync_io = cpu_to_le32(o->sync_io);