client: use temp buffer for single output flush for json/disk util
[fio.git] / lib / zipf.h
index a23afe5e88457ffd7b8c7cda83b2d1b9ce6cbb28..a4aa163c80bc1dde7ad46e2f8ae85f32935d3456 100644 (file)
@@ -3,6 +3,7 @@
 
 #include <inttypes.h>
 #include "rand.h"
+#include "types.h"
 
 struct zipf_state {
        uint64_t nranges;
@@ -11,13 +12,15 @@ 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);
+void zipf_init(struct zipf_state *zs, unsigned long nranges, double theta, unsigned int seed);
 unsigned long long zipf_next(struct zipf_state *zs);
 
-void pareto_init(struct zipf_state *zs, unsigned long nranges, double h);
+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