From 8172fe972f3a79d42f34d7f6e259ed3f7f800316 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Fri, 1 Feb 2008 21:51:02 +0100 Subject: [PATCH 1/1] A few debug debug log fixes Signed-off-by: Jens Axboe --- filesetup.c | 4 ++-- fio.h | 9 ++++++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/filesetup.c b/filesetup.c index 20ef3f8f..76b45a9c 100644 --- a/filesetup.c +++ b/filesetup.c @@ -600,14 +600,14 @@ int add_file(struct thread_data *td, const char *fname) void get_file(struct fio_file *f) { - dprint(FD_FILE, "get file %s/%d\n", f->file_name, f->references); + dprint(FD_FILE, "get file %s, ref=%d\n", f->file_name, f->references); assert(f->flags & FIO_FILE_OPEN); f->references++; } void put_file(struct thread_data *td, struct fio_file *f) { - dprint(FD_FILE, "get put %s/%d\n", f->file_name, f->references); + dprint(FD_FILE, "put file %s, ref=%d\n", f->file_name, f->references); if (!(f->flags & FIO_FILE_OPEN)) return; diff --git a/fio.h b/fio.h index c86e4629..4f2dc8f6 100644 --- a/fio.h +++ b/fio.h @@ -1004,9 +1004,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"); + } } #endif -- 2.25.1