X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=lib%2Frand.h;h=1676cf98ed567653cded97eaf00a1beabe808b58;hb=8db390cd9131caec46d252dee39a2a511735283c;hp=4f10fb3c57afe6946e931b0f95233db3f68d6aaf;hpb=1bd5d21380cdafe36db5a8945fb7c755d8ce3d43;p=fio.git diff --git a/lib/rand.h b/lib/rand.h index 4f10fb3c..1676cf98 100644 --- a/lib/rand.h +++ b/lib/rand.h @@ -114,9 +114,6 @@ static inline double __rand_0_1(struct frand_state *state) } } -/* - * Generate a random value between 'start' and 'end', both inclusive - */ static inline uint32_t rand32_upto(struct frand_state *state, uint32_t end) { uint32_t r; @@ -124,6 +121,7 @@ static inline uint32_t rand32_upto(struct frand_state *state, uint32_t end) assert(!state->use64); r = __rand32(&state->state32); + end++; return (int) ((double)end * (r / (FRAND32_MAX + 1.0))); } @@ -134,9 +132,13 @@ static inline uint64_t rand64_upto(struct frand_state *state, uint64_t end) assert(state->use64); r = __rand64(&state->state64); + end++; return (uint64_t) ((double)end * (r / (FRAND64_MAX + 1.0))); } +/* + * Generate a random value between 'start' and 'end', both inclusive + */ static inline uint64_t rand_between(struct frand_state *state, uint64_t start, uint64_t end) {