diff options
Diffstat (limited to 'test/fsync.c')
-rw-r--r-- | test/fsync.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/fsync.c b/test/fsync.c index b854a44..deacc5d 100644 --- a/test/fsync.c +++ b/test/fsync.c @@ -95,7 +95,10 @@ static int test_barrier_fsync(struct io_uring *ring) sqe->flags = IOSQE_IO_DRAIN; ret = io_uring_submit(ring); - if (ret <= 0) { + if (ret < 5) { + printf("Submitted only %d\n", ret); + goto err; + } else if (ret < 0) { printf("sqe submit failed\n"); if (ret == EINVAL) printf("kernel may not support barrier fsync yet\n"); |