[PATCH] Fix random seed for numjobs > 1
[fio.git] / fio.h
diff --git a/fio.h b/fio.h
index ff59b467ba70dcf478959da266f681ec2495c9e7..5fad44648e6a95d071904bd4e1dabb2d3bf43076 100644 (file)
--- a/fio.h
+++ b/fio.h
@@ -18,7 +18,9 @@
 #include "arch.h"
 #include "os.h"
 
+#ifdef FIO_HAVE_SYSLET
 #include "syslet.h"
+#endif
 
 enum fio_ddir {
        DDIR_READ = 0,
@@ -70,7 +72,6 @@ struct io_piece {
 #ifdef FIO_HAVE_SYSLET
 struct syslet_req {
        struct syslet_uatom atom;
-       unsigned long cmd;
        long ret;
 };
 #endif
@@ -90,8 +91,7 @@ struct io_u {
                struct sg_io_hdr hdr;
 #endif
 #ifdef FIO_HAVE_SYSLET
-               struct syslet_req rw_atom;
-               struct syslet_req seek_atom;
+               struct syslet_req req;
 #endif
        };
        struct timeval start_time;