From: Jens Axboe Date: Fri, 3 Nov 2006 12:48:49 +0000 (+0100) Subject: [PATCH] Kill old libaio/posixaio checks X-Git-Tag: fio-1.8~8 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=c06aa240c904becbafb8457ed3b828cf0d38a180;p=fio.git [PATCH] Kill old libaio/posixaio checks Signed-off-by: Jens Axboe --- diff --git a/init.c b/init.c index 689c495b..7b2b5121 100644 --- a/init.c +++ b/init.c @@ -543,19 +543,6 @@ static int add_job(struct thread_data *td, const char *jobname, int job_add_num) int numjobs, ddir, i; struct fio_file *f; -#ifndef FIO_HAVE_LIBAIO - if (td->io_engine == FIO_LIBAIO) { - log_err("Linux libaio not available\n"); - return 1; - } -#endif -#ifndef FIO_HAVE_POSIXAIO - if (td->io_engine == FIO_POSIXAIO) { - log_err("posix aio not available\n"); - return 1; - } -#endif - /* * the def_thread is just for options, it's not a real job */