From 59cd9313f3d4801c8cdd55aa1b32b0050713be94 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 12 Dec 2018 19:47:31 -0700 Subject: [PATCH] ioengine: remove ancient alias for libaio Signed-off-by: Jens Axboe --- ioengines.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); } -- 2.25.1