iolog: account for wasted time in ipo stall
authorJens Axboe <axboe@fb.com>
Fri, 21 Nov 2014 21:33:33 +0000 (14:33 -0700)
committerJens Axboe <axboe@fb.com>
Fri, 21 Nov 2014 21:33:33 +0000 (14:33 -0700)
Signed-off-by: Jens Axboe <axboe@fb.com>
fio.h
iolog.c

diff --git a/fio.h b/fio.h
index 0601b376414b80cd31f44eb80d5e60e7119cf268..5e352c6cf3cd07722210b06acf6a1b71e0e7b702 100644 (file)
--- a/fio.h
+++ b/fio.h
@@ -252,6 +252,7 @@ struct thread_data {
        struct timeval start;   /* start of this loop */
        struct timeval epoch;   /* time job was started */
        struct timeval last_issue;
+       long time_offset;
        struct timeval tv_cache;
        struct timeval terminate_time;
        unsigned int tv_cache_nr;
diff --git a/iolog.c b/iolog.c
index 785e549acee76ed8f40de68615d355bcf32b33d7..99f8bc18d8694cca0c141c51d116aced1b4130f2 100644 (file)
--- a/iolog.c
+++ b/iolog.c
@@ -60,14 +60,22 @@ void log_file(struct thread_data *td, struct fio_file *f,
 
 static void iolog_delay(struct thread_data *td, unsigned long delay)
 {
-       unsigned long usec = utime_since_now(&td->last_issue);
-       unsigned long this_delay;
+       uint64_t usec = utime_since_now(&td->last_issue);
+       uint64_t this_delay;
+       struct timeval tv;
 
+       if (delay < td->time_offset) {
+               td->time_offset = 0;
+               return;
+       }
+
+       delay -= td->time_offset;
        if (delay < usec)
                return;
 
        delay -= usec;
 
+       fio_gettime(&tv, NULL);
        while (delay && !td->terminate) {
                this_delay = delay;
                if (this_delay > 500000)
@@ -76,6 +84,12 @@ static void iolog_delay(struct thread_data *td, unsigned long delay)
                usec_sleep(td, this_delay);
                delay -= this_delay;
        }
+
+       usec = utime_since_now(&tv);
+       if (usec > delay)
+               td->time_offset = usec - delay;
+       else
+               td->time_offset = 0;
 }
 
 static int ipo_special(struct thread_data *td, struct io_piece *ipo)