X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=cconv.c;h=f809fd5197521ba58432100d694cb902538a1382;hb=8300eba59e941f917fcc27ae10126e51bf0935b5;hp=ac58705dabf40e17089e612f980c5f63db1d0e1a;hpb=e97412c38bedc4f365bdf4abe1ff8f6694587a86;p=fio.git diff --git a/cconv.c b/cconv.c index ac58705d..f809fd51 100644 --- a/cconv.c +++ b/cconv.c @@ -267,6 +267,7 @@ void convert_thread_options_to_cpu(struct thread_options *o, o->trim_batch = le32_to_cpu(top->trim_batch); o->trim_zero = le32_to_cpu(top->trim_zero); o->clat_percentiles = le32_to_cpu(top->clat_percentiles); + o->lat_percentiles = le32_to_cpu(top->lat_percentiles); o->percentile_precision = le32_to_cpu(top->percentile_precision); o->continue_on_error = le32_to_cpu(top->continue_on_error); o->cgroup_weight = le32_to_cpu(top->cgroup_weight); @@ -454,6 +455,7 @@ void convert_thread_options_to_net(struct thread_options_pack *top, top->trim_batch = cpu_to_le32(o->trim_batch); top->trim_zero = cpu_to_le32(o->trim_zero); top->clat_percentiles = cpu_to_le32(o->clat_percentiles); + top->lat_percentiles = cpu_to_le32(o->lat_percentiles); top->percentile_precision = cpu_to_le32(o->percentile_precision); top->continue_on_error = cpu_to_le32(o->continue_on_error); top->cgroup_weight = cpu_to_le32(o->cgroup_weight);