From b841ac86d4eb1659189171b7abebd986c7945f51 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Mon, 2 May 2011 13:05:02 -0600 Subject: [PATCH] Bump max job count to 2048 Signed-off-by: Jens Axboe --- fio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fio.h b/fio.h index c0087e81..4b6fb9fd 100644 --- a/fio.h +++ b/fio.h @@ -557,7 +557,7 @@ static inline void fio_ro_check(struct thread_data *td, struct io_u *io_u) #define RAND_MAP_IDX(f, b) (TO_MAP_BLOCK(f, b) / BLOCKS_PER_MAP) #define RAND_MAP_BIT(f, b) (TO_MAP_BLOCK(f, b) & (BLOCKS_PER_MAP - 1)) -#define MAX_JOBS (1024) +#define MAX_JOBS (2048) #define td_non_fatal_error(e) ((e) == EIO || (e) == EILSEQ) -- 2.25.1