diff options
author | Jens Axboe <axboe@kernel.dk> | 2019-04-18 08:32:06 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-04-18 08:38:08 -0600 |
commit | 39e0ebd4fc66046bf733a47aaa899a556093ebc6 (patch) | |
tree | c5f82c6cd37137063b4e46eeab486fa3b56d7ba7 /examples | |
parent | 4916320ec374cc5d2b4062c48d2e4c576472b739 (diff) |
Rename completion helpers
We have io_uring_get_sqe() on the submission side, yet the completion
side is named _completion. Rename as follows:
io_uring_get_completion() io_uring_peek_cqe()
iO_uring_wait_completion() io_uring_wait_cqe()
This better tells the user what the _get variant does by calling it
_peek instead, and we move to using _cqe() as the postfix instead
of _completion.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/io_uring-cp.c | 6 | ||||
-rw-r--r-- | examples/io_uring-test.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/examples/io_uring-cp.c b/examples/io_uring-cp.c index f704ff6..1dd20fc 100644 --- a/examples/io_uring-cp.c +++ b/examples/io_uring-cp.c @@ -161,12 +161,12 @@ static int copy_file(struct io_uring *ring, off_t insize) struct io_data *data; if (!got_comp) { - ret = io_uring_wait_completion(ring, &cqe); + ret = io_uring_wait_cqe(ring, &cqe); got_comp = 1; } else - ret = io_uring_get_completion(ring, &cqe); + ret = io_uring_peek_cqe(ring, &cqe); if (ret < 0) { - fprintf(stderr, "io_uring_get_completion: %s\n", + fprintf(stderr, "io_uring_peek_cqe: %s\n", strerror(-ret)); return 1; } diff --git a/examples/io_uring-test.c b/examples/io_uring-test.c index fe0098c..bbac3a7 100644 --- a/examples/io_uring-test.c +++ b/examples/io_uring-test.c @@ -67,9 +67,9 @@ int main(int argc, char *argv[]) done = 0; pending = ret; for (i = 0; i < pending; i++) { - ret = io_uring_wait_completion(&ring, &cqe); + ret = io_uring_wait_cqe(&ring, &cqe); if (ret < 0) { - fprintf(stderr, "io_uring_get_completion: %s\n", strerror(-ret)); + fprintf(stderr, "io_uring_wait_cqe: %s\n", strerror(-ret)); return 1; } |