X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;ds=sidebyside;f=cconv.c;h=14ee9c5b2738a2a1fb3d0d49e05ee3f61dde4d3d;hb=470cdbb7a77db8293440c8f7610e49b2537d6b7b;hp=a9b404a6e0e62857f89dc6b91a6885cb8b5fba5d;hpb=6a4cf74fc2521b601cb1cc9478526cc441830a5c;p=fio.git diff --git a/cconv.c b/cconv.c index a9b404a6..14ee9c5b 100644 --- a/cconv.c +++ b/cconv.c @@ -173,8 +173,6 @@ void convert_thread_options_to_cpu(struct thread_options *o, o->trim_zero = le32_to_cpu(top->trim_zero); o->clat_percentiles = le32_to_cpu(top->clat_percentiles); o->overwrite_plist = le32_to_cpu(top->overwrite_plist); - o->cpuload = le32_to_cpu(top->cpuload); - o->cpucycle = le32_to_cpu(top->cpucycle); o->continue_on_error = le32_to_cpu(top->continue_on_error); o->cgroup_weight = le32_to_cpu(top->cgroup_weight); o->cgroup_nodelete = le32_to_cpu(top->cgroup_nodelete); @@ -312,8 +310,6 @@ void convert_thread_options_to_net(struct thread_options_pack *top, top->trim_zero = cpu_to_le32(o->trim_zero); top->clat_percentiles = cpu_to_le32(o->clat_percentiles); top->overwrite_plist = cpu_to_le32(o->overwrite_plist); - top->cpuload = cpu_to_le32(o->cpuload); - top->cpucycle = cpu_to_le32(o->cpucycle); top->continue_on_error = cpu_to_le32(o->continue_on_error); top->cgroup_weight = cpu_to_le32(o->cgroup_weight); top->cgroup_nodelete = cpu_to_le32(o->cgroup_nodelete);