engines/libaio: fix wrong setting of wait_start
[fio.git] / engines / libaio.c
index d11a262e62cbaf8b0c30bf47e52b9dfaa584ae86..f7e2f8967c8900a1d5c6839dda1d746df5986b60 100644 (file)
@@ -13,6 +13,8 @@
 
 #include "../fio.h"
 
+static int fio_libaio_commit(struct thread_data *td);
+
 struct libaio_data {
        io_context_t aio_ctx;
        struct io_event *aio_events;
@@ -163,11 +165,12 @@ static int fio_libaio_getevents(struct thread_data *td, unsigned int min,
                        r = io_getevents(ld->aio_ctx, actual_min,
                                max, ld->aio_events + events, lt);
                }
-               if (r >= 0)
+               if (r > 0)
                        events += r;
-               else if (r == -EAGAIN)
+               else if ((min && r == 0) || r == -EAGAIN) {
+                       fio_libaio_commit(td);
                        usleep(100);
-               else if (r != -EINTR)
+               else if (r != -EINTR)
                        break;
        } while (events < min);
 
@@ -278,7 +281,7 @@ static int fio_libaio_commit(struct thread_data *td)
                        }
                        if (!wait_start) {
                                fio_gettime(&tv, NULL);
-                               wait_start = 0;
+                               wait_start = 1;
                        } else if (mtime_since_now(&tv) > 30000) {
                                log_err("fio: aio appears to be stalled, giving up\n");
                                break;