From 390074458f9e6018e8c027c519bdb6c2139b09ab Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Sun, 16 Sep 2018 21:55:45 -0600 Subject: [PATCH] t/axmap: use a 64-bit type (not size_t) for axmap tests Now we actually pass on 32-bit... Signed-off-by: Jens Axboe --- t/axmap.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/t/axmap.c b/t/axmap.c index a2e6fd62..9d6bdee5 100644 --- a/t/axmap.c +++ b/t/axmap.c @@ -5,7 +5,7 @@ #include "../lib/lfsr.h" #include "../lib/axmap.h" -static int test_regular(size_t size, int seed) +static int test_regular(uint64_t size, int seed) { struct fio_lfsr lfsr; struct axmap *map; @@ -61,11 +61,11 @@ static int check_next_free(struct axmap *map, uint64_t start, uint64_t expected) return 0; } -static int test_next_free(size_t size, int seed) +static int test_next_free(uint64_t size, int seed) { struct fio_lfsr lfsr; struct axmap *map; - size_t osize; + uint64_t osize; uint64_t ff, lastfree; int err, i; @@ -196,7 +196,7 @@ static int test_next_free(size_t size, int seed) return 0; } -static int test_multi(size_t size, unsigned int bit_off) +static int test_multi(uint64_t size, unsigned int bit_off) { unsigned int map_size = size; struct axmap *map; @@ -395,7 +395,7 @@ static int test_overlap(void) int main(int argc, char *argv[]) { - size_t size = (1UL << 23) - 200; + uint64_t size = (1ULL << 23) - 200; int seed = 1; if (argc > 1) { -- 2.25.1