From 729fe3af470e258690a79ff6ffc4f0e4b313abc8 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Fri, 14 Feb 2014 08:46:35 -0700 Subject: [PATCH] Fix another typo in gtod_reduce() Forgot one of the variables. Impressive. Signed-off-by: Jens Axboe --- io_u.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io_u.c b/io_u.c index 61038a4d..b84b3e23 100644 --- a/io_u.c +++ b/io_u.c @@ -1523,7 +1523,7 @@ void io_u_log_error(struct thread_data *td, struct io_u *io_u) static inline int gtod_reduce(struct thread_data *td) { - return td->o.disable_clat && td->o.disable_lat && !td->o.disable_slat + return td->o.disable_clat && td->o.disable_lat && td->o.disable_slat && td->o.disable_bw; } -- 2.25.1