Add backend related data
[fio.git] / fio.c
diff --git a/fio.c b/fio.c
index d628cfcd885d05958d477310661f41f5254446ac..bd3e260b40cfd575030c3276e247f8f4f28ec0f0 100644 (file)
--- a/fio.c
+++ b/fio.c
 #include <time.h>
 
 #include "fio.h"
-#include "hash.h"
 #include "smalloc.h"
-#include "verify.h"
-#include "trim.h"
-#include "diskutil.h"
-#include "profile.h"
-#include "lib/rand.h"
-#include "memalign.h"
-#include "client.h"
-#include "server.h"
 
 int main(int argc, char *argv[], char *envp[])
 {
+       int ret = 1;
+
        if (initialize_fio(envp))
                return 1;
 
+#if !defined(CONFIG_GETTIMEOFDAY) && !defined(CONFIG_CLOCK_GETTIME)
+#error "No available clock source!"
+#endif
+
        if (parse_options(argc, argv))
-               return 1;
+               goto done;
+
+       /*
+        * line buffer stdout to avoid output lines from multiple
+        * threads getting mixed
+        */
+       setvbuf(stdout, NULL, _IOLBF, 0);
+
+       fio_time_init();
+
+       if (nr_clients) {
+               set_genesis_time();
+
+               if (fio_start_all_clients())
+                       goto done;
+               ret = fio_handle_clients(&fio_client_ops);
+       } else
+               ret = fio_backend(NULL);
 
-       if (nr_clients)
-               return fio_handle_clients(&fio_client_ops);
-       else
-               return fio_backend();
+done:
+       deinitialize_fio();
+       return ret;
 }