Hide things not appropriate behind is_backend
[fio.git] / fio.c
diff --git a/fio.c b/fio.c
index 8c844af06ef4e043d4d28211e2560d81f0d44e97..5e4d0e60244ac3c2e6d73ae1c3858eafead8d760 100644 (file)
--- a/fio.c
+++ b/fio.c
@@ -137,7 +137,9 @@ static void *disk_thread_main(void *data)
                if (!threads)
                        break;
                update_io_ticks();
-               print_thread_status();
+
+               if (!is_backend)
+                       print_thread_status();
        }
 
        return NULL;
@@ -1698,8 +1700,6 @@ int exec_run(void)
        if (!thread_number)
                return 0;
 
-       printf("%d threads\n", thread_number);
-
        if (write_bw_log) {
                setup_log(&agg_io_log[DDIR_READ]);
                setup_log(&agg_io_log[DDIR_WRITE]);