stats: Add hint information to per priority level stats
[fio.git] / engines / ime.c
index 42984021ec9e808e39df9aa33c1faf23a169a4d9..037b8419e253c2340587eadd207a8296c18f8581 100644 (file)
@@ -83,7 +83,7 @@ struct ime_data {
        };
        struct iovec    *iovecs;                /* array of queued iovecs */
        struct io_u     **io_us;                /* array of queued io_u pointers */
-       struct io_u     **event_io_us;  /* array of the events retieved afer get_events*/
+       struct io_u     **event_io_us;  /* array of the events retrieved after get_events*/
        unsigned int    queued;                 /* iovecs/io_us in the queue */
        unsigned int    events;                 /* number of committed iovecs/io_us */
 
@@ -188,14 +188,9 @@ static int fio_ime_open_file(struct thread_data *td, struct fio_file *f)
                return 1;
        }
 
-       if (td->o.oatomic) {
-               td_verror(td, EINVAL, "IME does not support atomic IO");
-               return 1;
-       }
        if (td->o.odirect)
                flags |= O_DIRECT;
-       if (td->o.sync_io)
-               flags |= O_SYNC;
+       flags |= td->o.sync_io;
        if (td->o.create_on_open && td->o.allow_create)
                flags |= O_CREAT;