ioengine: remove ancient alias for libaio
authorJens Axboe <axboe@kernel.dk>
Thu, 13 Dec 2018 02:47:31 +0000 (19:47 -0700)
committerJens Axboe <axboe@kernel.dk>
Thu, 13 Dec 2018 02:47:31 +0000 (19:47 -0700)
Signed-off-by: Jens Axboe <axboe@kernel.dk>
ioengines.c

index b7df860825e55bb433b20a981f45c2ebf6439734..45e769e6f93da0bbb9e93c288121f8b3c4e83d12 100644 (file)
@@ -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");
        }