X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;ds=sidebyside;f=fio.h;h=09cd01cdcf6a17fccc627ec1261eb048e5c6ab68;hb=7eb36574da703ebdfac414d7428712320f552a96;hp=aa5124cd03a805d9158391131d3e1788c1f4b9e9;hpb=a696fa2a9c2e21a1c88813235d6fc39d267f6155;p=fio.git diff --git a/fio.h b/fio.h index aa5124cd..09cd01cd 100644 --- a/fio.h +++ b/fio.h @@ -28,8 +28,9 @@ #include "io_ddir.h" #include "ioengine.h" #include "iolog.h" -#include "profiles.h" #include "helpers.h" +#include "options.h" +#include "profile.h" #ifdef FIO_HAVE_GUASI #include @@ -227,6 +228,7 @@ struct thread_options { unsigned int file_service_type; unsigned int group_reporting; unsigned int fadvise_hint; + unsigned int fallocate; unsigned int zero_buffers; unsigned int refill_buffers; unsigned int time_based; @@ -270,15 +272,16 @@ struct thread_options { /* * Benchmark profile type */ - unsigned int profile; + char *profile; /* * blkio cgroup support */ - char *cgroup_root; char *cgroup; unsigned int cgroup_weight; - unsigned int cgroup_was_created; + + unsigned int uid; + unsigned int gid; }; #define FIO_VERROR_SIZE 128 @@ -358,7 +361,7 @@ struct thread_data { /* * Rate state */ - unsigned long rate_usec_cycle[2]; + unsigned long rate_nsec_cycle[2]; long rate_pending_usleep[2]; unsigned long rate_bytes[2]; unsigned long rate_blocks[2]; @@ -424,6 +427,11 @@ struct thread_data { */ unsigned int total_err_count; int first_error; + + /* + * Can be overloaded by profiles + */ + struct prof_io_ops prof_io_ops; }; /* @@ -536,8 +544,9 @@ extern void fio_options_dup_and_init(struct option *); extern void options_mem_dupe(struct thread_data *); extern void options_mem_free(struct thread_data *); extern void td_fill_rand_seeds(struct thread_data *); +extern void add_job_opts(const char **); #define FIO_GETOPT_JOB 0x89988998 -#define FIO_NR_OPTIONS 128 +#define FIO_NR_OPTIONS (FIO_MAX_OPTS + 128) /* * ETA/status stuff