X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=file.h;h=3024c5440094f4a711b993e80dc6b81264f42893;hb=1cad7121e8e6c59440ae43545be05fa302e4110d;hp=9dd08731e63f7e47ed049fbbca469198da36da39;hpb=8055e41d0ecc54770a2653427532b3e2c5fabdad;p=fio.git diff --git a/file.h b/file.h index 9dd08731..3024c544 100644 --- a/file.h +++ b/file.h @@ -6,7 +6,7 @@ #include "io_ddir.h" #include "flist.h" #include "lib/zipf.h" -#include "lib/bitmap.h" +#include "lib/axmap.h" #include "lib/lfsr.h" /* @@ -110,7 +110,7 @@ struct fio_file { /* * block map for random io */ - struct bitmap *io_bitmap; + struct axmap *io_axmap; struct fio_lfsr lfsr; @@ -181,8 +181,8 @@ static inline void fio_file_reset(struct fio_file *f) f->last_pos = f->file_offset; f->last_start = -1ULL; f->file_pos = -1ULL; - if (f->io_bitmap) - bitmap_reset(f->io_bitmap); + if (f->io_axmap) + axmap_reset(f->io_axmap); } #endif