Merge branch 'histogram-client-server' of https://github.com/cronburg/fio
[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->kb_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_limit = le64_to_cpu(top->io_limit);
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] = le32_to_cpu(top->rate[i]);
135                 o->ratemin[i] = le32_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->zone_range = le64_to_cpu(top->zone_range);
217         o->zone_size = le64_to_cpu(top->zone_size);
218         o->zone_skip = le64_to_cpu(top->zone_skip);
219         o->lockmem = le64_to_cpu(top->lockmem);
220         o->offset_increment = le64_to_cpu(top->offset_increment);
221         o->number_ios = le64_to_cpu(top->number_ios);
222
223         o->overwrite = le32_to_cpu(top->overwrite);
224         o->bw_avg_time = le32_to_cpu(top->bw_avg_time);
225         o->iops_avg_time = le32_to_cpu(top->iops_avg_time);
226         o->loops = le32_to_cpu(top->loops);
227         o->mem_type = le32_to_cpu(top->mem_type);
228         o->mem_align = le32_to_cpu(top->mem_align);
229         o->max_latency = le32_to_cpu(top->max_latency);
230         o->stonewall = le32_to_cpu(top->stonewall);
231         o->new_group = le32_to_cpu(top->new_group);
232         o->numjobs = le32_to_cpu(top->numjobs);
233         o->cpus_allowed_policy = le32_to_cpu(top->cpus_allowed_policy);
234         o->iolog = le32_to_cpu(top->iolog);
235         o->rwmixcycle = le32_to_cpu(top->rwmixcycle);
236         o->nice = le32_to_cpu(top->nice);
237         o->ioprio = le32_to_cpu(top->ioprio);
238         o->ioprio_class = le32_to_cpu(top->ioprio_class);
239         o->file_service_type = le32_to_cpu(top->file_service_type);
240         o->group_reporting = le32_to_cpu(top->group_reporting);
241         o->fadvise_hint = le32_to_cpu(top->fadvise_hint);
242         o->fallocate_mode = le32_to_cpu(top->fallocate_mode);
243         o->zero_buffers = le32_to_cpu(top->zero_buffers);
244         o->refill_buffers = le32_to_cpu(top->refill_buffers);
245         o->scramble_buffers = le32_to_cpu(top->scramble_buffers);
246         o->buffer_pattern_bytes = le32_to_cpu(top->buffer_pattern_bytes);
247         o->time_based = le32_to_cpu(top->time_based);
248         o->disable_lat = le32_to_cpu(top->disable_lat);
249         o->disable_clat = le32_to_cpu(top->disable_clat);
250         o->disable_slat = le32_to_cpu(top->disable_slat);
251         o->disable_bw = le32_to_cpu(top->disable_bw);
252         o->unified_rw_rep = le32_to_cpu(top->unified_rw_rep);
253         o->gtod_reduce = le32_to_cpu(top->gtod_reduce);
254         o->gtod_cpu = le32_to_cpu(top->gtod_cpu);
255         o->clocksource = le32_to_cpu(top->clocksource);
256         o->no_stall = le32_to_cpu(top->no_stall);
257         o->trim_percentage = le32_to_cpu(top->trim_percentage);
258         o->trim_batch = le32_to_cpu(top->trim_batch);
259         o->trim_zero = le32_to_cpu(top->trim_zero);
260         o->clat_percentiles = le32_to_cpu(top->clat_percentiles);
261         o->percentile_precision = le32_to_cpu(top->percentile_precision);
262         o->continue_on_error = le32_to_cpu(top->continue_on_error);
263         o->cgroup_weight = le32_to_cpu(top->cgroup_weight);
264         o->cgroup_nodelete = le32_to_cpu(top->cgroup_nodelete);
265         o->uid = le32_to_cpu(top->uid);
266         o->gid = le32_to_cpu(top->gid);
267         o->flow_id = __le32_to_cpu(top->flow_id);
268         o->flow = __le32_to_cpu(top->flow);
269         o->flow_watermark = __le32_to_cpu(top->flow_watermark);
270         o->flow_sleep = le32_to_cpu(top->flow_sleep);
271         o->sync_file_range = le32_to_cpu(top->sync_file_range);
272         o->latency_target = le64_to_cpu(top->latency_target);
273         o->latency_window = le64_to_cpu(top->latency_window);
274         o->latency_percentile.u.f = fio_uint64_to_double(le64_to_cpu(top->latency_percentile.u.i));
275         o->compress_percentage = le32_to_cpu(top->compress_percentage);
276         o->compress_chunk = le32_to_cpu(top->compress_chunk);
277         o->dedupe_percentage = le32_to_cpu(top->dedupe_percentage);
278         o->skip_bad = le32_to_cpu(top->skip_bad);
279         o->block_error_hist = le32_to_cpu(top->block_error_hist);
280         o->replay_align = le32_to_cpu(top->replay_align);
281         o->replay_scale = le32_to_cpu(top->replay_scale);
282         o->per_job_logs = le32_to_cpu(top->per_job_logs);
283
284         o->trim_backlog = le64_to_cpu(top->trim_backlog);
285         o->rate_process = le32_to_cpu(top->rate_process);
286
287         for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++)
288                 o->percentile_list[i].u.f = fio_uint64_to_double(le64_to_cpu(top->percentile_list[i].u.i));
289 #if 0
290         uint8_t cpumask[FIO_TOP_STR_MAX];
291         uint8_t verify_cpumask[FIO_TOP_STR_MAX];
292         uint8_t log_gz_cpumask[FIO_TOP_STR_MAX];
293 #endif
294 }
295
296 void convert_thread_options_to_net(struct thread_options_pack *top,
297                                    struct thread_options *o)
298 {
299         int i, j;
300
301         for (i = 0; i < NR_OPTS_SZ; i++)
302                 top->set_options[i] = cpu_to_le64(o->set_options[i]);
303
304         string_to_net(top->description, o->description);
305         string_to_net(top->name, o->name);
306         string_to_net(top->wait_for, o->wait_for);
307         string_to_net(top->directory, o->directory);
308         string_to_net(top->filename, o->filename);
309         string_to_net(top->filename_format, o->filename_format);
310         string_to_net(top->opendir, o->opendir);
311         string_to_net(top->ioengine, o->ioengine);
312         string_to_net(top->mmapfile, o->mmapfile);
313         string_to_net(top->read_iolog_file, o->read_iolog_file);
314         string_to_net(top->write_iolog_file, o->write_iolog_file);
315         string_to_net(top->bw_log_file, o->bw_log_file);
316         string_to_net(top->lat_log_file, o->lat_log_file);
317         string_to_net(top->iops_log_file, o->iops_log_file);
318         string_to_net(top->hist_log_file, o->hist_log_file);
319         string_to_net(top->replay_redirect, o->replay_redirect);
320         string_to_net(top->exec_prerun, o->exec_prerun);
321         string_to_net(top->exec_postrun, o->exec_postrun);
322         string_to_net(top->ioscheduler, o->ioscheduler);
323         string_to_net(top->profile, o->profile);
324         string_to_net(top->cgroup, o->cgroup);
325
326         top->allow_create = cpu_to_le32(o->allow_create);
327         top->allow_mounted_write = cpu_to_le32(o->allow_mounted_write);
328         top->td_ddir = cpu_to_le32(o->td_ddir);
329         top->rw_seq = cpu_to_le32(o->rw_seq);
330         top->kb_base = cpu_to_le32(o->kb_base);
331         top->unit_base = cpu_to_le32(o->kb_base);
332         top->ddir_seq_nr = cpu_to_le32(o->ddir_seq_nr);
333         top->iodepth = cpu_to_le32(o->iodepth);
334         top->iodepth_low = cpu_to_le32(o->iodepth_low);
335         top->iodepth_batch = cpu_to_le32(o->iodepth_batch);
336         top->iodepth_batch_complete_min = cpu_to_le32(o->iodepth_batch_complete_min);
337         top->iodepth_batch_complete_max = cpu_to_le32(o->iodepth_batch_complete_max);
338         top->size_percent = cpu_to_le32(o->size_percent);
339         top->fill_device = cpu_to_le32(o->fill_device);
340         top->file_append = cpu_to_le32(o->file_append);
341         top->ratecycle = cpu_to_le32(o->ratecycle);
342         top->io_submit_mode = cpu_to_le32(o->io_submit_mode);
343         top->nr_files = cpu_to_le32(o->nr_files);
344         top->unique_filename = cpu_to_le32(o->unique_filename);
345         top->open_files = cpu_to_le32(o->open_files);
346         top->file_lock_mode = cpu_to_le32(o->file_lock_mode);
347         top->odirect = cpu_to_le32(o->odirect);
348         top->oatomic = cpu_to_le32(o->oatomic);
349         top->invalidate_cache = cpu_to_le32(o->invalidate_cache);
350         top->create_serialize = cpu_to_le32(o->create_serialize);
351         top->create_fsync = cpu_to_le32(o->create_fsync);
352         top->create_on_open = cpu_to_le32(o->create_on_open);
353         top->create_only = cpu_to_le32(o->create_only);
354         top->end_fsync = cpu_to_le32(o->end_fsync);
355         top->pre_read = cpu_to_le32(o->pre_read);
356         top->sync_io = cpu_to_le32(o->sync_io);
357         top->verify = cpu_to_le32(o->verify);
358         top->do_verify = cpu_to_le32(o->do_verify);
359         top->verifysort = cpu_to_le32(o->verifysort);
360         top->verifysort_nr = cpu_to_le32(o->verifysort_nr);
361         top->experimental_verify = cpu_to_le32(o->experimental_verify);
362         top->verify_state = cpu_to_le32(o->verify_state);
363         top->verify_interval = cpu_to_le32(o->verify_interval);
364         top->verify_offset = cpu_to_le32(o->verify_offset);
365         top->verify_pattern_bytes = cpu_to_le32(o->verify_pattern_bytes);
366         top->verify_fatal = cpu_to_le32(o->verify_fatal);
367         top->verify_dump = cpu_to_le32(o->verify_dump);
368         top->verify_async = cpu_to_le32(o->verify_async);
369         top->verify_batch = cpu_to_le32(o->verify_batch);
370         top->use_thread = cpu_to_le32(o->use_thread);
371         top->unlink = cpu_to_le32(o->unlink);
372         top->unlink_each_loop = cpu_to_le32(o->unlink_each_loop);
373         top->do_disk_util = cpu_to_le32(o->do_disk_util);
374         top->override_sync = cpu_to_le32(o->override_sync);
375         top->rand_repeatable = cpu_to_le32(o->rand_repeatable);
376         top->allrand_repeatable = cpu_to_le32(o->allrand_repeatable);
377         top->rand_seed = __cpu_to_le64(o->rand_seed);
378         top->log_avg_msec = cpu_to_le32(o->log_avg_msec);
379         top->log_max = cpu_to_le32(o->log_max);
380         top->log_offset = cpu_to_le32(o->log_offset);
381         top->log_gz = cpu_to_le32(o->log_gz);
382         top->log_gz_store = cpu_to_le32(o->log_gz_store);
383         top->log_unix_epoch = cpu_to_le32(o->log_unix_epoch);
384         top->norandommap = cpu_to_le32(o->norandommap);
385         top->softrandommap = cpu_to_le32(o->softrandommap);
386         top->bs_unaligned = cpu_to_le32(o->bs_unaligned);
387         top->fsync_on_close = cpu_to_le32(o->fsync_on_close);
388         top->bs_is_seq_rand = cpu_to_le32(o->bs_is_seq_rand);
389         top->random_distribution = cpu_to_le32(o->random_distribution);
390         top->exitall_error = cpu_to_le32(o->exitall_error);
391         top->zipf_theta.u.i = __cpu_to_le64(fio_double_to_uint64(o->zipf_theta.u.f));
392         top->pareto_h.u.i = __cpu_to_le64(fio_double_to_uint64(o->pareto_h.u.f));
393         top->gauss_dev.u.i = __cpu_to_le64(fio_double_to_uint64(o->gauss_dev.u.f));
394         top->random_generator = cpu_to_le32(o->random_generator);
395         top->hugepage_size = cpu_to_le32(o->hugepage_size);
396         top->rw_min_bs = cpu_to_le32(o->rw_min_bs);
397         top->thinktime = cpu_to_le32(o->thinktime);
398         top->thinktime_spin = cpu_to_le32(o->thinktime_spin);
399         top->thinktime_blocks = cpu_to_le32(o->thinktime_blocks);
400         top->fsync_blocks = cpu_to_le32(o->fsync_blocks);
401         top->fdatasync_blocks = cpu_to_le32(o->fdatasync_blocks);
402         top->barrier_blocks = cpu_to_le32(o->barrier_blocks);
403         top->overwrite = cpu_to_le32(o->overwrite);
404         top->bw_avg_time = cpu_to_le32(o->bw_avg_time);
405         top->iops_avg_time = cpu_to_le32(o->iops_avg_time);
406         top->loops = cpu_to_le32(o->loops);
407         top->mem_type = cpu_to_le32(o->mem_type);
408         top->mem_align = cpu_to_le32(o->mem_align);
409         top->max_latency = cpu_to_le32(o->max_latency);
410         top->stonewall = cpu_to_le32(o->stonewall);
411         top->new_group = cpu_to_le32(o->new_group);
412         top->numjobs = cpu_to_le32(o->numjobs);
413         top->cpus_allowed_policy = cpu_to_le32(o->cpus_allowed_policy);
414         top->iolog = cpu_to_le32(o->iolog);
415         top->rwmixcycle = cpu_to_le32(o->rwmixcycle);
416         top->nice = cpu_to_le32(o->nice);
417         top->ioprio = cpu_to_le32(o->ioprio);
418         top->ioprio_class = cpu_to_le32(o->ioprio_class);
419         top->file_service_type = cpu_to_le32(o->file_service_type);
420         top->group_reporting = cpu_to_le32(o->group_reporting);
421         top->fadvise_hint = cpu_to_le32(o->fadvise_hint);
422         top->fallocate_mode = cpu_to_le32(o->fallocate_mode);
423         top->zero_buffers = cpu_to_le32(o->zero_buffers);
424         top->refill_buffers = cpu_to_le32(o->refill_buffers);
425         top->scramble_buffers = cpu_to_le32(o->scramble_buffers);
426         top->buffer_pattern_bytes = cpu_to_le32(o->buffer_pattern_bytes);
427         top->time_based = cpu_to_le32(o->time_based);
428         top->disable_lat = cpu_to_le32(o->disable_lat);
429         top->disable_clat = cpu_to_le32(o->disable_clat);
430         top->disable_slat = cpu_to_le32(o->disable_slat);
431         top->disable_bw = cpu_to_le32(o->disable_bw);
432         top->unified_rw_rep = cpu_to_le32(o->unified_rw_rep);
433         top->gtod_reduce = cpu_to_le32(o->gtod_reduce);
434         top->gtod_cpu = cpu_to_le32(o->gtod_cpu);
435         top->clocksource = cpu_to_le32(o->clocksource);
436         top->no_stall = cpu_to_le32(o->no_stall);
437         top->trim_percentage = cpu_to_le32(o->trim_percentage);
438         top->trim_batch = cpu_to_le32(o->trim_batch);
439         top->trim_zero = cpu_to_le32(o->trim_zero);
440         top->clat_percentiles = cpu_to_le32(o->clat_percentiles);
441         top->percentile_precision = cpu_to_le32(o->percentile_precision);
442         top->continue_on_error = cpu_to_le32(o->continue_on_error);
443         top->cgroup_weight = cpu_to_le32(o->cgroup_weight);
444         top->cgroup_nodelete = cpu_to_le32(o->cgroup_nodelete);
445         top->uid = cpu_to_le32(o->uid);
446         top->gid = cpu_to_le32(o->gid);
447         top->flow_id = __cpu_to_le32(o->flow_id);
448         top->flow = __cpu_to_le32(o->flow);
449         top->flow_watermark = __cpu_to_le32(o->flow_watermark);
450         top->flow_sleep = cpu_to_le32(o->flow_sleep);
451         top->sync_file_range = cpu_to_le32(o->sync_file_range);
452         top->latency_target = __cpu_to_le64(o->latency_target);
453         top->latency_window = __cpu_to_le64(o->latency_window);
454         top->latency_percentile.u.i = __cpu_to_le64(fio_double_to_uint64(o->latency_percentile.u.f));
455         top->compress_percentage = cpu_to_le32(o->compress_percentage);
456         top->compress_chunk = cpu_to_le32(o->compress_chunk);
457         top->dedupe_percentage = cpu_to_le32(o->dedupe_percentage);
458         top->block_error_hist = cpu_to_le32(o->block_error_hist);
459         top->skip_bad = cpu_to_le32(o->skip_bad);
460         top->replay_align = cpu_to_le32(o->replay_align);
461         top->replay_scale = cpu_to_le32(o->replay_scale);
462         top->per_job_logs = cpu_to_le32(o->per_job_logs);
463
464         for (i = 0; i < DDIR_RWDIR_CNT; i++) {
465                 top->bs[i] = cpu_to_le32(o->bs[i]);
466                 top->ba[i] = cpu_to_le32(o->ba[i]);
467                 top->min_bs[i] = cpu_to_le32(o->min_bs[i]);
468                 top->max_bs[i] = cpu_to_le32(o->max_bs[i]);
469                 top->bssplit_nr[i] = cpu_to_le32(o->bssplit_nr[i]);
470
471                 if (o->bssplit_nr[i]) {
472                         unsigned int bssplit_nr = o->bssplit_nr[i];
473
474                         if (bssplit_nr > BSSPLIT_MAX) {
475                                 log_err("fio: BSSPLIT_MAX is too small\n");
476                                 bssplit_nr = BSSPLIT_MAX;
477                         }
478                         for (j = 0; j < bssplit_nr; j++) {
479                                 top->bssplit[i][j].bs = cpu_to_le32(o->bssplit[i][j].bs);
480                                 top->bssplit[i][j].perc = cpu_to_le32(o->bssplit[i][j].perc);
481                         }
482                 }
483
484                 top->zone_split_nr[i] = cpu_to_le32(o->zone_split_nr[i]);
485
486                 if (o->zone_split_nr[i]) {
487                         unsigned int zone_split_nr = o->zone_split_nr[i];
488
489                         if (zone_split_nr > ZONESPLIT_MAX) {
490                                 log_err("fio: ZONESPLIT_MAX is too small\n");
491                                 zone_split_nr = ZONESPLIT_MAX;
492                         }
493                         for (j = 0; j < zone_split_nr; j++) {
494                                 top->zone_split[i][j].access_perc = o->zone_split[i][j].access_perc;
495                                 top->zone_split[i][j].size_perc = o->zone_split[i][j].size_perc;
496                         }
497                 }
498
499                 top->rwmix[i] = cpu_to_le32(o->rwmix[i]);
500                 top->rate[i] = cpu_to_le32(o->rate[i]);
501                 top->ratemin[i] = cpu_to_le32(o->ratemin[i]);
502                 top->rate_iops[i] = cpu_to_le32(o->rate_iops[i]);
503                 top->rate_iops_min[i] = cpu_to_le32(o->rate_iops_min[i]);
504
505                 top->perc_rand[i] = cpu_to_le32(o->perc_rand[i]);
506         }
507
508         memcpy(top->verify_pattern, o->verify_pattern, MAX_PATTERN_SIZE);
509         memcpy(top->buffer_pattern, o->buffer_pattern, MAX_PATTERN_SIZE);
510
511         top->size = __cpu_to_le64(o->size);
512         top->io_limit = __cpu_to_le64(o->io_limit);
513         top->verify_backlog = __cpu_to_le64(o->verify_backlog);
514         top->start_delay = __cpu_to_le64(o->start_delay);
515         top->start_delay_high = __cpu_to_le64(o->start_delay_high);
516         top->timeout = __cpu_to_le64(o->timeout);
517         top->ramp_time = __cpu_to_le64(o->ramp_time);
518         top->zone_range = __cpu_to_le64(o->zone_range);
519         top->zone_size = __cpu_to_le64(o->zone_size);
520         top->zone_skip = __cpu_to_le64(o->zone_skip);
521         top->lockmem = __cpu_to_le64(o->lockmem);
522         top->ddir_seq_add = __cpu_to_le64(o->ddir_seq_add);
523         top->file_size_low = __cpu_to_le64(o->file_size_low);
524         top->file_size_high = __cpu_to_le64(o->file_size_high);
525         top->start_offset = __cpu_to_le64(o->start_offset);
526         top->trim_backlog = __cpu_to_le64(o->trim_backlog);
527         top->offset_increment = __cpu_to_le64(o->offset_increment);
528         top->number_ios = __cpu_to_le64(o->number_ios);
529         top->rate_process = cpu_to_le32(o->rate_process);
530
531         for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++)
532                 top->percentile_list[i].u.i = __cpu_to_le64(fio_double_to_uint64(o->percentile_list[i].u.f));
533 #if 0
534         uint8_t cpumask[FIO_TOP_STR_MAX];
535         uint8_t verify_cpumask[FIO_TOP_STR_MAX];
536         uint8_t log_gz_cpumask[FIO_TOP_STR_MAX];
537 #endif
538
539 }
540
541 /*
542  * Basic conversion test. We'd really need to fill in more of the options
543  * to have a thorough test. Even better, we should auto-generate the
544  * converter functions...
545  */
546 int fio_test_cconv(struct thread_options *__o)
547 {
548         struct thread_options o;
549         struct thread_options_pack top1, top2;
550
551         memset(&top1, 0, sizeof(top1));
552         memset(&top2, 0, sizeof(top2));
553
554         convert_thread_options_to_net(&top1, __o);
555         memset(&o, 0, sizeof(o));
556         convert_thread_options_to_cpu(&o, &top1);
557         convert_thread_options_to_net(&top2, &o);
558
559         free_thread_options_to_cpu(&o);
560
561         return memcmp(&top1, &top2, sizeof(top1));
562 }