X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=fio.h;h=05911c00d1934f6368b5d7e28942a9deaae278a4;hp=fb70b465bec4e1da83a9359b8d2dbe39d84d5c24;hb=44f29692cfba246981bb3c1b894333a6d2209f51;hpb=e8462bd8250cf3ff2d41f17e1a4d4cefc70b6b37 diff --git a/fio.h b/fio.h index fb70b465..05911c00 100644 --- a/fio.h +++ b/fio.h @@ -28,6 +28,9 @@ #include "io_ddir.h" #include "ioengine.h" #include "iolog.h" +#include "helpers.h" +#include "options.h" +#include "profile.h" #ifdef FIO_HAVE_GUASI #include @@ -42,6 +45,7 @@ struct group_run_stats { unsigned long long max_bw[2], min_bw[2]; unsigned long long io_kb[2]; unsigned long long agg[2]; + unsigned int kb_base; }; /* @@ -62,6 +66,8 @@ enum fio_memtype { #define FIO_IO_U_LAT_U_NR 10 #define FIO_IO_U_LAT_M_NR 12 +#define MAX_PATTERN_SIZE 512 + struct thread_stat { char *name; char *verror; @@ -118,6 +124,8 @@ struct thread_stat { unsigned continue_on_error; unsigned long total_err_count; int first_error; + + unsigned int kb_base; }; struct bssplit { @@ -134,6 +142,7 @@ struct thread_options { char *opendir; char *ioengine; enum td_ddir td_ddir; + unsigned int kb_base; unsigned int ddir_nr; unsigned int iodepth; unsigned int iodepth_low; @@ -171,7 +180,7 @@ struct thread_options { unsigned int verifysort; unsigned int verify_interval; unsigned int verify_offset; - unsigned int verify_pattern; + char verify_pattern[MAX_PATTERN_SIZE]; unsigned int verify_pattern_bytes; unsigned int verify_fatal; unsigned int verify_async; @@ -219,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; @@ -258,6 +268,22 @@ struct thread_options { * I/O Error handling */ unsigned int continue_on_error; + + /* + * Benchmark profile type + */ + char *profile; + + /* + * blkio cgroup support + */ + char *cgroup; + unsigned int cgroup_weight; + + unsigned int uid; + unsigned int gid; + + unsigned int sync_file_range; }; #define FIO_VERROR_SIZE 128 @@ -337,7 +363,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]; @@ -393,6 +419,8 @@ struct thread_data { unsigned int file_service_left; struct fio_file *file_service_file; + unsigned int sync_file_range_nr; + /* * For generating file sizes */ @@ -403,6 +431,12 @@ struct thread_data { */ unsigned int total_err_count; int first_error; + + /* + * Can be overloaded by profiles + */ + struct prof_io_ops prof_io_ops; + void *prof_data; }; /* @@ -507,6 +541,7 @@ extern int in_ramp_time(struct thread_data *); */ extern int __must_check parse_options(int, char **); extern int fio_options_parse(struct thread_data *, char **, int); +extern void fio_keywords_init(void); extern int fio_cmd_option_parse(struct thread_data *, const char *, char *); extern void fio_fill_default_options(struct thread_data *); extern int fio_show_option_help(const char *); @@ -514,8 +549,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