X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=io_u.c;h=7e05ff972c379b660316545f285a8bd5d024655f;hb=b0df7176176935b4d39fd196ad35f046bbe10333;hp=273cc91cb621176b1bdb50da0261b0313ef95a1b;hpb=84f43c6f173d057e1b47d2d5f3e4ce8663d0c86e;p=fio.git diff --git a/io_u.c b/io_u.c index 273cc91c..7e05ff97 100644 --- a/io_u.c +++ b/io_u.c @@ -1381,7 +1381,9 @@ static void io_completed(struct thread_data *td, struct io_u *io_u, td->io_blocks[idx]++; td->this_io_blocks[idx]++; td->io_bytes[idx] += bytes; - td->this_io_bytes[idx] += bytes; + + if (!(io_u->flags & IO_U_F_VER_LIST)) + td->this_io_bytes[idx] += bytes; if (idx == DDIR_WRITE) { f = io_u->file;