X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=fio.c;h=7b3a50b6cba12df253bed9517be46cdc950fde2d;hp=72c7c8709e5296043d6522df320c29c7163e2e98;hb=a467027e1c8ae59053bf24eafdceb22f09391028;hpb=a569b45f68ebaa93fbbaca424dc827f4bbc5d655 diff --git a/fio.c b/fio.c index 72c7c870..7b3a50b6 100644 --- a/fio.c +++ b/fio.c @@ -30,15 +30,43 @@ int main(int argc, char *argv[], char *envp[]) { + int ret = 1; + + compiletime_assert(TD_NR <= TD_ENG_FLAG_SHIFT, "TD_ENG_FLAG_SHIFT"); + if (initialize_fio(envp)) return 1; + +#if !defined(CONFIG_GETTIMEOFDAY) && !defined(CONFIG_CLOCK_GETTIME) +#error "No available clock source!" +#endif + + if (fio_server_create_sk_key()) + goto done; + if (parse_options(argc, argv)) - return 1; + goto done_key; + + /* + * line buffer stdout to avoid output lines from multiple + * threads getting mixed + */ + setvbuf(stdout, NULL, _IOLBF, 0); fio_time_init(); - if (nr_clients) - return fio_handle_clients(); - else - return fio_backend(); + if (nr_clients) { + set_genesis_time(); + + if (fio_start_all_clients()) + goto done_key; + ret = fio_handle_clients(&fio_client_ops); + } else + ret = fio_backend(NULL); + +done_key: + fio_server_destroy_sk_key(); +done: + deinitialize_fio(); + return ret; }