Add --section command line option
[fio.git] / fio.h
diff --git a/fio.h b/fio.h
index 572670ec0acb9792af4e808d69570ff8ea64c617..6dbc4cd59c31a4cdf8c54e4e9c7d9110deaf32a5 100644 (file)
--- a/fio.h
+++ b/fio.h
@@ -667,6 +667,7 @@ extern unsigned long long mlock_size;
 extern unsigned long page_mask, page_size;
 extern int read_only;
 extern int eta_print;
+extern char *job_section;
 
 extern struct thread_data *threads;
 
@@ -1006,9 +1007,12 @@ static inline void dprint_io_u(struct io_u *io_u, const char *p)
 
        dprint(FD_IO, "%s: io_u %p: off=%llu/len=%lu/ddir=%d", p, io_u,
                                        io_u->offset, io_u->buflen, io_u->ddir);
-       if (f)
-               dprint(FD_IO, "/%s", f->file_name);
-       dprint(FD_IO, "\n");
+       if (fio_debug & (1 << FD_IO)) {
+               if (f)
+                       log_info("/%s", f->file_name);
+
+               log_info("\n");
+       }
 }
 #else
 #define dprint(type, str, args...)