X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=fio.c;h=445600f2074e6575a848f7eef622c2f181e8a89f;hp=b53a58ebe1883bbc9ad17f83fd598ce0c81c0c3c;hb=c6ae0a5b8123ea9af2ce70319081fbd5d65c8093;hpb=727097a1f2a12096075ccfc30785180cf505ec77 diff --git a/fio.c b/fio.c index b53a58eb..445600f2 100644 --- a/fio.c +++ b/fio.c @@ -1576,7 +1576,7 @@ static void print_thread_status(void) char eta_str[32]; double perc = 0.0; - if (temp_stall_ts) + if (temp_stall_ts || terse_output) return; eta_secs = malloc(thread_number * sizeof(int)); @@ -1717,8 +1717,10 @@ static void run_threads(void) mlocked_mem = fio_pin_memory(); - printf("Starting %d thread%s\n", thread_number, thread_number > 1 ? "s" : ""); - fflush(stdout); + if (!terse_output) { + printf("Starting %d thread%s\n", thread_number, thread_number > 1 ? "s" : ""); + fflush(stdout); + } signal(SIGINT, sig_handler); signal(SIGALRM, sig_handler);