From: Jens Axboe Date: Mon, 24 Oct 2016 16:50:24 +0000 (-0600) Subject: fio: make job reap timeout 5 minutes X-Git-Tag: fio-2.15~3 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=8ecf6df14aee49d524fdb27bf53c2655a29c1fb1 fio: make job reap timeout 5 minutes 1 minute is a bit too slow, if we're waiting on a lot of IO syncing. Let's make it 5 minutes. This will still catch someone hung on a kernel bug, but hopefully should not trigger for normal waits. Signed-off-by: Jens Axboe --- diff --git a/fio.h b/fio.h index 080842ae..74c1b306 100644 --- a/fio.h +++ b/fio.h @@ -588,7 +588,7 @@ extern const char *runstate_to_name(int runstate); * Allow 60 seconds for a job to quit on its own, otherwise reap with * a vengeance. */ -#define FIO_REAP_TIMEOUT 60 +#define FIO_REAP_TIMEOUT 300 #define TERMINATE_ALL (-1U) extern void fio_terminate_threads(unsigned int);