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