From: Jens Axboe Date: Mon, 2 May 2011 19:05:02 +0000 (-0600) Subject: Bump max job count to 2048 X-Git-Tag: fio-1.53~7 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=b841ac86d4eb1659189171b7abebd986c7945f51;ds=sidebyside Bump max job count to 2048 Signed-off-by: Jens Axboe --- 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)