X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=verify.c;h=6cbd0add35d2683186771a20f8b3079cb8079f5b;hp=4440d443ce1a3e094cb40a1f75594a388905f50d;hb=7b395ca5d5f38d50f0c9d4c11fb2b51760caf119;hpb=a4f4fdd7c9e46a50bc33ecef44d9f06036580ad4 diff --git a/verify.c b/verify.c index 4440d443..6cbd0add 100644 --- a/verify.c +++ b/verify.c @@ -78,13 +78,15 @@ static int verify_io_u_md5(struct verify_header *hdr, struct io_u *io_u) return 0; } -static int verify_io_u(struct io_u *io_u) +int verify_io_u(struct io_u *io_u) { struct verify_header *hdr = (struct verify_header *) io_u->buf; int ret; - if (hdr->fio_magic != FIO_HDR_MAGIC) + if (hdr->fio_magic != FIO_HDR_MAGIC) { + log_err("Bad verify header %x\n", hdr->fio_magic); return 1; + } if (hdr->verify_type == VERIFY_MD5) ret = verify_io_u_md5(hdr, io_u); @@ -141,6 +143,12 @@ int get_next_verify(struct thread_data *td, struct io_u *io_u) { struct io_piece *ipo; + /* + * this io_u is from a requeue, we already filled the offsets + */ + if (io_u->file) + return 0; + if (!list_empty(&td->io_hist_list)) { ipo = list_entry(td->io_hist_list.next, struct io_piece, list); @@ -148,24 +156,13 @@ int get_next_verify(struct thread_data *td, struct io_u *io_u) io_u->offset = ipo->offset; io_u->buflen = ipo->len; + io_u->file = ipo->file; io_u->ddir = DDIR_READ; + io_u->xfer_buf = io_u->buf; + io_u->xfer_buflen = io_u->buflen; free(ipo); return 0; } return 1; } - -int do_io_u_verify(struct thread_data *td, struct io_u **io_u) -{ - struct io_u *v_io_u = *io_u; - int ret = 0; - - if (v_io_u) { - ret = verify_io_u(v_io_u); - put_io_u(td, v_io_u); - *io_u = NULL; - } - - return ret; -}