dump_td_info() doesn't really need to be a function
[fio.git] / cconv.c
1 #include <string.h>
2
3 #include "thread_options.h"
4
5 static void string_to_cpu(char **dst, const uint8_t *src)
6 {
7         const char *__src = (const char *) src;
8
9         if (strlen(__src))
10                 *dst = strdup(__src);
11 }
12
13 static void __string_to_net(uint8_t *dst, const char *src, size_t dst_size)
14 {
15         if (src) {
16                 dst[dst_size - 1] = '\0';
17                 strncpy((char *) dst, src, dst_size - 1);
18         } else
19                 dst[0] = '\0';
20 }
21
22 #define string_to_net(dst, src) __string_to_net((dst), (src), sizeof(dst))
23
24 static void free_thread_options_to_cpu(struct thread_options *o)
25 {
26         int i;
27
28         free(o->description);
29         free(o->name);
30         free(o->wait_for);
31         free(o->directory);
32         free(o->filename);
33         free(o->filename_format);
34         free(o->opendir);
35         free(o->ioengine);
36         free(o->mmapfile);
37         free(o->read_iolog_file);
38         free(o->write_iolog_file);
39         free(o->bw_log_file);
40         free(o->lat_log_file);
41         free(o->iops_log_file);
42         free(o->hist_log_file);
43         free(o->replay_redirect);
44         free(o->exec_prerun);
45         free(o->exec_postrun);
46         free(o->ioscheduler);
47         free(o->profile);
48         free(o->cgroup);
49
50         for (i = 0; i < DDIR_RWDIR_CNT; i++) {
51                 free(o->bssplit[i]);
52                 free(o->zone_split[i]);
53         }
54 }
55
56 void convert_thread_options_to_cpu(struct thread_options *o,
57                                    struct thread_options_pack *top)
58 {
59         int i, j;
60
61         for (i = 0; i < NR_OPTS_SZ; i++)
62                 o->set_options[i] = le64_to_cpu(top->set_options[i]);
63
64         string_to_cpu(&o->description, top->description);
65         string_to_cpu(&o->name, top->name);
66         string_to_cpu(&o->wait_for, top->wait_for);
67         string_to_cpu(&o->directory, top->directory);
68         string_to_cpu(&o->filename, top->filename);
69         string_to_cpu(&o->filename_format, top->filename_format);
70         string_to_cpu(&o->opendir, top->opendir);
71         string_to_cpu(&o->ioengine, top->ioengine);
72         string_to_cpu(&o->mmapfile, top->mmapfile);
73         string_to_cpu(&o->read_iolog_file, top->read_iolog_file);
74         string_to_cpu(&o->write_iolog_file, top->write_iolog_file);
75         string_to_cpu(&o->bw_log_file, top->bw_log_file);
76         string_to_cpu(&o->lat_log_file, top->lat_log_file);
77         string_to_cpu(&o->iops_log_file, top->iops_log_file);
78         string_to_cpu(&o->hist_log_file, top->hist_log_file);
79         string_to_cpu(&o->replay_redirect, top->replay_redirect);
80         string_to_cpu(&o->exec_prerun, top->exec_prerun);
81         string_to_cpu(&o->exec_postrun, top->exec_postrun);
82         string_to_cpu(&o->ioscheduler, top->ioscheduler);
83         string_to_cpu(&o->profile, top->profile);
84         string_to_cpu(&o->cgroup, top->cgroup);
85
86         o->allow_create = le32_to_cpu(top->allow_create);
87         o->allow_mounted_write = le32_to_cpu(top->allow_mounted_write);
88         o->td_ddir = le32_to_cpu(top->td_ddir);
89         o->rw_seq = le32_to_cpu(top->rw_seq);
90         o->kb_base = le32_to_cpu(top->kb_base);
91         o->unit_base = le32_to_cpu(top->unit_base);
92         o->ddir_seq_nr = le32_to_cpu(top->ddir_seq_nr);
93         o->ddir_seq_add = le64_to_cpu(top->ddir_seq_add);
94         o->iodepth = le32_to_cpu(top->iodepth);
95         o->iodepth_low = le32_to_cpu(top->iodepth_low);
96         o->iodepth_batch = le32_to_cpu(top->iodepth_batch);
97         o->iodepth_batch_complete_min = le32_to_cpu(top->iodepth_batch_complete_min);
98         o->iodepth_batch_complete_max = le32_to_cpu(top->iodepth_batch_complete_max);
99         o->size = le64_to_cpu(top->size);
100         o->io_size = le64_to_cpu(top->io_size);
101         o->size_percent = le32_to_cpu(top->size_percent);
102         o->fill_device = le32_to_cpu(top->fill_device);
103         o->file_append = le32_to_cpu(top->file_append);
104         o->file_size_low = le64_to_cpu(top->file_size_low);
105         o->file_size_high = le64_to_cpu(top->file_size_high);
106         o->start_offset = le64_to_cpu(top->start_offset);
107
108         for (i = 0; i < DDIR_RWDIR_CNT; i++) {
109                 o->bs[i] = le32_to_cpu(top->bs[i]);
110                 o->ba[i] = le32_to_cpu(top->ba[i]);
111                 o->min_bs[i] = le32_to_cpu(top->min_bs[i]);
112                 o->max_bs[i] = le32_to_cpu(top->max_bs[i]);
113                 o->bssplit_nr[i] = le32_to_cpu(top->bssplit_nr[i]);
114
115                 if (o->bssplit_nr[i]) {
116                         o->bssplit[i] = malloc(o->bssplit_nr[i] * sizeof(struct bssplit));
117                         for (j = 0; j < o->bssplit_nr[i]; j++) {
118                                 o->bssplit[i][j].bs = le32_to_cpu(top->bssplit[i][j].bs);
119                                 o->bssplit[i][j].perc = le32_to_cpu(top->bssplit[i][j].perc);
120                         }
121                 }
122
123                 o->zone_split_nr[i] = le32_to_cpu(top->zone_split_nr[i]);
124
125                 if (o->zone_split_nr[i]) {
126                         o->zone_split[i] = malloc(o->zone_split_nr[i] * sizeof(struct zone_split));
127                         for (j = 0; j < o->zone_split_nr[i]; j++) {
128                                 o->zone_split[i][j].access_perc = top->zone_split[i][j].access_perc;
129                                 o->zone_split[i][j].size_perc = top->zone_split[i][j].size_perc;
130                         }
131                 }
132
133                 o->rwmix[i] = le32_to_cpu(top->rwmix[i]);
134                 o->rate[i] = le64_to_cpu(top->rate[i]);
135                 o->ratemin[i] = le64_to_cpu(top->ratemin[i]);
136                 o->rate_iops[i] = le32_to_cpu(top->rate_iops[i]);
137                 o->rate_iops_min[i] = le32_to_cpu(top->rate_iops_min[i]);
138
139                 o->perc_rand[i] = le32_to_cpu(top->perc_rand[i]);
140         }
141
142         o->ratecycle = le32_to_cpu(top->ratecycle);
143         o->io_submit_mode = le32_to_cpu(top->io_submit_mode);
144         o->unique_filename = le32_to_cpu(top->unique_filename);
145         o->nr_files = le32_to_cpu(top->nr_files);
146         o->open_files = le32_to_cpu(top->open_files);
147         o->file_lock_mode = le32_to_cpu(top->file_lock_mode);
148         o->odirect = le32_to_cpu(top->odirect);
149         o->oatomic = le32_to_cpu(top->oatomic);
150         o->invalidate_cache = le32_to_cpu(top->invalidate_cache);
151         o->create_serialize = le32_to_cpu(top->create_serialize);
152         o->create_fsync = le32_to_cpu(top->create_fsync);
153         o->create_on_open = le32_to_cpu(top->create_on_open);
154         o->create_only = le32_to_cpu(top->create_only);
155         o->end_fsync = le32_to_cpu(top->end_fsync);
156         o->pre_read = le32_to_cpu(top->pre_read);
157         o->sync_io = le32_to_cpu(top->sync_io);
158         o->verify = le32_to_cpu(top->verify);
159         o->do_verify = le32_to_cpu(top->do_verify);
160         o->verifysort = le32_to_cpu(top->verifysort);
161         o->verifysort_nr = le32_to_cpu(top->verifysort_nr);
162         o->experimental_verify = le32_to_cpu(top->experimental_verify);
163         o->verify_state = le32_to_cpu(top->verify_state);
164         o->verify_interval = le32_to_cpu(top->verify_interval);
165         o->verify_offset = le32_to_cpu(top->verify_offset);
166
167         memcpy(o->verify_pattern, top->verify_pattern, MAX_PATTERN_SIZE);
168         memcpy(o->buffer_pattern, top->buffer_pattern, MAX_PATTERN_SIZE);
169
170         o->verify_pattern_bytes = le32_to_cpu(top->verify_pattern_bytes);
171         o->verify_fatal = le32_to_cpu(top->verify_fatal);
172         o->verify_dump = le32_to_cpu(top->verify_dump);
173         o->verify_async = le32_to_cpu(top->verify_async);
174         o->verify_batch = le32_to_cpu(top->verify_batch);
175         o->use_thread = le32_to_cpu(top->use_thread);
176         o->unlink = le32_to_cpu(top->unlink);
177         o->unlink_each_loop = le32_to_cpu(top->unlink_each_loop);
178         o->do_disk_util = le32_to_cpu(top->do_disk_util);
179         o->override_sync = le32_to_cpu(top->override_sync);
180         o->rand_repeatable = le32_to_cpu(top->rand_repeatable);
181         o->allrand_repeatable = le32_to_cpu(top->allrand_repeatable);
182         o->rand_seed = le64_to_cpu(top->rand_seed);
183         o->log_avg_msec = le32_to_cpu(top->log_avg_msec);
184         o->log_hist_msec = le32_to_cpu(top->log_hist_msec);
185         o->log_hist_coarseness = le32_to_cpu(top->log_hist_coarseness);
186         o->log_max = le32_to_cpu(top->log_max);
187         o->log_offset = le32_to_cpu(top->log_offset);
188         o->log_gz = le32_to_cpu(top->log_gz);
189         o->log_gz_store = le32_to_cpu(top->log_gz_store);
190         o->log_unix_epoch = le32_to_cpu(top->log_unix_epoch);
191         o->norandommap = le32_to_cpu(top->norandommap);
192         o->softrandommap = le32_to_cpu(top->softrandommap);
193         o->bs_unaligned = le32_to_cpu(top->bs_unaligned);
194         o->fsync_on_close = le32_to_cpu(top->fsync_on_close);
195         o->bs_is_seq_rand = le32_to_cpu(top->bs_is_seq_rand);
196         o->random_distribution = le32_to_cpu(top->random_distribution);
197         o->exitall_error = le32_to_cpu(top->exitall_error);
198         o->zipf_theta.u.f = fio_uint64_to_double(le64_to_cpu(top->zipf_theta.u.i));
199         o->pareto_h.u.f = fio_uint64_to_double(le64_to_cpu(top->pareto_h.u.i));
200         o->gauss_dev.u.f = fio_uint64_to_double(le64_to_cpu(top->gauss_dev.u.i));
201         o->random_generator = le32_to_cpu(top->random_generator);
202         o->hugepage_size = le32_to_cpu(top->hugepage_size);
203         o->rw_min_bs = le32_to_cpu(top->rw_min_bs);
204         o->thinktime = le32_to_cpu(top->thinktime);
205         o->thinktime_spin = le32_to_cpu(top->thinktime_spin);
206         o->thinktime_blocks = le32_to_cpu(top->thinktime_blocks);
207         o->fsync_blocks = le32_to_cpu(top->fsync_blocks);
208         o->fdatasync_blocks = le32_to_cpu(top->fdatasync_blocks);
209         o->barrier_blocks = le32_to_cpu(top->barrier_blocks);
210
211         o->verify_backlog = le64_to_cpu(top->verify_backlog);
212         o->start_delay = le64_to_cpu(top->start_delay);
213         o->start_delay_high = le64_to_cpu(top->start_delay_high);
214         o->timeout = le64_to_cpu(top->timeout);
215         o->ramp_time = le64_to_cpu(top->ramp_time);
216         o->ss_dur = le64_to_cpu(top->ss_dur);
217         o->ss_ramp_time = le64_to_cpu(top->ss_ramp_time);
218         o->ss_state = le32_to_cpu(top->ss_state);
219         o->ss_limit.u.f = fio_uint64_to_double(le64_to_cpu(top->ss_limit.u.i));
220         o->zone_range = le64_to_cpu(top->zone_range);
221         o->zone_size = le64_to_cpu(top->zone_size);
222         o->zone_skip = le64_to_cpu(top->zone_skip);
223         o->lockmem = le64_to_cpu(top->lockmem);
224         o->offset_increment = le64_to_cpu(top->offset_increment);
225         o->number_ios = le64_to_cpu(top->number_ios);
226
227         o->overwrite = le32_to_cpu(top->overwrite);
228         o->bw_avg_time = le32_to_cpu(top->bw_avg_time);
229         o->iops_avg_time = le32_to_cpu(top->iops_avg_time);
230         o->loops = le32_to_cpu(top->loops);
231         o->mem_type = le32_to_cpu(top->mem_type);
232         o->mem_align = le32_to_cpu(top->mem_align);
233         o->max_latency = le32_to_cpu(top->max_latency);
234         o->stonewall = le32_to_cpu(top->stonewall);
235         o->new_group = le32_to_cpu(top->new_group);
236         o->numjobs = le32_to_cpu(top->numjobs);
237         o->cpus_allowed_policy = le32_to_cpu(top->cpus_allowed_policy);
238         o->iolog = le32_to_cpu(top->iolog);
239         o->rwmixcycle = le32_to_cpu(top->rwmixcycle);
240         o->nice = le32_to_cpu(top->nice);
241         o->ioprio = le32_to_cpu(top->ioprio);
242         o->ioprio_class = le32_to_cpu(top->ioprio_class);
243         o->file_service_type = le32_to_cpu(top->file_service_type);
244         o->group_reporting = le32_to_cpu(top->group_reporting);
245         o->stats = le32_to_cpu(top->stats);
246         o->fadvise_hint = le32_to_cpu(top->fadvise_hint);
247         o->fallocate_mode = le32_to_cpu(top->fallocate_mode);
248         o->zero_buffers = le32_to_cpu(top->zero_buffers);
249         o->refill_buffers = le32_to_cpu(top->refill_buffers);
250         o->scramble_buffers = le32_to_cpu(top->scramble_buffers);
251         o->buffer_pattern_bytes = le32_to_cpu(top->buffer_pattern_bytes);
252         o->time_based = le32_to_cpu(top->time_based);
253         o->disable_lat = le32_to_cpu(top->disable_lat);
254         o->disable_clat = le32_to_cpu(top->disable_clat);
255         o->disable_slat = le32_to_cpu(top->disable_slat);
256         o->disable_bw = le32_to_cpu(top->disable_bw);
257         o->unified_rw_rep = le32_to_cpu(top->unified_rw_rep);
258         o->gtod_reduce = le32_to_cpu(top->gtod_reduce);
259         o->gtod_cpu = le32_to_cpu(top->gtod_cpu);
260         o->clocksource = le32_to_cpu(top->clocksource);
261         o->no_stall = le32_to_cpu(top->no_stall);
262         o->trim_percentage = le32_to_cpu(top->trim_percentage);
263         o->trim_batch = le32_to_cpu(top->trim_batch);
264         o->trim_zero = le32_to_cpu(top->trim_zero);
265         o->clat_percentiles = le32_to_cpu(top->clat_percentiles);
266         o->percentile_precision = le32_to_cpu(top->percentile_precision);
267         o->continue_on_error = le32_to_cpu(top->continue_on_error);
268         o->cgroup_weight = le32_to_cpu(top->cgroup_weight);
269         o->cgroup_nodelete = le32_to_cpu(top->cgroup_nodelete);
270         o->uid = le32_to_cpu(top->uid);
271         o->gid = le32_to_cpu(top->gid);
272         o->flow_id = __le32_to_cpu(top->flow_id);
273         o->flow = __le32_to_cpu(top->flow);
274         o->flow_watermark = __le32_to_cpu(top->flow_watermark);
275         o->flow_sleep = le32_to_cpu(top->flow_sleep);
276         o->sync_file_range = le32_to_cpu(top->sync_file_range);
277         o->latency_target = le64_to_cpu(top->latency_target);
278         o->latency_window = le64_to_cpu(top->latency_window);
279         o->latency_percentile.u.f = fio_uint64_to_double(le64_to_cpu(top->latency_percentile.u.i));
280         o->compress_percentage = le32_to_cpu(top->compress_percentage);
281         o->compress_chunk = le32_to_cpu(top->compress_chunk);
282         o->dedupe_percentage = le32_to_cpu(top->dedupe_percentage);
283         o->skip_bad = le32_to_cpu(top->skip_bad);
284         o->block_error_hist = le32_to_cpu(top->block_error_hist);
285         o->replay_align = le32_to_cpu(top->replay_align);
286         o->replay_scale = le32_to_cpu(top->replay_scale);
287         o->per_job_logs = le32_to_cpu(top->per_job_logs);
288         o->write_bw_log = le32_to_cpu(top->write_bw_log);
289         o->write_lat_log = le32_to_cpu(top->write_lat_log);
290         o->write_iops_log = le32_to_cpu(top->write_iops_log);
291         o->write_hist_log = le32_to_cpu(top->write_hist_log);
292
293         o->trim_backlog = le64_to_cpu(top->trim_backlog);
294         o->rate_process = le32_to_cpu(top->rate_process);
295
296         for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++)
297                 o->percentile_list[i].u.f = fio_uint64_to_double(le64_to_cpu(top->percentile_list[i].u.i));
298 #if 0
299         uint8_t cpumask[FIO_TOP_STR_MAX];
300         uint8_t verify_cpumask[FIO_TOP_STR_MAX];
301         uint8_t log_gz_cpumask[FIO_TOP_STR_MAX];
302 #endif
303 }
304
305 void convert_thread_options_to_net(struct thread_options_pack *top,
306                                    struct thread_options *o)
307 {
308         int i, j;
309
310         for (i = 0; i < NR_OPTS_SZ; i++)
311                 top->set_options[i] = cpu_to_le64(o->set_options[i]);
312
313         string_to_net(top->description, o->description);
314         string_to_net(top->name, o->name);
315         string_to_net(top->wait_for, o->wait_for);
316         string_to_net(top->directory, o->directory);
317         string_to_net(top->filename, o->filename);
318         string_to_net(top->filename_format, o->filename_format);
319         string_to_net(top->opendir, o->opendir);
320         string_to_net(top->ioengine, o->ioengine);
321         string_to_net(top->mmapfile, o->mmapfile);
322         string_to_net(top->read_iolog_file, o->read_iolog_file);
323         string_to_net(top->write_iolog_file, o->write_iolog_file);
324         string_to_net(top->bw_log_file, o->bw_log_file);
325         string_to_net(top->lat_log_file, o->lat_log_file);
326         string_to_net(top->iops_log_file, o->iops_log_file);
327         string_to_net(top->hist_log_file, o->hist_log_file);
328         string_to_net(top->replay_redirect, o->replay_redirect);
329         string_to_net(top->exec_prerun, o->exec_prerun);
330         string_to_net(top->exec_postrun, o->exec_postrun);
331         string_to_net(top->ioscheduler, o->ioscheduler);
332         string_to_net(top->profile, o->profile);
333         string_to_net(top->cgroup, o->cgroup);
334
335         top->allow_create = cpu_to_le32(o->allow_create);
336         top->allow_mounted_write = cpu_to_le32(o->allow_mounted_write);
337         top->td_ddir = cpu_to_le32(o->td_ddir);
338         top->rw_seq = cpu_to_le32(o->rw_seq);
339         top->kb_base = cpu_to_le32(o->kb_base);
340         top->unit_base = cpu_to_le32(o->unit_base);
341         top->ddir_seq_nr = cpu_to_le32(o->ddir_seq_nr);
342         top->iodepth = cpu_to_le32(o->iodepth);
343         top->iodepth_low = cpu_to_le32(o->iodepth_low);
344         top->iodepth_batch = cpu_to_le32(o->iodepth_batch);
345         top->iodepth_batch_complete_min = cpu_to_le32(o->iodepth_batch_complete_min);
346         top->iodepth_batch_complete_max = cpu_to_le32(o->iodepth_batch_complete_max);
347         top->size_percent = cpu_to_le32(o->size_percent);
348         top->fill_device = cpu_to_le32(o->fill_device);
349         top->file_append = cpu_to_le32(o->file_append);
350         top->ratecycle = cpu_to_le32(o->ratecycle);
351         top->io_submit_mode = cpu_to_le32(o->io_submit_mode);
352         top->nr_files = cpu_to_le32(o->nr_files);
353         top->unique_filename = cpu_to_le32(o->unique_filename);
354         top->open_files = cpu_to_le32(o->open_files);
355         top->file_lock_mode = cpu_to_le32(o->file_lock_mode);
356         top->odirect = cpu_to_le32(o->odirect);
357         top->oatomic = cpu_to_le32(o->oatomic);
358         top->invalidate_cache = cpu_to_le32(o->invalidate_cache);
359         top->create_serialize = cpu_to_le32(o->create_serialize);
360         top->create_fsync = cpu_to_le32(o->create_fsync);
361         top->create_on_open = cpu_to_le32(o->create_on_open);
362         top->create_only = cpu_to_le32(o->create_only);
363         top->end_fsync = cpu_to_le32(o->end_fsync);
364         top->pre_read = cpu_to_le32(o->pre_read);
365         top->sync_io = cpu_to_le32(o->sync_io);
366         top->verify = cpu_to_le32(o->verify);
367         top->do_verify = cpu_to_le32(o->do_verify);
368         top->verifysort = cpu_to_le32(o->verifysort);
369         top->verifysort_nr = cpu_to_le32(o->verifysort_nr);
370         top->experimental_verify = cpu_to_le32(o->experimental_verify);
371         top->verify_state = cpu_to_le32(o->verify_state);
372         top->verify_interval = cpu_to_le32(o->verify_interval);
373         top->verify_offset = cpu_to_le32(o->verify_offset);
374         top->verify_pattern_bytes = cpu_to_le32(o->verify_pattern_bytes);
375         top->verify_fatal = cpu_to_le32(o->verify_fatal);
376         top->verify_dump = cpu_to_le32(o->verify_dump);
377         top->verify_async = cpu_to_le32(o->verify_async);
378         top->verify_batch = cpu_to_le32(o->verify_batch);
379         top->use_thread = cpu_to_le32(o->use_thread);
380         top->unlink = cpu_to_le32(o->unlink);
381         top->unlink_each_loop = cpu_to_le32(o->unlink_each_loop);
382         top->do_disk_util = cpu_to_le32(o->do_disk_util);
383         top->override_sync = cpu_to_le32(o->override_sync);
384         top->rand_repeatable = cpu_to_le32(o->rand_repeatable);
385         top->allrand_repeatable = cpu_to_le32(o->allrand_repeatable);
386         top->rand_seed = __cpu_to_le64(o->rand_seed);
387         top->log_avg_msec = cpu_to_le32(o->log_avg_msec);
388         top->log_max = cpu_to_le32(o->log_max);
389         top->log_offset = cpu_to_le32(o->log_offset);
390         top->log_gz = cpu_to_le32(o->log_gz);
391         top->log_gz_store = cpu_to_le32(o->log_gz_store);
392         top->log_unix_epoch = cpu_to_le32(o->log_unix_epoch);
393         top->norandommap = cpu_to_le32(o->norandommap);
394         top->softrandommap = cpu_to_le32(o->softrandommap);
395         top->bs_unaligned = cpu_to_le32(o->bs_unaligned);
396         top->fsync_on_close = cpu_to_le32(o->fsync_on_close);
397         top->bs_is_seq_rand = cpu_to_le32(o->bs_is_seq_rand);
398         top->random_distribution = cpu_to_le32(o->random_distribution);
399         top->exitall_error = cpu_to_le32(o->exitall_error);
400         top->zipf_theta.u.i = __cpu_to_le64(fio_double_to_uint64(o->zipf_theta.u.f));
401         top->pareto_h.u.i = __cpu_to_le64(fio_double_to_uint64(o->pareto_h.u.f));
402         top->gauss_dev.u.i = __cpu_to_le64(fio_double_to_uint64(o->gauss_dev.u.f));
403         top->random_generator = cpu_to_le32(o->random_generator);
404         top->hugepage_size = cpu_to_le32(o->hugepage_size);
405         top->rw_min_bs = cpu_to_le32(o->rw_min_bs);
406         top->thinktime = cpu_to_le32(o->thinktime);
407         top->thinktime_spin = cpu_to_le32(o->thinktime_spin);
408         top->thinktime_blocks = cpu_to_le32(o->thinktime_blocks);
409         top->fsync_blocks = cpu_to_le32(o->fsync_blocks);
410         top->fdatasync_blocks = cpu_to_le32(o->fdatasync_blocks);
411         top->barrier_blocks = cpu_to_le32(o->barrier_blocks);
412         top->overwrite = cpu_to_le32(o->overwrite);
413         top->bw_avg_time = cpu_to_le32(o->bw_avg_time);
414         top->iops_avg_time = cpu_to_le32(o->iops_avg_time);
415         top->loops = cpu_to_le32(o->loops);
416         top->mem_type = cpu_to_le32(o->mem_type);
417         top->mem_align = cpu_to_le32(o->mem_align);
418         top->max_latency = cpu_to_le32(o->max_latency);
419         top->stonewall = cpu_to_le32(o->stonewall);
420         top->new_group = cpu_to_le32(o->new_group);
421         top->numjobs = cpu_to_le32(o->numjobs);
422         top->cpus_allowed_policy = cpu_to_le32(o->cpus_allowed_policy);
423         top->iolog = cpu_to_le32(o->iolog);
424         top->rwmixcycle = cpu_to_le32(o->rwmixcycle);
425         top->nice = cpu_to_le32(o->nice);
426         top->ioprio = cpu_to_le32(o->ioprio);
427         top->ioprio_class = cpu_to_le32(o->ioprio_class);
428         top->file_service_type = cpu_to_le32(o->file_service_type);
429         top->group_reporting = cpu_to_le32(o->group_reporting);
430         top->stats = cpu_to_le32(o->stats);
431         top->fadvise_hint = cpu_to_le32(o->fadvise_hint);
432         top->fallocate_mode = cpu_to_le32(o->fallocate_mode);
433         top->zero_buffers = cpu_to_le32(o->zero_buffers);
434         top->refill_buffers = cpu_to_le32(o->refill_buffers);
435         top->scramble_buffers = cpu_to_le32(o->scramble_buffers);
436         top->buffer_pattern_bytes = cpu_to_le32(o->buffer_pattern_bytes);
437         top->time_based = cpu_to_le32(o->time_based);
438         top->disable_lat = cpu_to_le32(o->disable_lat);
439         top->disable_clat = cpu_to_le32(o->disable_clat);
440         top->disable_slat = cpu_to_le32(o->disable_slat);
441         top->disable_bw = cpu_to_le32(o->disable_bw);
442         top->unified_rw_rep = cpu_to_le32(o->unified_rw_rep);
443         top->gtod_reduce = cpu_to_le32(o->gtod_reduce);
444         top->gtod_cpu = cpu_to_le32(o->gtod_cpu);
445         top->clocksource = cpu_to_le32(o->clocksource);
446         top->no_stall = cpu_to_le32(o->no_stall);
447         top->trim_percentage = cpu_to_le32(o->trim_percentage);
448         top->trim_batch = cpu_to_le32(o->trim_batch);
449         top->trim_zero = cpu_to_le32(o->trim_zero);
450         top->clat_percentiles = cpu_to_le32(o->clat_percentiles);
451         top->percentile_precision = cpu_to_le32(o->percentile_precision);
452         top->continue_on_error = cpu_to_le32(o->continue_on_error);
453         top->cgroup_weight = cpu_to_le32(o->cgroup_weight);
454         top->cgroup_nodelete = cpu_to_le32(o->cgroup_nodelete);
455         top->uid = cpu_to_le32(o->uid);
456         top->gid = cpu_to_le32(o->gid);
457         top->flow_id = __cpu_to_le32(o->flow_id);
458         top->flow = __cpu_to_le32(o->flow);
459         top->flow_watermark = __cpu_to_le32(o->flow_watermark);
460         top->flow_sleep = cpu_to_le32(o->flow_sleep);
461         top->sync_file_range = cpu_to_le32(o->sync_file_range);
462         top->latency_target = __cpu_to_le64(o->latency_target);
463         top->latency_window = __cpu_to_le64(o->latency_window);
464         top->latency_percentile.u.i = __cpu_to_le64(fio_double_to_uint64(o->latency_percentile.u.f));
465         top->compress_percentage = cpu_to_le32(o->compress_percentage);
466         top->compress_chunk = cpu_to_le32(o->compress_chunk);
467         top->dedupe_percentage = cpu_to_le32(o->dedupe_percentage);
468         top->block_error_hist = cpu_to_le32(o->block_error_hist);
469         top->skip_bad = cpu_to_le32(o->skip_bad);
470         top->replay_align = cpu_to_le32(o->replay_align);
471         top->replay_scale = cpu_to_le32(o->replay_scale);
472         top->per_job_logs = cpu_to_le32(o->per_job_logs);
473         top->write_bw_log = cpu_to_le32(o->write_bw_log);
474         top->write_lat_log = cpu_to_le32(o->write_lat_log);
475         top->write_iops_log = cpu_to_le32(o->write_iops_log);
476         top->write_hist_log = cpu_to_le32(o->write_hist_log);
477
478         for (i = 0; i < DDIR_RWDIR_CNT; i++) {
479                 top->bs[i] = cpu_to_le32(o->bs[i]);
480                 top->ba[i] = cpu_to_le32(o->ba[i]);
481                 top->min_bs[i] = cpu_to_le32(o->min_bs[i]);
482                 top->max_bs[i] = cpu_to_le32(o->max_bs[i]);
483                 top->bssplit_nr[i] = cpu_to_le32(o->bssplit_nr[i]);
484
485                 if (o->bssplit_nr[i]) {
486                         unsigned int bssplit_nr = o->bssplit_nr[i];
487
488                         if (bssplit_nr > BSSPLIT_MAX) {
489                                 log_err("fio: BSSPLIT_MAX is too small\n");
490                                 bssplit_nr = BSSPLIT_MAX;
491                         }
492                         for (j = 0; j < bssplit_nr; j++) {
493                                 top->bssplit[i][j].bs = cpu_to_le32(o->bssplit[i][j].bs);
494                                 top->bssplit[i][j].perc = cpu_to_le32(o->bssplit[i][j].perc);
495                         }
496                 }
497
498                 top->zone_split_nr[i] = cpu_to_le32(o->zone_split_nr[i]);
499
500                 if (o->zone_split_nr[i]) {
501                         unsigned int zone_split_nr = o->zone_split_nr[i];
502
503                         if (zone_split_nr > ZONESPLIT_MAX) {
504                                 log_err("fio: ZONESPLIT_MAX is too small\n");
505                                 zone_split_nr = ZONESPLIT_MAX;
506                         }
507                         for (j = 0; j < zone_split_nr; j++) {
508                                 top->zone_split[i][j].access_perc = o->zone_split[i][j].access_perc;
509                                 top->zone_split[i][j].size_perc = o->zone_split[i][j].size_perc;
510                         }
511                 }
512
513                 top->rwmix[i] = cpu_to_le32(o->rwmix[i]);
514                 top->rate[i] = cpu_to_le64(o->rate[i]);
515                 top->ratemin[i] = cpu_to_le64(o->ratemin[i]);
516                 top->rate_iops[i] = cpu_to_le32(o->rate_iops[i]);
517                 top->rate_iops_min[i] = cpu_to_le32(o->rate_iops_min[i]);
518
519                 top->perc_rand[i] = cpu_to_le32(o->perc_rand[i]);
520         }
521
522         memcpy(top->verify_pattern, o->verify_pattern, MAX_PATTERN_SIZE);
523         memcpy(top->buffer_pattern, o->buffer_pattern, MAX_PATTERN_SIZE);
524
525         top->size = __cpu_to_le64(o->size);
526         top->io_size = __cpu_to_le64(o->io_size);
527         top->verify_backlog = __cpu_to_le64(o->verify_backlog);
528         top->start_delay = __cpu_to_le64(o->start_delay);
529         top->start_delay_high = __cpu_to_le64(o->start_delay_high);
530         top->timeout = __cpu_to_le64(o->timeout);
531         top->ramp_time = __cpu_to_le64(o->ramp_time);
532         top->ss_dur = __cpu_to_le64(top->ss_dur);
533         top->ss_ramp_time = __cpu_to_le64(top->ss_ramp_time);
534         top->ss_state = cpu_to_le32(top->ss_state);
535         top->ss_limit.u.i = __cpu_to_le64(fio_double_to_uint64(o->ss_limit.u.f));
536         top->zone_range = __cpu_to_le64(o->zone_range);
537         top->zone_size = __cpu_to_le64(o->zone_size);
538         top->zone_skip = __cpu_to_le64(o->zone_skip);
539         top->lockmem = __cpu_to_le64(o->lockmem);
540         top->ddir_seq_add = __cpu_to_le64(o->ddir_seq_add);
541         top->file_size_low = __cpu_to_le64(o->file_size_low);
542         top->file_size_high = __cpu_to_le64(o->file_size_high);
543         top->start_offset = __cpu_to_le64(o->start_offset);
544         top->trim_backlog = __cpu_to_le64(o->trim_backlog);
545         top->offset_increment = __cpu_to_le64(o->offset_increment);
546         top->number_ios = __cpu_to_le64(o->number_ios);
547         top->rate_process = cpu_to_le32(o->rate_process);
548
549         for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++)
550                 top->percentile_list[i].u.i = __cpu_to_le64(fio_double_to_uint64(o->percentile_list[i].u.f));
551 #if 0
552         uint8_t cpumask[FIO_TOP_STR_MAX];
553         uint8_t verify_cpumask[FIO_TOP_STR_MAX];
554         uint8_t log_gz_cpumask[FIO_TOP_STR_MAX];
555 #endif
556
557 }
558
559 /*
560  * Basic conversion test. We'd really need to fill in more of the options
561  * to have a thorough test. Even better, we should auto-generate the
562  * converter functions...
563  */
564 int fio_test_cconv(struct thread_options *__o)
565 {
566         struct thread_options o;
567         struct thread_options_pack top1, top2;
568
569         memset(&top1, 0, sizeof(top1));
570         memset(&top2, 0, sizeof(top2));
571
572         convert_thread_options_to_net(&top1, __o);
573         memset(&o, 0, sizeof(o));
574         convert_thread_options_to_cpu(&o, &top1);
575         convert_thread_options_to_net(&top2, &o);
576
577         free_thread_options_to_cpu(&o);
578
579         return memcmp(&top1, &top2, sizeof(top1));
580 }