summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/cq-full.c1
-rw-r--r--test/fsync.c2
-rw-r--r--test/io_uring-cp.c3
-rw-r--r--test/io_uring-test.c6
-rw-r--r--test/io_uring_enter.c1
-rw-r--r--test/io_uring_register.c6
-rw-r--r--test/nop.c2
-rw-r--r--test/poll-cancel.c2
-rw-r--r--test/poll.c1
9 files changed, 21 insertions, 3 deletions
diff --git a/test/cq-full.c b/test/cq-full.c
index 426eb4a..42021bd 100644
--- a/test/cq-full.c
+++ b/test/cq-full.c
@@ -67,6 +67,7 @@ int main(int argc, char *argv[])
printf("wait completion %d\n", ret);
goto err;
}
+ io_uring_cqe_seen(&ring, cqe);
if (!cqe)
break;
i++;
diff --git a/test/fsync.c b/test/fsync.c
index deacc5d..f127b17 100644
--- a/test/fsync.c
+++ b/test/fsync.c
@@ -45,6 +45,7 @@ static int test_single_fsync(struct io_uring *ring)
goto err;
}
+ io_uring_cqe_seen(ring, cqe);
unlink(buf);
return 0;
err:
@@ -122,6 +123,7 @@ static int test_barrier_fsync(struct io_uring *ring)
goto err;
}
}
+ io_uring_cqe_seen(ring, cqe);
}
unlink("testfile");
diff --git a/test/io_uring-cp.c b/test/io_uring-cp.c
index 4df8139..f704ff6 100644
--- a/test/io_uring-cp.c
+++ b/test/io_uring-cp.c
@@ -177,6 +177,7 @@ static int copy_file(struct io_uring *ring, off_t insize)
if (cqe->res < 0) {
if (cqe->res == -EAGAIN) {
queue_prepped(ring, data);
+ io_uring_cqe_seen(ring, cqe);
continue;
}
fprintf(stderr, "cqe failed: %s\n",
@@ -188,6 +189,7 @@ static int copy_file(struct io_uring *ring, off_t insize)
data->iov.iov_len -= cqe->res;
data->offset += cqe->res;
queue_prepped(ring, data);
+ io_uring_cqe_seen(ring, cqe);
continue;
}
@@ -204,6 +206,7 @@ static int copy_file(struct io_uring *ring, off_t insize)
free(data);
writes--;
}
+ io_uring_cqe_seen(ring, cqe);
}
}
diff --git a/test/io_uring-test.c b/test/io_uring-test.c
index caca379..fe0098c 100644
--- a/test/io_uring-test.c
+++ b/test/io_uring-test.c
@@ -74,10 +74,14 @@ int main(int argc, char *argv[])
}
done++;
+ ret = 0;
if (cqe->res != 4096) {
fprintf(stderr, "ret=%d, wanted 4096\n", cqe->res);
- return 1;
+ ret = 1;
}
+ io_uring_cqe_seen(&ring, cqe);
+ if (ret)
+ break;
}
printf("Submitted=%d, completed=%d\n", pending, done);
diff --git a/test/io_uring_enter.c b/test/io_uring_enter.c
index 4dc46c4..51ab8bb 100644
--- a/test/io_uring_enter.c
+++ b/test/io_uring_enter.c
@@ -158,6 +158,7 @@ reap_events(struct io_uring *ring, unsigned nr)
free(iov->iov_base);
free(iov);
left--;
+ io_uring_cqe_seen(ring, cqe);
gettimeofday(&now, NULL);
timersub(&now, &start, &elapsed);
diff --git a/test/io_uring_register.c b/test/io_uring_register.c
index 30a225b..61ea64e 100644
--- a/test/io_uring_register.c
+++ b/test/io_uring_register.c
@@ -428,13 +428,15 @@ ioring_poll(struct io_uring *ring, int fd, int fixed)
printf("io_uring_wait_completion failed with %d\n", ret);
return 1;
}
+ ret = 0;
if (cqe->res != POLLOUT) {
printf("io_uring_wait_completion: expected 0x%.8x, got 0x%.8x\n",
POLLOUT, cqe->res);
- return 1;
+ ret = 1;
}
- return 0;
+ io_uring_cqe_seen(ring, cqe);
+ return ret;
}
int
diff --git a/test/nop.c b/test/nop.c
index a37246b..7fe2455 100644
--- a/test/nop.c
+++ b/test/nop.c
@@ -37,6 +37,7 @@ static int test_single_nop(struct io_uring *ring)
goto err;
}
+ io_uring_cqe_seen(ring, cqe);
return 0;
err:
return 1;
@@ -75,6 +76,7 @@ static int test_barrier_nop(struct io_uring *ring)
printf("wait completion %d\n", ret);
goto err;
}
+ io_uring_cqe_seen(ring, cqe);
}
return 0;
diff --git a/test/poll-cancel.c b/test/poll-cancel.c
index 4a3626d..c318a61 100644
--- a/test/poll-cancel.c
+++ b/test/poll-cancel.c
@@ -99,6 +99,7 @@ int main(int argc, char *argv[])
pd->is_cancel, (long) cqe->res);
return 1;
}
+ io_uring_cqe_seen(&ring, cqe);
ret = io_uring_wait_completion(&ring, &cqe);
if (ret < 0) {
@@ -113,5 +114,6 @@ int main(int argc, char *argv[])
return 1;
}
+ io_uring_cqe_seen(&ring, cqe);
return 0;
}
diff --git a/test/poll.c b/test/poll.c
index c0a66cc..02d7899 100644
--- a/test/poll.c
+++ b/test/poll.c
@@ -74,6 +74,7 @@ int main(int argc, char *argv[])
printf("child: wait completion %d\n", ret);
break;
}
+ io_uring_cqe_seen(&ring, cqe);
} while (ret != 0);
if (ret < 0) {