From: Jens Axboe Date: Thu, 13 Dec 2018 02:47:31 +0000 (-0700) Subject: ioengine: remove ancient alias for libaio X-Git-Tag: fio-3.13~83 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=59cd9313f3d4801c8cdd55aa1b32b0050713be94;p=fio.git ioengine: remove ancient alias for libaio Signed-off-by: Jens Axboe --- diff --git a/ioengines.c b/ioengines.c index b7df8608..45e769e6 100644 --- a/ioengines.c +++ b/ioengines.c @@ -131,7 +131,7 @@ static struct ioengine_ops *__load_ioengine(const char *name) /* * linux libaio has alias names, so convert to what we want */ - if (!strncmp(engine, "linuxaio", 8) || !strncmp(engine, "aio", 3)) { + if (!strncmp(engine, "linuxaio", 8)) { dprint(FD_IO, "converting ioengine name: %s -> libaio\n", name); strcpy(engine, "libaio"); }