From: Tomohiro Kusumi <tkusumi@xxxxxxxxxx> Not sure what the point of 8172fe97 was, but shouldn't all the prints within a single line be dprint() (or all be log_info()) ? Signed-off-by: Tomohiro Kusumi <tkusumi@xxxxxxxxxx> --- ioengine.h | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/ioengine.h b/ioengine.h index 08e8fab..89873e7 100644 --- a/ioengine.h +++ b/ioengine.h @@ -238,12 +238,9 @@ 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, (unsigned long long) io_u->offset, io_u->buflen, io_u->ddir); - if (fio_debug & (1 << FD_IO)) { - if (f) - log_info("/%s", f->file_name); - - log_info("\n"); - } + if (f) + dprint(FD_IO, "/%s", f->file_name); + dprint(FD_IO, "\n"); } #else #define dprint_io_u(io_u, p) -- 2.5.5 -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html