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