The following changes since commit 921d17ba00f6fa106f558ea285d1d503f3a41369: genzipf: more features (2012-11-09 09:05:24 +0100) are available in the git repository at: git://git.kernel.dk/fio.git master Jens Axboe (1): zipf: use 64-bit safe hash for zipf/pareto hash.h | 7 +++++++ lib/zipf.c | 4 ++-- lib/zipf.h | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) --- Diff of recent changes: diff --git a/hash.h b/hash.h index 93dd831..13600f4 100644 --- a/hash.h +++ b/hash.h @@ -28,6 +28,8 @@ #error Define GOLDEN_RATIO_PRIME for your wordsize. #endif +#define GR_PRIME_64 0x9e37fffffffc0001UL + static inline unsigned long __hash_long(unsigned long val) { unsigned long hash = val; @@ -60,6 +62,11 @@ static inline unsigned long hash_long(unsigned long val, unsigned int bits) /* High bits are more random, so use them. */ return __hash_long(val) >> (BITS_PER_LONG - bits); } + +static inline uint64_t __hash_u64(uint64_t val) +{ + return val * GR_PRIME_64; +} static inline unsigned long hash_ptr(void *ptr, unsigned int bits) { diff --git a/lib/zipf.c b/lib/zipf.c index 41e2055..9b6ce63 100644 --- a/lib/zipf.c +++ b/lib/zipf.c @@ -69,7 +69,7 @@ unsigned long long zipf_next(struct zipf_state *zs) else val = 1 + (unsigned long long)(n * pow(eta*rand_uni - eta + 1.0, alpha)); - return (__hash_long(val - 1) + zs->rand_off) % zs->nranges; + return (__hash_u64(val - 1) + zs->rand_off) % zs->nranges; } void pareto_init(struct zipf_state *zs, unsigned long nranges, double h, @@ -84,5 +84,5 @@ unsigned long long pareto_next(struct zipf_state *zs) double rand = (double) __rand(&zs->rand) / (double) FRAND_MAX; unsigned long long n = zs->nranges - 1; - return (__hash_long(n * pow(rand, zs->pareto_pow)) + zs->rand_off) % zs->nranges; + return (__hash_u64(n * pow(rand, zs->pareto_pow)) + zs->rand_off) % zs->nranges; } diff --git a/lib/zipf.h b/lib/zipf.h index dbcaffb..f98ad81 100644 --- a/lib/zipf.h +++ b/lib/zipf.h @@ -11,7 +11,7 @@ struct zipf_state { double zetan; double pareto_pow; struct frand_state rand; - unsigned long rand_off; + uint64_t rand_off; }; void zipf_init(struct zipf_state *zs, unsigned long nranges, double theta, unsigned int seed); -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html