X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=fio.h;h=c168fe708bcb3e49a9dda7762a94975881159dc7;hp=aeb45bf73611bd718ae0cfd89294b04c600e9fb6;hb=0c6e75175bcaf8d05bfa88aa8caa584fbb848b74;hpb=145dad6d3e1ae4bf44dd49eea9d0c025500b97d0 diff --git a/fio.h b/fio.h index aeb45bf7..c168fe70 100644 --- a/fio.h +++ b/fio.h @@ -76,6 +76,11 @@ struct syslet_req { }; #endif +enum { + IO_U_F_FREE = 1 << 0, + IO_U_F_FLIGHT = 1 << 1, +}; + /* * The io unit */ @@ -124,6 +129,8 @@ struct io_u { unsigned int seen; }; + unsigned int flags; + struct fio_file *file; struct list_head list;