backend: fix should_check_rate() typo in wait_for_completions()
authorJens Axboe <axboe@fb.com>
Fri, 12 Dec 2014 18:34:28 +0000 (11:34 -0700)
committerJens Axboe <axboe@fb.com>
Fri, 12 Dec 2014 18:34:28 +0000 (11:34 -0700)
Signed-off-by: Jens Axboe <axboe@fb.com>
backend.c

index 7c6fc9b0478818d3443bf3c84554dfc090f24087..3424a0982b534bc60b8ea037814427e9156b929f 100644 (file)
--- a/backend.c
+++ b/backend.c
@@ -432,7 +432,7 @@ static int wait_for_completions(struct thread_data *td, struct timeval *time,
        if (full && !min_evts)
                min_evts = 1;
 
-       if (time && (should_check_rate(td, DDIR_READ) ||
+       if (time && (__should_check_rate(td, DDIR_READ) ||
            __should_check_rate(td, DDIR_WRITE) ||
            __should_check_rate(td, DDIR_TRIM)))
                fio_gettime(time, NULL);