X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=fio.h;h=7e6311c8899e0403f8f7d1e93f0029a4540e7aeb;hp=6a244c38896e820c6c23da16a5a661c6fefb1f94;hb=2ab71dc4d39e29764f0f80a3559a0119247e1eb1;hpb=a39fb9ea87afae396a882961fe65d87e548a1a1b diff --git a/fio.h b/fio.h index 6a244c38..7e6311c8 100644 --- a/fio.h +++ b/fio.h @@ -79,6 +79,7 @@ enum { TD_F_NEED_LOCK = 1U << 11, TD_F_CHILD = 1U << 12, TD_F_NO_PROGRESS = 1U << 13, + TD_F_REGROW_LOGS = 1U << 14, }; enum { @@ -170,6 +171,15 @@ struct thread_data { unsigned int next_file; struct frand_state next_file_state; }; + union { + struct zipf_state next_file_zipf; + struct gauss_state next_file_gauss; + }; + union { + double zipf_theta; + double pareto_h; + double gauss_dev; + }; int error; int sig; int done;