mirror of
https://github.com/openharmony/third_party_liburing.git
synced 2026-07-20 22:58:41 -04:00
4b8f3098a5
Co-authored-by: Pavel Begunkov<asml.silence@gmail.com> Co-authored-by: Guillem Jover<guillem@hadrons.org> Co-authored-by: Jens Axboe<axboe@kernel.dk> Co-authored-by: Khem Raj<raj.khem@gmail.com> Co-authored-by: Michael de Lang<kingoipo@gmail.com> Co-authored-by: David Disseldorp<ddiss@suse.de> Co-authored-by: Ming Lei<ming.lei@redhat.com>
124 lines
2.4 KiB
C
124 lines
2.4 KiB
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Description: test use of eventfds with multiple rings
|
|
*
|
|
*/
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <fcntl.h>
|
|
#include <poll.h>
|
|
#include <sys/eventfd.h>
|
|
|
|
#include "liburing.h"
|
|
#include "helpers.h"
|
|
|
|
static int test(int flags)
|
|
{
|
|
struct io_uring_params p = {};
|
|
struct io_uring ring1, ring2;
|
|
struct io_uring_sqe *sqe;
|
|
int ret, evfd1, evfd2;
|
|
|
|
p.flags = flags;
|
|
ret = io_uring_queue_init_params(8, &ring1, &p);
|
|
if (ret) {
|
|
fprintf(stderr, "ring setup failed: %d\n", ret);
|
|
return T_EXIT_FAIL;
|
|
}
|
|
if (!(p.features & IORING_FEAT_CUR_PERSONALITY)) {
|
|
fprintf(stdout, "Skipping\n");
|
|
return T_EXIT_SKIP;
|
|
}
|
|
ret = io_uring_queue_init(8, &ring2, flags);
|
|
if (ret) {
|
|
fprintf(stderr, "ring setup failed: %d\n", ret);
|
|
return T_EXIT_FAIL;
|
|
}
|
|
|
|
evfd1 = eventfd(0, EFD_CLOEXEC);
|
|
if (evfd1 < 0) {
|
|
perror("eventfd");
|
|
return T_EXIT_FAIL;
|
|
}
|
|
|
|
evfd2 = eventfd(0, EFD_CLOEXEC);
|
|
if (evfd2 < 0) {
|
|
perror("eventfd");
|
|
return T_EXIT_FAIL;
|
|
}
|
|
|
|
ret = io_uring_register_eventfd(&ring1, evfd1);
|
|
if (ret) {
|
|
fprintf(stderr, "failed to register evfd: %d\n", ret);
|
|
return T_EXIT_FAIL;
|
|
}
|
|
|
|
ret = io_uring_register_eventfd(&ring2, evfd2);
|
|
if (ret) {
|
|
fprintf(stderr, "failed to register evfd: %d\n", ret);
|
|
return T_EXIT_FAIL;
|
|
}
|
|
|
|
sqe = io_uring_get_sqe(&ring1);
|
|
io_uring_prep_poll_add(sqe, evfd2, POLLIN);
|
|
sqe->user_data = 1;
|
|
|
|
sqe = io_uring_get_sqe(&ring2);
|
|
io_uring_prep_poll_add(sqe, evfd1, POLLIN);
|
|
sqe->user_data = 1;
|
|
|
|
ret = io_uring_submit(&ring1);
|
|
if (ret != 1) {
|
|
fprintf(stderr, "submit: %d\n", ret);
|
|
return T_EXIT_FAIL;
|
|
}
|
|
|
|
ret = io_uring_submit(&ring2);
|
|
if (ret != 1) {
|
|
fprintf(stderr, "submit: %d\n", ret);
|
|
return T_EXIT_FAIL;
|
|
}
|
|
|
|
sqe = io_uring_get_sqe(&ring1);
|
|
io_uring_prep_nop(sqe);
|
|
sqe->user_data = 3;
|
|
|
|
ret = io_uring_submit(&ring1);
|
|
if (ret != 1) {
|
|
fprintf(stderr, "submit: %d\n", ret);
|
|
return T_EXIT_FAIL;
|
|
}
|
|
|
|
return T_EXIT_PASS;
|
|
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int ret;
|
|
|
|
if (argc > 1)
|
|
return T_EXIT_SKIP;
|
|
|
|
ret = test(0);
|
|
if (ret == T_EXIT_SKIP) {
|
|
return T_EXIT_SKIP;
|
|
} else if (ret != T_EXIT_PASS) {
|
|
fprintf(stderr, "test 0 failed\n");
|
|
return T_EXIT_FAIL;
|
|
}
|
|
|
|
ret = test(IORING_SETUP_DEFER_TASKRUN|IORING_SETUP_SINGLE_ISSUER);
|
|
if (ret == T_EXIT_SKIP) {
|
|
return T_EXIT_SKIP;
|
|
} else if (ret != T_EXIT_PASS) {
|
|
fprintf(stderr, "test defer failed\n");
|
|
return T_EXIT_FAIL;
|
|
}
|
|
|
|
return T_EXIT_PASS;
|
|
}
|