From: Peter Oberparleiter <[email protected]>

Fix the available range for random offsets which never touched the last block.

Signed-off-by: Christian Ehrhardt <[email protected]>
---
[diffstat]
 io_u.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/io_u.c
+++ b/io_u.c
@@ -104,7 +104,7 @@ static int __get_next_rand_offset(struct
                dprint(FD_RANDOM, "off rand %llu\n", (unsigned long long) r);
 -              *b = (lastb - 1) * (r / ((uint64_t) rmax + 1.0));
+               *b = lastb * (r / ((uint64_t) rmax + 1.0));
        } else {
                uint64_t off = 0;


--
To unsubscribe from this list: send the line "unsubscribe fio" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to