From a9a18a3f1b341c7025e63b47f706663cbf19836a Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Fri, 6 Jul 2007 14:09:49 +0200 Subject: [PATCH] Fix bug with FIO_IO_U_M/U_NR being transposed Signed-off-by: Jens Axboe --- fio.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fio.h b/fio.h index 813e55b5..d84eecfa 100644 --- a/fio.h +++ b/fio.h @@ -295,8 +295,8 @@ struct fio_file { * How many depth levels to log */ #define FIO_IO_U_MAP_NR 8 -#define FIO_IO_U_LAT_U_NR 12 -#define FIO_IO_U_LAT_M_NR 10 +#define FIO_IO_U_LAT_U_NR 10 +#define FIO_IO_U_LAT_M_NR 12 struct thread_stat { char *name; -- 2.25.1