X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=lib%2Fzipf.h;h=a4aa163c80bc1dde7ad46e2f8ae85f32935d3456;hp=dbcaffb2453069442b2aa998267f846c2e15b47f;hb=83742c72e3d69b2d5c8a890b3803042b5fd1aae0;hpb=2316296a514711bb388d87b34742c04bb561d986 diff --git a/lib/zipf.h b/lib/zipf.h index dbcaffb2..a4aa163c 100644 --- a/lib/zipf.h +++ b/lib/zipf.h @@ -3,6 +3,7 @@ #include #include "rand.h" +#include "types.h" struct zipf_state { uint64_t nranges; @@ -11,7 +12,8 @@ struct zipf_state { double zetan; double pareto_pow; struct frand_state rand; - unsigned long rand_off; + uint64_t rand_off; + bool disable_hash; }; void zipf_init(struct zipf_state *zs, unsigned long nranges, double theta, unsigned int seed); @@ -19,5 +21,6 @@ unsigned long long zipf_next(struct zipf_state *zs); void pareto_init(struct zipf_state *zs, unsigned long nranges, double h, unsigned int seed); unsigned long long pareto_next(struct zipf_state *zs); +void zipf_disable_hash(struct zipf_state *zs); #endif