From 0798ba36674a7a244e8bc10877e322973a5ca938 Mon Sep 17 00:00:00 2001 From: Davide Libenzi Date: Tue, 10 Apr 2007 22:29:29 +0200 Subject: [PATCH] GUASI API change There's been an API change in the latest GUASI library, and this fixes it inside FIO. Signed-off-by: Jens Axboe --- engines/guasi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/guasi.c b/engines/guasi.c index 1d3c77f6..1b717be8 100644 --- a/engines/guasi.c +++ b/engines/guasi.c @@ -230,7 +230,7 @@ static int fio_guasi_init(struct thread_data *td) maxthr = td->o.iodepth > GFIO_MIN_THREADS ? td->o.iodepth: GFIO_MIN_THREADS; if (maxthr > GFIO_MAX_THREADS) maxthr = GFIO_MAX_THREADS; - if ((ld->hctx = guasi_create(GFIO_MIN_THREADS, maxthr, 1, 0)) == NULL) { + if ((ld->hctx = guasi_create(GFIO_MIN_THREADS, maxthr, 1)) == NULL) { td_verror(td, errno, "guasi_create"); free(ld); return 1; -- 2.25.1