Fix race condition when using asynch verify
[fio.git] / ioengine.h
index 6190977d4170fd7632a710c5417ba5661d24ded7..eb6655d165cad381e747a332cfee5b93736e7fd8 100644 (file)
@@ -4,8 +4,10 @@
 #define FIO_IOOPS_VERSION      10
 
 enum {
 #define FIO_IOOPS_VERSION      10
 
 enum {
-       IO_U_F_FREE     = 1 << 0,
-       IO_U_F_FLIGHT   = 1 << 1,
+       IO_U_F_FREE             = 1 << 0,
+       IO_U_F_FLIGHT           = 1 << 1,
+       IO_U_F_FREE_DEF         = 1 << 2,
+       IO_U_F_IN_CUR_DEPTH     = 1 << 3,
 };
 
 /*
 };
 
 /*
@@ -112,6 +114,7 @@ enum fio_ioengine_flags {
        FIO_UNIDIR      = 1 << 5,       /* engine is uni-directional */
        FIO_NOIO        = 1 << 6,       /* thread does only pseudo IO */
        FIO_SIGQUIT     = 1 << 7,       /* needs SIGQUIT to exit */
        FIO_UNIDIR      = 1 << 5,       /* engine is uni-directional */
        FIO_NOIO        = 1 << 6,       /* thread does only pseudo IO */
        FIO_SIGQUIT     = 1 << 7,       /* needs SIGQUIT to exit */
+       FIO_PIPEIO      = 1 << 8,       /* input/output no seekable */
 };
 
 /*
 };
 
 /*