client/server: don't reset ipv6 expectations
[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)
14 {
15         if (src)
16                 strcpy((char *) dst, src);
17         else
18                 dst[0] = '\0';
19 }
20
21 void convert_thread_options_to_cpu(struct thread_options *o,
22                                    struct thread_options_pack *top)
23 {
24         int i, j;
25
26         string_to_cpu(&o->description, top->description);
27         string_to_cpu(&o->name, top->name);
28         string_to_cpu(&o->directory, top->directory);
29         string_to_cpu(&o->filename, top->filename);
30         string_to_cpu(&o->filename_format, top->filename_format);
31         string_to_cpu(&o->opendir, top->opendir);
32         string_to_cpu(&o->ioengine, top->ioengine);
33         string_to_cpu(&o->mmapfile, top->mmapfile);
34         string_to_cpu(&o->read_iolog_file, top->read_iolog_file);
35         string_to_cpu(&o->write_iolog_file, top->write_iolog_file);
36         string_to_cpu(&o->bw_log_file, top->bw_log_file);
37         string_to_cpu(&o->lat_log_file, top->lat_log_file);
38         string_to_cpu(&o->iops_log_file, top->iops_log_file);
39         string_to_cpu(&o->replay_redirect, top->replay_redirect);
40         string_to_cpu(&o->exec_prerun, top->exec_prerun);
41         string_to_cpu(&o->exec_postrun, top->exec_postrun);
42         string_to_cpu(&o->ioscheduler, top->ioscheduler);
43         string_to_cpu(&o->profile, top->profile);
44         string_to_cpu(&o->cgroup, top->cgroup);
45
46         o->td_ddir = le32_to_cpu(top->td_ddir);
47         o->rw_seq = le32_to_cpu(top->rw_seq);
48         o->kb_base = le32_to_cpu(top->kb_base);
49         o->unit_base = le32_to_cpu(top->kb_base);
50         o->ddir_seq_nr = le32_to_cpu(top->ddir_seq_nr);
51         o->ddir_seq_add = le64_to_cpu(top->ddir_seq_add);
52         o->iodepth = le32_to_cpu(top->iodepth);
53         o->iodepth_low = le32_to_cpu(top->iodepth_low);
54         o->iodepth_batch = le32_to_cpu(top->iodepth_batch);
55         o->iodepth_batch_complete = le32_to_cpu(top->iodepth_batch_complete);
56         o->size = le64_to_cpu(top->size);
57         o->size_percent = le32_to_cpu(top->size_percent);
58         o->fill_device = le32_to_cpu(top->fill_device);
59         o->file_size_low = le64_to_cpu(top->file_size_low);
60         o->file_size_high = le64_to_cpu(top->file_size_high);
61         o->start_offset = le64_to_cpu(top->start_offset);
62
63         for (i = 0; i < DDIR_RWDIR_CNT; i++) {
64                 o->bs[i] = le32_to_cpu(top->bs[i]);
65                 o->ba[i] = le32_to_cpu(top->ba[i]);
66                 o->min_bs[i] = le32_to_cpu(top->min_bs[i]);
67                 o->max_bs[i] = le32_to_cpu(top->max_bs[i]);
68                 o->bssplit_nr[i] = le32_to_cpu(top->bssplit_nr[i]);
69
70                 if (o->bssplit_nr[i]) {
71                         o->bssplit[i] = malloc(o->bssplit_nr[i] * sizeof(struct bssplit));
72                         for (j = 0; j < o->bssplit_nr[i]; j++) {
73                                 o->bssplit[i][j].bs = le32_to_cpu(top->bssplit[i][j].bs);
74                                 o->bssplit[i][j].perc = le32_to_cpu(top->bssplit[i][j].perc);
75                         }
76                 }
77
78                 o->rwmix[i] = le32_to_cpu(top->rwmix[i]);
79                 o->rate[i] = le32_to_cpu(top->rate[i]);
80                 o->ratemin[i] = le32_to_cpu(top->ratemin[i]);
81                 o->rate_iops[i] = le32_to_cpu(top->rate_iops[i]);
82                 o->rate_iops_min[i] = le32_to_cpu(top->rate_iops_min[i]);
83
84                 o->perc_rand[i] = le32_to_cpu(top->perc_rand[i]);
85         }
86
87         o->ratecycle = le32_to_cpu(top->ratecycle);
88         o->nr_files = le32_to_cpu(top->nr_files);
89         o->open_files = le32_to_cpu(top->open_files);
90         o->file_lock_mode = le32_to_cpu(top->file_lock_mode);
91         o->odirect = le32_to_cpu(top->odirect);
92         o->oatomic = le32_to_cpu(top->oatomic);
93         o->invalidate_cache = le32_to_cpu(top->invalidate_cache);
94         o->create_serialize = le32_to_cpu(top->create_serialize);
95         o->create_fsync = le32_to_cpu(top->create_fsync);
96         o->create_on_open = le32_to_cpu(top->create_on_open);
97         o->create_only = le32_to_cpu(top->create_only);
98         o->end_fsync = le32_to_cpu(top->end_fsync);
99         o->pre_read = le32_to_cpu(top->pre_read);
100         o->sync_io = le32_to_cpu(top->sync_io);
101         o->verify = le32_to_cpu(top->verify);
102         o->do_verify = le32_to_cpu(top->do_verify);
103         o->verifysort = le32_to_cpu(top->verifysort);
104         o->verifysort_nr = le32_to_cpu(top->verifysort_nr);
105         o->experimental_verify = le32_to_cpu(top->experimental_verify);
106         o->verify_interval = le32_to_cpu(top->verify_interval);
107         o->verify_offset = le32_to_cpu(top->verify_offset);
108
109         memcpy(o->verify_pattern, top->verify_pattern, MAX_PATTERN_SIZE);
110         memcpy(o->buffer_pattern, top->buffer_pattern, MAX_PATTERN_SIZE);
111
112         o->verify_pattern_bytes = le32_to_cpu(top->verify_pattern_bytes);
113         o->verify_fatal = le32_to_cpu(top->verify_fatal);
114         o->verify_dump = le32_to_cpu(top->verify_dump);
115         o->verify_async = le32_to_cpu(top->verify_async);
116         o->verify_batch = le32_to_cpu(top->verify_batch);
117         o->use_thread = le32_to_cpu(top->use_thread);
118         o->unlink = le32_to_cpu(top->unlink);
119         o->do_disk_util = le32_to_cpu(top->do_disk_util);
120         o->override_sync = le32_to_cpu(top->override_sync);
121         o->rand_repeatable = le32_to_cpu(top->rand_repeatable);
122         o->rand_seed = le32_to_cpu(top->rand_seed);
123         o->use_os_rand = le32_to_cpu(top->use_os_rand);
124         o->log_avg_msec = le32_to_cpu(top->log_avg_msec);
125         o->norandommap = le32_to_cpu(top->norandommap);
126         o->softrandommap = le32_to_cpu(top->softrandommap);
127         o->bs_unaligned = le32_to_cpu(top->bs_unaligned);
128         o->fsync_on_close = le32_to_cpu(top->fsync_on_close);
129         o->bs_is_seq_rand = le32_to_cpu(top->bs_is_seq_rand);
130         o->random_distribution = le32_to_cpu(top->random_distribution);
131         o->zipf_theta.u.f = fio_uint64_to_double(le64_to_cpu(top->zipf_theta.u.i));
132         o->pareto_h.u.f = fio_uint64_to_double(le64_to_cpu(top->pareto_h.u.i));
133         o->random_generator = le32_to_cpu(top->random_generator);
134         o->hugepage_size = le32_to_cpu(top->hugepage_size);
135         o->rw_min_bs = le32_to_cpu(top->rw_min_bs);
136         o->thinktime = le32_to_cpu(top->thinktime);
137         o->thinktime_spin = le32_to_cpu(top->thinktime_spin);
138         o->thinktime_blocks = le32_to_cpu(top->thinktime_blocks);
139         o->fsync_blocks = le32_to_cpu(top->fsync_blocks);
140         o->fdatasync_blocks = le32_to_cpu(top->fdatasync_blocks);
141         o->barrier_blocks = le32_to_cpu(top->barrier_blocks);
142
143         o->verify_backlog = le64_to_cpu(top->verify_backlog);
144         o->start_delay = le64_to_cpu(top->start_delay);
145         o->timeout = le64_to_cpu(top->timeout);
146         o->ramp_time = le64_to_cpu(top->ramp_time);
147         o->zone_range = le64_to_cpu(top->zone_range);
148         o->zone_size = le64_to_cpu(top->zone_size);
149         o->zone_skip = le64_to_cpu(top->zone_skip);
150         o->lockmem = le64_to_cpu(top->lockmem);
151         o->offset_increment = le64_to_cpu(top->offset_increment);
152         o->number_ios = le64_to_cpu(top->number_ios);
153
154         o->overwrite = le32_to_cpu(top->overwrite);
155         o->bw_avg_time = le32_to_cpu(top->bw_avg_time);
156         o->iops_avg_time = le32_to_cpu(top->iops_avg_time);
157         o->loops = le32_to_cpu(top->loops);
158         o->mem_type = le32_to_cpu(top->mem_type);
159         o->mem_align = le32_to_cpu(top->mem_align);
160         o->max_latency = le32_to_cpu(top->max_latency);
161         o->stonewall = le32_to_cpu(top->stonewall);
162         o->new_group = le32_to_cpu(top->new_group);
163         o->numjobs = le32_to_cpu(top->numjobs);
164         o->cpumask_set = le32_to_cpu(top->cpumask_set);
165         o->verify_cpumask_set = le32_to_cpu(top->verify_cpumask_set);
166         o->iolog = le32_to_cpu(top->iolog);
167         o->rwmixcycle = le32_to_cpu(top->rwmixcycle);
168         o->nice = le32_to_cpu(top->nice);
169         o->ioprio = le32_to_cpu(top->ioprio);
170         o->ioprio_class = le32_to_cpu(top->ioprio_class);
171         o->file_service_type = le32_to_cpu(top->file_service_type);
172         o->group_reporting = le32_to_cpu(top->group_reporting);
173         o->fadvise_hint = le32_to_cpu(top->fadvise_hint);
174         o->fallocate_mode = le32_to_cpu(top->fallocate_mode);
175         o->zero_buffers = le32_to_cpu(top->zero_buffers);
176         o->refill_buffers = le32_to_cpu(top->refill_buffers);
177         o->scramble_buffers = le32_to_cpu(top->scramble_buffers);
178         o->buffer_pattern_bytes = le32_to_cpu(top->buffer_pattern_bytes);
179         o->time_based = le32_to_cpu(top->time_based);
180         o->disable_lat = le32_to_cpu(top->disable_lat);
181         o->disable_clat = le32_to_cpu(top->disable_clat);
182         o->disable_slat = le32_to_cpu(top->disable_slat);
183         o->disable_bw = le32_to_cpu(top->disable_bw);
184         o->unified_rw_rep = le32_to_cpu(top->unified_rw_rep);
185         o->gtod_reduce = le32_to_cpu(top->gtod_reduce);
186         o->gtod_cpu = le32_to_cpu(top->gtod_cpu);
187         o->gtod_offload = le32_to_cpu(top->gtod_offload);
188         o->clocksource = le32_to_cpu(top->clocksource);
189         o->no_stall = le32_to_cpu(top->no_stall);
190         o->trim_percentage = le32_to_cpu(top->trim_percentage);
191         o->trim_batch = le32_to_cpu(top->trim_batch);
192         o->trim_zero = le32_to_cpu(top->trim_zero);
193         o->clat_percentiles = le32_to_cpu(top->clat_percentiles);
194         o->percentile_precision = le32_to_cpu(top->percentile_precision);
195         o->continue_on_error = le32_to_cpu(top->continue_on_error);
196         o->cgroup_weight = le32_to_cpu(top->cgroup_weight);
197         o->cgroup_nodelete = le32_to_cpu(top->cgroup_nodelete);
198         o->uid = le32_to_cpu(top->uid);
199         o->gid = le32_to_cpu(top->gid);
200         o->flow_id = __le32_to_cpu(top->flow_id);
201         o->flow = __le32_to_cpu(top->flow);
202         o->flow_watermark = __le32_to_cpu(top->flow_watermark);
203         o->flow_sleep = le32_to_cpu(top->flow_sleep);
204         o->sync_file_range = le32_to_cpu(top->sync_file_range);
205         o->latency_target = le64_to_cpu(top->latency_target);
206         o->latency_window = le64_to_cpu(top->latency_window);
207         o->latency_percentile.u.f = fio_uint64_to_double(le64_to_cpu(top->latency_percentile.u.i));
208         o->compress_percentage = le32_to_cpu(top->compress_percentage);
209         o->compress_chunk = le32_to_cpu(top->compress_chunk);
210
211         o->trim_backlog = le64_to_cpu(top->trim_backlog);
212
213         for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++)
214                 o->percentile_list[i].u.f = fio_uint64_to_double(le64_to_cpu(top->percentile_list[i].u.i));
215 #if 0
216         uint8_t cpumask[FIO_TOP_STR_MAX];
217         uint8_t verify_cpumask[FIO_TOP_STR_MAX];
218 #endif
219 }
220
221 void convert_thread_options_to_net(struct thread_options_pack *top,
222                                    struct thread_options *o)
223 {
224         int i, j;
225
226         string_to_net(top->description, o->description);
227         string_to_net(top->name, o->name);
228         string_to_net(top->directory, o->directory);
229         string_to_net(top->filename, o->filename);
230         string_to_net(top->filename_format, o->filename_format);
231         string_to_net(top->opendir, o->opendir);
232         string_to_net(top->ioengine, o->ioengine);
233         string_to_net(top->mmapfile, o->mmapfile);
234         string_to_net(top->read_iolog_file, o->read_iolog_file);
235         string_to_net(top->write_iolog_file, o->write_iolog_file);
236         string_to_net(top->bw_log_file, o->bw_log_file);
237         string_to_net(top->lat_log_file, o->lat_log_file);
238         string_to_net(top->iops_log_file, o->iops_log_file);
239         string_to_net(top->replay_redirect, o->replay_redirect);
240         string_to_net(top->exec_prerun, o->exec_prerun);
241         string_to_net(top->exec_postrun, o->exec_postrun);
242         string_to_net(top->ioscheduler, o->ioscheduler);
243         string_to_net(top->profile, o->profile);
244         string_to_net(top->cgroup, o->cgroup);
245
246         top->td_ddir = cpu_to_le32(o->td_ddir);
247         top->rw_seq = cpu_to_le32(o->rw_seq);
248         top->kb_base = cpu_to_le32(o->kb_base);
249         top->unit_base = cpu_to_le32(o->kb_base);
250         top->ddir_seq_nr = cpu_to_le32(o->ddir_seq_nr);
251         top->iodepth = cpu_to_le32(o->iodepth);
252         top->iodepth_low = cpu_to_le32(o->iodepth_low);
253         top->iodepth_batch = cpu_to_le32(o->iodepth_batch);
254         top->iodepth_batch_complete = cpu_to_le32(o->iodepth_batch_complete);
255         top->size_percent = cpu_to_le32(o->size_percent);
256         top->fill_device = cpu_to_le32(o->fill_device);
257         top->ratecycle = cpu_to_le32(o->ratecycle);
258         top->nr_files = cpu_to_le32(o->nr_files);
259         top->open_files = cpu_to_le32(o->open_files);
260         top->file_lock_mode = cpu_to_le32(o->file_lock_mode);
261         top->odirect = cpu_to_le32(o->odirect);
262         top->oatomic = cpu_to_le32(o->oatomic);
263         top->invalidate_cache = cpu_to_le32(o->invalidate_cache);
264         top->create_serialize = cpu_to_le32(o->create_serialize);
265         top->create_fsync = cpu_to_le32(o->create_fsync);
266         top->create_on_open = cpu_to_le32(o->create_on_open);
267         top->create_only = cpu_to_le32(o->create_only);
268         top->end_fsync = cpu_to_le32(o->end_fsync);
269         top->pre_read = cpu_to_le32(o->pre_read);
270         top->sync_io = cpu_to_le32(o->sync_io);
271         top->verify = cpu_to_le32(o->verify);
272         top->do_verify = cpu_to_le32(o->do_verify);
273         top->verifysort = cpu_to_le32(o->verifysort);
274         top->verifysort_nr = cpu_to_le32(o->verifysort_nr);
275         top->experimental_verify = cpu_to_le32(o->experimental_verify);
276         top->verify_interval = cpu_to_le32(o->verify_interval);
277         top->verify_offset = cpu_to_le32(o->verify_offset);
278         top->verify_pattern_bytes = cpu_to_le32(o->verify_pattern_bytes);
279         top->verify_fatal = cpu_to_le32(o->verify_fatal);
280         top->verify_dump = cpu_to_le32(o->verify_dump);
281         top->verify_async = cpu_to_le32(o->verify_async);
282         top->verify_batch = cpu_to_le32(o->verify_batch);
283         top->use_thread = cpu_to_le32(o->use_thread);
284         top->unlink = cpu_to_le32(o->unlink);
285         top->do_disk_util = cpu_to_le32(o->do_disk_util);
286         top->override_sync = cpu_to_le32(o->override_sync);
287         top->rand_repeatable = cpu_to_le32(o->rand_repeatable);
288         top->rand_seed = cpu_to_le32(o->rand_seed);
289         top->use_os_rand = cpu_to_le32(o->use_os_rand);
290         top->log_avg_msec = cpu_to_le32(o->log_avg_msec);
291         top->norandommap = cpu_to_le32(o->norandommap);
292         top->softrandommap = cpu_to_le32(o->softrandommap);
293         top->bs_unaligned = cpu_to_le32(o->bs_unaligned);
294         top->fsync_on_close = cpu_to_le32(o->fsync_on_close);
295         top->bs_is_seq_rand = cpu_to_le32(o->bs_is_seq_rand);
296         top->random_distribution = cpu_to_le32(o->random_distribution);
297         top->zipf_theta.u.i = __cpu_to_le64(fio_double_to_uint64(o->zipf_theta.u.f));
298         top->pareto_h.u.i = __cpu_to_le64(fio_double_to_uint64(o->pareto_h.u.f));
299         top->random_generator = cpu_to_le32(o->random_generator);
300         top->hugepage_size = cpu_to_le32(o->hugepage_size);
301         top->rw_min_bs = cpu_to_le32(o->rw_min_bs);
302         top->thinktime = cpu_to_le32(o->thinktime);
303         top->thinktime_spin = cpu_to_le32(o->thinktime_spin);
304         top->thinktime_blocks = cpu_to_le32(o->thinktime_blocks);
305         top->fsync_blocks = cpu_to_le32(o->fsync_blocks);
306         top->fdatasync_blocks = cpu_to_le32(o->fdatasync_blocks);
307         top->barrier_blocks = cpu_to_le32(o->barrier_blocks);
308         top->overwrite = cpu_to_le32(o->overwrite);
309         top->bw_avg_time = cpu_to_le32(o->bw_avg_time);
310         top->iops_avg_time = cpu_to_le32(o->iops_avg_time);
311         top->loops = cpu_to_le32(o->loops);
312         top->mem_type = cpu_to_le32(o->mem_type);
313         top->mem_align = cpu_to_le32(o->mem_align);
314         top->max_latency = cpu_to_le32(o->max_latency);
315         top->stonewall = cpu_to_le32(o->stonewall);
316         top->new_group = cpu_to_le32(o->new_group);
317         top->numjobs = cpu_to_le32(o->numjobs);
318         top->cpumask_set = cpu_to_le32(o->cpumask_set);
319         top->verify_cpumask_set = cpu_to_le32(o->verify_cpumask_set);
320         top->iolog = cpu_to_le32(o->iolog);
321         top->rwmixcycle = cpu_to_le32(o->rwmixcycle);
322         top->nice = cpu_to_le32(o->nice);
323         top->ioprio = cpu_to_le32(o->ioprio);
324         top->ioprio_class = cpu_to_le32(o->ioprio_class);
325         top->file_service_type = cpu_to_le32(o->file_service_type);
326         top->group_reporting = cpu_to_le32(o->group_reporting);
327         top->fadvise_hint = cpu_to_le32(o->fadvise_hint);
328         top->fallocate_mode = cpu_to_le32(o->fallocate_mode);
329         top->zero_buffers = cpu_to_le32(o->zero_buffers);
330         top->refill_buffers = cpu_to_le32(o->refill_buffers);
331         top->scramble_buffers = cpu_to_le32(o->scramble_buffers);
332         top->buffer_pattern_bytes = cpu_to_le32(o->buffer_pattern_bytes);
333         top->time_based = cpu_to_le32(o->time_based);
334         top->disable_lat = cpu_to_le32(o->disable_lat);
335         top->disable_clat = cpu_to_le32(o->disable_clat);
336         top->disable_slat = cpu_to_le32(o->disable_slat);
337         top->disable_bw = cpu_to_le32(o->disable_bw);
338         top->unified_rw_rep = cpu_to_le32(o->unified_rw_rep);
339         top->gtod_reduce = cpu_to_le32(o->gtod_reduce);
340         top->gtod_cpu = cpu_to_le32(o->gtod_cpu);
341         top->gtod_offload = cpu_to_le32(o->gtod_offload);
342         top->clocksource = cpu_to_le32(o->clocksource);
343         top->no_stall = cpu_to_le32(o->no_stall);
344         top->trim_percentage = cpu_to_le32(o->trim_percentage);
345         top->trim_batch = cpu_to_le32(o->trim_batch);
346         top->trim_zero = cpu_to_le32(o->trim_zero);
347         top->clat_percentiles = cpu_to_le32(o->clat_percentiles);
348         top->percentile_precision = cpu_to_le32(o->percentile_precision);
349         top->continue_on_error = cpu_to_le32(o->continue_on_error);
350         top->cgroup_weight = cpu_to_le32(o->cgroup_weight);
351         top->cgroup_nodelete = cpu_to_le32(o->cgroup_nodelete);
352         top->uid = cpu_to_le32(o->uid);
353         top->gid = cpu_to_le32(o->gid);
354         top->flow_id = __cpu_to_le32(o->flow_id);
355         top->flow = __cpu_to_le32(o->flow);
356         top->flow_watermark = __cpu_to_le32(o->flow_watermark);
357         top->flow_sleep = cpu_to_le32(o->flow_sleep);
358         top->sync_file_range = cpu_to_le32(o->sync_file_range);
359         top->latency_target = __cpu_to_le64(o->latency_target);
360         top->latency_window = __cpu_to_le64(o->latency_window);
361         top->latency_percentile.u.i = __cpu_to_le64(fio_double_to_uint64(o->latency_percentile.u.f));
362         top->compress_percentage = cpu_to_le32(o->compress_percentage);
363         top->compress_chunk = cpu_to_le32(o->compress_chunk);
364
365         for (i = 0; i < DDIR_RWDIR_CNT; i++) {
366                 top->bs[i] = cpu_to_le32(o->bs[i]);
367                 top->ba[i] = cpu_to_le32(o->ba[i]);
368                 top->min_bs[i] = cpu_to_le32(o->min_bs[i]);
369                 top->max_bs[i] = cpu_to_le32(o->max_bs[i]);
370                 top->bssplit_nr[i] = cpu_to_le32(o->bssplit_nr[i]);
371
372                 if (o->bssplit_nr[i]) {
373                         unsigned int bssplit_nr = o->bssplit_nr[i];
374
375                         if (bssplit_nr > BSSPLIT_MAX) {
376                                 log_err("fio: BSSPLIT_MAX is too small\n");
377                                 bssplit_nr = BSSPLIT_MAX;
378                         }
379                         for (j = 0; j < bssplit_nr; j++) {
380                                 top->bssplit[i][j].bs = cpu_to_le32(o->bssplit[i][j].bs);
381                                 top->bssplit[i][j].perc = cpu_to_le32(o->bssplit[i][j].perc);
382                         }
383                 }
384
385                 top->rwmix[i] = cpu_to_le32(o->rwmix[i]);
386                 top->rate[i] = cpu_to_le32(o->rate[i]);
387                 top->ratemin[i] = cpu_to_le32(o->ratemin[i]);
388                 top->rate_iops[i] = cpu_to_le32(o->rate_iops[i]);
389                 top->rate_iops_min[i] = cpu_to_le32(o->rate_iops_min[i]);
390
391                 top->perc_rand[i] = cpu_to_le32(o->perc_rand[i]);
392         }
393
394         memcpy(top->verify_pattern, o->verify_pattern, MAX_PATTERN_SIZE);
395         memcpy(top->buffer_pattern, o->buffer_pattern, MAX_PATTERN_SIZE);
396
397         top->size = __cpu_to_le64(o->size);
398         top->verify_backlog = __cpu_to_le64(o->verify_backlog);
399         top->start_delay = __cpu_to_le64(o->start_delay);
400         top->timeout = __cpu_to_le64(o->timeout);
401         top->ramp_time = __cpu_to_le64(o->ramp_time);
402         top->zone_range = __cpu_to_le64(o->zone_range);
403         top->zone_size = __cpu_to_le64(o->zone_size);
404         top->zone_skip = __cpu_to_le64(o->zone_skip);
405         top->lockmem = __cpu_to_le64(o->lockmem);
406         top->ddir_seq_add = __cpu_to_le64(o->ddir_seq_add);
407         top->file_size_low = __cpu_to_le64(o->file_size_low);
408         top->file_size_high = __cpu_to_le64(o->file_size_high);
409         top->start_offset = __cpu_to_le64(o->start_offset);
410         top->trim_backlog = __cpu_to_le64(o->trim_backlog);
411         top->offset_increment = __cpu_to_le64(o->offset_increment);
412         top->number_ios = __cpu_to_le64(o->number_ios);
413
414         for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++)
415                 top->percentile_list[i].u.i = __cpu_to_le64(fio_double_to_uint64(o->percentile_list[i].u.f));
416 #if 0
417         uint8_t cpumask[FIO_TOP_STR_MAX];
418         uint8_t verify_cpumask[FIO_TOP_STR_MAX];
419 #endif
420
421 }
422
423 /*
424  * Basic conversion test. We'd really need to fill in more of the options
425  * to have a thorough test. Even better, we should auto-generate the
426  * converter functions...
427  */
428 int fio_test_cconv(struct thread_options *__o)
429 {
430         struct thread_options o;
431         struct thread_options_pack top1, top2;
432
433         memset(&top1, 0, sizeof(top1));
434         memset(&top2, 0, sizeof(top2));
435
436         convert_thread_options_to_net(&top1, __o);
437         memset(&o, 0, sizeof(o));
438         convert_thread_options_to_cpu(&o, &top1);
439         convert_thread_options_to_net(&top2, &o);
440
441         return memcmp(&top1, &top2, sizeof(top1));
442 }