We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27eea50 commit 4a56b9fCopy full SHA for 4a56b9f
src/include/liburing.h
@@ -133,14 +133,13 @@ struct io_uring {
133
};
134
135
struct io_uring_zcrx_rq {
136
- unsigned *khead;
137
- unsigned *ktail;
138
- struct io_uring_zcrx_rqe *rqes;
139
-
140
- unsigned rq_tail;
+ __u32 *khead;
+ __u32 *ktail;
+ __u32 rq_tail;
+ unsigned ring_entries;
141
+ struct io_uring_zcrx_rqe *rqes;
142
void *ring_ptr;
143
- unsigned ring_entries;
144
145
146
/*
test/Makefile
@@ -239,6 +239,7 @@ test_srcs := \
239
wakeup-hang.c \
240
wq-aff.c \
241
xattr.c \
242
+ zcrx.c \
243
# EOL
244
245
# Please keep this list sorted alphabetically.
0 commit comments