Duplicate name checks in ioengines.c
authorJens Axboe <jens.axboe@oracle.com>
Wed, 28 Feb 2007 08:32:54 +0000 (09:32 +0100)
committerJens Axboe <jens.axboe@oracle.com>
Wed, 28 Feb 2007 08:32:54 +0000 (09:32 +0100)
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
ioengines.c

index 14b15ccd7468e6646a03b962095a97fb55cff74a..a7ccad66f810b982b7a0d15b355aa6efcbde0334 100644 (file)
@@ -77,16 +77,10 @@ static struct ioengine_ops *find_ioengine(const char *name)
 {
        struct ioengine_ops *ops;
        struct list_head *entry;
 {
        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);
 
        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;
        }
 
                        return ops;
        }