Fully parallellize io_u verification
[fio.git] / verify.c
index 32cfdd7a24859df70ca5192dbe7397c02075ba65..f2ef10792a2c53969a894b94cccc3d8788ee9e07 100644 (file)
--- a/verify.c
+++ b/verify.c
@@ -78,7 +78,7 @@ 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;
@@ -160,21 +160,3 @@ int get_next_verify(struct thread_data *td, struct io_u *io_u)
 
        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) {
-               struct io_completion_data icd;
-
-               ret = verify_io_u(v_io_u);
-               init_icd(&icd);
-               io_completed(td, v_io_u, &icd);
-               put_io_u(td, v_io_u);
-               *io_u = NULL;
-       }
-
-       return ret;
-}