1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
#include "../config-host.h"
/* 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;
}
|