From: Jens Axboe Date: Fri, 14 Feb 2014 15:46:35 +0000 (-0700) Subject: Fix another typo in gtod_reduce() X-Git-Tag: fio-2.1.6~37 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=729fe3af470e258690a79ff6ffc4f0e4b313abc8;ds=sidebyside Fix another typo in gtod_reduce() Forgot one of the variables. Impressive. Signed-off-by: Jens Axboe --- 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; }