X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=ioengines.c;h=a7ccad66f810b982b7a0d15b355aa6efcbde0334;hp=14b15ccd7468e6646a03b962095a97fb55cff74a;hb=bc5b77a8c46aabea554c4a2c8cca37f27f97969a;hpb=1ff2a7eb468833dd03ccc2cc27a76c5bc7055297 diff --git a/ioengines.c b/ioengines.c index 14b15ccd..a7ccad66 100644 --- a/ioengines.c +++ b/ioengines.c @@ -77,16 +77,10 @@ static struct ioengine_ops *find_ioengine(const char *name) { struct ioengine_ops *ops; struct list_head *entry; - char engine[16]; - - strncpy(engine, name, sizeof(engine) - 1); - - if (!strncmp(engine, "linuxaio", 8) || !strncmp(engine, "aio", 3)) - strcpy(engine, "libaio"); list_for_each(entry, &engine_list) { ops = list_entry(entry, struct ioengine_ops, list); - if (!strcmp(engine, ops->name)) + if (!strcmp(name, ops->name)) return ops; }