From dd39e2d406b6be11aa5432311034761aff5d6ba8 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Sat, 14 Apr 2018 16:26:17 -0600 Subject: [PATCH] cconv: add conversion for 'replay_time_scale' This was forgotten in the previous commit. Signed-off-by: Jens Axboe --- cconv.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cconv.c b/cconv.c index dbe0071a..585ed864 100644 --- a/cconv.c +++ b/cconv.c @@ -291,6 +291,7 @@ void convert_thread_options_to_cpu(struct thread_options *o, o->block_error_hist = le32_to_cpu(top->block_error_hist); o->replay_align = le32_to_cpu(top->replay_align); o->replay_scale = le32_to_cpu(top->replay_scale); + o->replay_time_scale = le32_to_cpu(top->replay_time_scale); o->per_job_logs = le32_to_cpu(top->per_job_logs); o->write_bw_log = le32_to_cpu(top->write_bw_log); o->write_lat_log = le32_to_cpu(top->write_lat_log); @@ -481,6 +482,7 @@ void convert_thread_options_to_net(struct thread_options_pack *top, top->block_error_hist = cpu_to_le32(o->block_error_hist); top->replay_align = cpu_to_le32(o->replay_align); top->replay_scale = cpu_to_le32(o->replay_scale); + top->replay_time_scale = cpu_to_le32(o->replay_time_scale); top->per_job_logs = cpu_to_le32(o->per_job_logs); top->write_bw_log = cpu_to_le32(o->write_bw_log); top->write_lat_log = cpu_to_le32(o->write_lat_log); -- 2.25.1