[PATCH] Split out the verify io parts
[fio.git] / fio.h
diff --git a/fio.h b/fio.h
index 9471666b02b45cf7328637841e249636247f06c1..9a8184b94716fc9bbaf3c9661e6454158111f5d0 100644 (file)
--- a/fio.h
+++ b/fio.h
@@ -472,6 +472,13 @@ enum {
        TD_REAPED,
 };
 
+/*
+ * Verify helpers
+ */
+extern void populate_verify_io_u(struct thread_data *, struct io_u *);
+extern int get_next_verify(struct thread_data *td, struct io_u *);
+extern int verify_io_u(struct io_u *);
+
 /*
  * This is a pretty crappy semaphore implementation, but with the use that fio
  * has (just signalling start/go conditions), it doesn't have to be better.